
public class NullProtocolHandlerFactory extends Object implements IURLProtocolHandlerFactory
For example, "humblenull:a_url"
| Constructor and Description |
|---|
NullProtocolHandlerFactory() |
| Modifier and Type | Method and Description |
|---|---|
IURLProtocolHandler |
getHandler(String aProtocol,
String aUrl,
int aFlags)
Called by FFMPEG in order to get a handler to use for a given file.
|
public IURLProtocolHandler getHandler(String aProtocol, String aUrl, int aFlags)
IURLProtocolHandlerFactorygetHandler in interface IURLProtocolHandlerFactoryaProtocol - The protocol without a ':'. For example, "file", "http", or "yourcustomprotocol"aUrl - The URL that FFMPEG is trying to open.aFlags - The flags that FFMPEG will pass to IURLProtocolHandler.open(String, int)IURLProtocolHandler to use, or null. If null, a file not found error will be passed back
to FFMPEG.Copyright © 2018 Humble Software. All rights reserved.