Package tvi.webrtc
Class SoftwareVideoDecoderFactory
- java.lang.Object
-
- tvi.webrtc.SoftwareVideoDecoderFactory
-
- All Implemented Interfaces:
VideoDecoderFactory
public class SoftwareVideoDecoderFactory extends java.lang.Object implements VideoDecoderFactory
-
-
Constructor Summary
Constructors Constructor Description SoftwareVideoDecoderFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VideoDecoder
createDecoder(VideoCodecInfo codecInfo)
Creates a VideoDecoder for the given codec.VideoCodecInfo[]
getSupportedCodecs()
Enumerates the list of supported video codecs.
-
-
-
Method Detail
-
createDecoder
@Nullable public VideoDecoder createDecoder(VideoCodecInfo codecInfo)
Description copied from interface:VideoDecoderFactory
Creates a VideoDecoder for the given codec. Supports the same codecs supported by VideoEncoderFactory.- Specified by:
createDecoder
in interfaceVideoDecoderFactory
-
getSupportedCodecs
public VideoCodecInfo[] getSupportedCodecs()
Description copied from interface:VideoDecoderFactory
Enumerates the list of supported video codecs.- Specified by:
getSupportedCodecs
in interfaceVideoDecoderFactory
-
-