public class HardwareVideoEncoderFactory extends java.lang.Object implements VideoEncoderFactory
| Constructor and Description |
|---|
HardwareVideoEncoderFactory(boolean enableIntelVp8Encoder,
boolean enableH264HighProfile)
Deprecated.
|
HardwareVideoEncoderFactory(EglBase.Context sharedContext,
boolean enableIntelVp8Encoder,
boolean enableH264HighProfile)
Creates a HardwareVideoEncoderFactory that supports surface texture encoding.
|
HardwareVideoEncoderFactory(EglBase.Context sharedContext,
boolean enableIntelVp8Encoder,
boolean enableH264HighProfile,
Predicate<android.media.MediaCodecInfo> codecAllowedPredicate)
Creates a HardwareVideoEncoderFactory that supports surface texture encoding.
|
| Modifier and Type | Method and Description |
|---|---|
VideoEncoder |
createEncoder(VideoCodecInfo input)
Creates an encoder for the given video codec.
|
VideoCodecInfo[] |
getSupportedCodecs()
Enumerates the list of supported video codecs.
|
public HardwareVideoEncoderFactory(EglBase.Context sharedContext, boolean enableIntelVp8Encoder, boolean enableH264HighProfile)
sharedContext - The textures generated will be accessible from this context. May be null,
this disables texture support.enableIntelVp8Encoder - true if Intel's VP8 encoder enabled.enableH264HighProfile - true if H264 High Profile enabled.public HardwareVideoEncoderFactory(EglBase.Context sharedContext, boolean enableIntelVp8Encoder, boolean enableH264HighProfile, @Nullable Predicate<android.media.MediaCodecInfo> codecAllowedPredicate)
sharedContext - The textures generated will be accessible from this context. May be null,
this disables texture support.enableIntelVp8Encoder - true if Intel's VP8 encoder enabled.enableH264HighProfile - true if H264 High Profile enabled.codecAllowedPredicate - optional predicate to filter codecs. All codecs are allowed
when predicate is not provided.@Deprecated
public HardwareVideoEncoderFactory(boolean enableIntelVp8Encoder,
boolean enableH264HighProfile)
@Nullable public VideoEncoder createEncoder(VideoCodecInfo input)
VideoEncoderFactorycreateEncoder in interface VideoEncoderFactorypublic VideoCodecInfo[] getSupportedCodecs()
VideoEncoderFactorygetSupportedCodecs in interface VideoEncoderFactory