CodecCapInfo

Information about codec capabilities supported by the SDK.

@JsonSerializable(explicitToJson: true, includeIfNull: false)
class CodecCapInfo {
  const CodecCapInfo({this.codecType, this.codecCapMask, this.codecLevels});

  @JsonKey(name: 'codecType')
  final VideoCodecType? codecType;

  @JsonKey(name: 'codecCapMask')
  final int? codecCapMask;

  @JsonKey(name: 'codecLevels')
  final CodecCapLevels? codecLevels;

  factory CodecCapInfo.fromJson(Map<String, dynamic> json) =>
      _$CodecCapInfoFromJson(json);

  Map<String, dynamic> toJson() => _$CodecCapInfoToJson(this);
}

Properties

codecType
Video codec type. See VideoCodecType.
codecCapMask
Bit mask of codec types supported by the SDK. See CodecCapMask.
codecLevels
Codec capability levels supported by the SDK. See CodecCapLevels.