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 Abstract Methods Default Methods Modifier and Type Method Description VideoDecoder
createDecoder(VideoCodecInfo info)
Creates a VideoDecoder for the given codec.default VideoCodecInfo[]
getSupportedCodecs()
Enumerates the list of supported video codecs.
-
-
-
Method Detail
-
createDecoder
@Nullable VideoDecoder createDecoder(VideoCodecInfo info)
Creates a VideoDecoder for the given codec. Supports the same codecs supported by VideoEncoderFactory.
-
getSupportedCodecs
default VideoCodecInfo[] getSupportedCodecs()
Enumerates the list of supported video codecs.
-
-