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 Deprecated Methods Modifier and Type Method Description VideoDecoder
createDecoder(java.lang.String codecType)
Deprecated.VideoDecoder
createDecoder(VideoCodecInfo codecType)
Creates a decoder for the given video codec.VideoCodecInfo[]
getSupportedCodecs()
Enumerates the list of supported video codecs.
-
-
-
Method Detail
-
createDecoder
@Deprecated @Nullable public VideoDecoder createDecoder(java.lang.String codecType)
Deprecated.Description copied from interface:VideoDecoderFactory
Creates a VideoDecoder for the given codec. Supports the same codecs supported by VideoEncoderFactory.- Specified by:
createDecoder
in interfaceVideoDecoderFactory
-
createDecoder
@Nullable public VideoDecoder createDecoder(VideoCodecInfo codecType)
Description copied from interface:VideoDecoderFactory
Creates a decoder for the given video codec.- 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
-
-