Package tvi.webrtc
Class PlatformSoftwareVideoDecoderFactory
- java.lang.Object
-
- tvi.webrtc.PlatformSoftwareVideoDecoderFactory
-
- All Implemented Interfaces:
VideoDecoderFactory
public class PlatformSoftwareVideoDecoderFactory extends java.lang.Object
Factory for Android platform software VideoDecoders.
-
-
Constructor Summary
Constructors Constructor Description PlatformSoftwareVideoDecoderFactory(EglBase.Context sharedContext)
Creates a PlatformSoftwareVideoDecoderFactory that supports surface texture rendering.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VideoDecoder
createDecoder(VideoCodecInfo codecType)
Creates a VideoDecoder for the given codec.VideoCodecInfo[]
getSupportedCodecs()
Enumerates the list of supported video codecs.
-
-
-
Constructor Detail
-
PlatformSoftwareVideoDecoderFactory
public PlatformSoftwareVideoDecoderFactory(@Nullable EglBase.Context sharedContext)
Creates a PlatformSoftwareVideoDecoderFactory that supports surface texture rendering.- Parameters:
sharedContext
- The textures generated will be accessible from this context. May be null, this disables texture support.
-
-
Method Detail
-
createDecoder
@Nullable public VideoDecoder createDecoder(VideoCodecInfo codecType)
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
-
-