disableAlphaChannelVideoEncode method

FutureOr<int> disableAlphaChannelVideoEncode()

@hidden(macOS) @valid since 3.58 @detail api @hiddensdk(audiosdk) @region Video Management @author zhuhongshuyu @brief Disables the Alpha channel encoding feature for custom captured video frames. @return - 0: Success. - < 0 : Fail. See ByteRTCReturnStatus{@link #ByteRTCReturnStatus} for more details. @note This interface must be called after stopping publishing the video stream.

Implementation

FutureOr<int> disableAlphaChannelVideoEncode() async {
  return await nativeCall('disableAlphaChannelVideoEncode', []);
}