Uses of Interface
com.avpkit.core.io.IURLProtocolHandler
-
Packages that use IURLProtocolHandler Package Description com.avpkit.core An advanced API for reading, decoding, re-sampling, encoding and writing of most media files.com.avpkit.core.io An API for extending AVPKit to read and write from arbitrary data sources. -
-
Uses of IURLProtocolHandler in com.avpkit.core
Methods in com.avpkit.core with parameters of type IURLProtocolHandler Modifier and Type Method Description intIContainer. open(IURLProtocolHandler handler, IContainer.Type type, IContainerFormat format)Open this container and make it ready for reading or writing.intIContainer. open(IURLProtocolHandler handler, IContainer.Type type, IContainerFormat format, boolean streamsCanBeAddedDynamically, boolean queryStreamMetaData)Open this container and make it ready for reading or writing, optionally reading as far into the container as necessary to find all streams. -
Uses of IURLProtocolHandler in com.avpkit.core.io
Classes in com.avpkit.core.io that implement IURLProtocolHandler Modifier and Type Class Description classDataInputOutputHandlerImplementation of URLProtocolHandler that can read fromDataInputobjects or write toDataOutputobjects.classFileProtocolHandlerImplementation of URLProtocolHandler that can read and write files.classInputOutputStreamHandlerImplementation of URLProtocolHandler that can read fromInputStreamobjects or write toOutputStreamobjects.classNullProtocolHandlerThe NullProtocolHandler implementsIURLProtocolHandler, but discards any data written and always returns 0 for reading.classReadableWritableChannelHandlerImplementation of URLProtocolHandler that can read fromReadableByteChannelobjects or write toWritableByteChannelobject.Methods in com.avpkit.core.io that return IURLProtocolHandler Modifier and Type Method Description IURLProtocolHandlerAVPKitIO. getHandler(java.lang.String url, int flags)Called by FFMPEG in order to get a handler to use for a given file.IURLProtocolHandlerFileProtocolHandlerFactory. getHandler(java.lang.String url, int flags)IURLProtocolHandlerIURLProtocolHandlerFactory. getHandler(java.lang.String url, int flags)Called by FFMPEG in order to get a handler to use for a given file.IURLProtocolHandlerNullProtocolHandlerFactory. getHandler(java.lang.String aUrl, int aFlags)IURLProtocolHandlerURLProtocolManager. getHandler(java.lang.String url, int flags)IURLProtocolHandlerAVPKitIO. mapIO(java.lang.String url, IURLProtocolHandler handler, boolean unmapUrlOnOpen)Maps the given url or file name to the givenIURLProtocolHandleror so that AVPKit calls to open the URL it will call back to the handler.static IURLProtocolHandlerAVPKitIO. unmap(java.lang.String url)Undoes a URL toInputStreamorOutputStreammapping.IURLProtocolHandlerAVPKitIO. unmapIO(java.lang.String url)Unmaps a registration between a URL and the underlying i/o objects.Methods in com.avpkit.core.io with parameters of type IURLProtocolHandler Modifier and Type Method Description static java.lang.StringAVPKitIO. map(IURLProtocolHandler handler)Maps aIURLProtocolHandlerto a url that AVPKit can open.static java.lang.StringAVPKitIO. map(java.lang.String url, IURLProtocolHandler handler)Maps aIURLProtocolHandlerto a url that AVPKit can open.static java.lang.StringAVPKitIO. map(java.lang.String url, IURLProtocolHandler handler, boolean unmapUrlOnOpen)Maps aIURLProtocolHandlerto a url that AVPKit can open.IURLProtocolHandlerAVPKitIO. mapIO(java.lang.String url, IURLProtocolHandler handler, boolean unmapUrlOnOpen)Maps the given url or file name to the givenIURLProtocolHandleror so that AVPKit calls to open the URL it will call back to the handler.
-