回调扩展接口类,用于向 App 上报视频编码 QOS 信息。

interface NERtcVideoEncoderQosObserver {
    onBitrateUpdated(
        bitrateBps: number,
        streamType: NERtcVideoStreamType,
    ): void;
    onRequestSendKeyFrame(streamType: NERtcVideoStreamType): void;
    onVideoCodecUpdated(
        videoCodeType: VIDEO_CODEC_TYPE_H264,
        streamType: NERtcVideoStreamType,
    ): void;
}

Methods