Package tvi.webrtc
Interface VideoDecoderFactory
-
- All Known Implementing Classes:
DefaultVideoDecoderFactory
,HardwareVideoDecoderFactory
,PlatformSoftwareVideoDecoderFactory
,SoftwareVideoDecoderFactory
public interface VideoDecoderFactory
Factory for creating VideoDecoders.
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default VideoDecoder
createDecoder(java.lang.String codecType)
Deprecated.default VideoDecoder
createDecoder(VideoCodecInfo info)
Creates a decoder for the given video codec.default VideoCodecInfo[]
getSupportedCodecs()
Enumerates the list of supported video codecs.
-
-
-
Method Detail
-
createDecoder
@Deprecated @Nullable default VideoDecoder createDecoder(java.lang.String codecType)
Deprecated.Creates a VideoDecoder for the given codec. Supports the same codecs supported by VideoEncoderFactory.
-
createDecoder
@Nullable default VideoDecoder createDecoder(VideoCodecInfo info)
Creates a decoder for the given video codec.
-
getSupportedCodecs
default VideoCodecInfo[] getSupportedCodecs()
Enumerates the list of supported video codecs.
-
-