Class HardwareVideoEncoderFactory

java.lang.Object
com.telnyx.webrtc.lib.HardwareVideoEncoderFactory
All Implemented Interfaces:
VideoEncoderFactory

public class HardwareVideoEncoderFactory extends Object implements VideoEncoderFactory
Factory for android hardware video encoders.
  • Constructor Details

    • HardwareVideoEncoderFactory

      public HardwareVideoEncoderFactory(EglBase.Context sharedContext, boolean enableIntelVp8Encoder, boolean enableH264HighProfile)
      Creates a HardwareVideoEncoderFactory that supports surface texture encoding.
      Parameters:
      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.
    • HardwareVideoEncoderFactory

      public HardwareVideoEncoderFactory(EglBase.Context sharedContext, boolean enableIntelVp8Encoder, boolean enableH264HighProfile, @Nullable Predicate<MediaCodecInfo> codecAllowedPredicate)
      Creates a HardwareVideoEncoderFactory that supports surface texture encoding.
      Parameters:
      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.
    • HardwareVideoEncoderFactory

      @Deprecated public HardwareVideoEncoderFactory(boolean enableIntelVp8Encoder, boolean enableH264HighProfile)
      Deprecated.
  • Method Details