Package tvi.webrtc
Class DefaultVideoDecoderFactory
- java.lang.Object
-
- tvi.webrtc.DefaultVideoDecoderFactory
-
- All Implemented Interfaces:
VideoDecoderFactory
public class DefaultVideoDecoderFactory extends java.lang.Object implements VideoDecoderFactory
Helper class that combines HW and SW decoders.
-
-
Constructor Summary
Constructors Constructor Description DefaultVideoDecoderFactory(EglBase.Context eglContext)
Create decoder factory using default hardware decoder factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VideoDecoder
createDecoder(VideoCodecInfo codecType)
Creates a decoder for the given video codec.VideoCodecInfo[]
getSupportedCodecs()
Enumerates the list of supported video codecs.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface tvi.webrtc.VideoDecoderFactory
createDecoder
-
-
-
-
Constructor Detail
-
DefaultVideoDecoderFactory
public DefaultVideoDecoderFactory(@Nullable EglBase.Context eglContext)
Create decoder factory using default hardware decoder factory.
-
-
Method Detail
-
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
-
-