Data types

更新时间:
复制 MD 格式

This topic describes the data types that are used in the Windows SDK.

Contents

Data typeDescriptionSupported since version
AliRtcVideoTrackVideo track type.1.1
AliRtcAudioTrackAudio track type.1.1
AliRtcNetworkQualityNetwork quality.1.1
AliRtcRenderModeRendering mode.1.1
AliRtcLogLevelLog level.1.1
AliRtcAuthInfoAuthentication information.1.1
AliVideoCanvasRendering canvas.1.17.19
AliRtcOnByeTypeOnBye type.1.11
AliRtcScreenShareTypeDesktop sharing type.1.15
AliRtcClientRoleRole type.1.16
AliRtcExternalDeviceStateExternal device state.1.16.2
AliRtcScaleRatioVideo scaling ratio.1.16.2
AliRtcAudioNumChannelTypeAudio channel type.1.16.2
AliRtcAudioSampleRateAudio recording sample rate.1.16.2
AliRtcAudioSourceRaw audio data source type.1.16.2
AliRtcVideoSourceRaw video data source type.1.16.2
AliRtcVideoFormatVideo data format.1.17.19
AliRtcBufferTypeVideo data type.1.16.2
AliRtcMuteLocalAudioModeLocal mute mode.1.16.2
AliRtcScreenSourceListShare source list.1.16.2
AliRtcScreenShareRegionScreen sharing region.1.16.2
AliRtcScreenSourceShare source.1.16.2
AliRtcDeviceListDevice list.1.16.2
AliRtcStatsSession statistics.1.17.38
AliRtcVideoDataSampleVideo data.1.16.2
AliRtcAudioDataSampleAudio data.1.16.2
AliRtcAudioEffectReverbModeReverb effect mode.1.17
AliRtcAudioEffectReverbParamTypeReverb effect type.1.17
AliRtcRecordTypeRecord type.1.17
AliRtcRecordFormatRecord format.1.17
AliRtcAudioQualityAudio recording quality.1.17
AliRtcVideoQualityVideo recording quality.1.17
AliRtcRecordAudioConfigAudio recording settings.1.17
AliRtcRecordVideoConfigVideo recording settings.1.17
AliRtcLocalVideoStatsLocal video statistics.1.17
AliRtcRemoteVideoStatsRemote video statistics.1.17
AliRtcVideoProfileVideo stream parameters.1.17.19
AliRtcUserVolumeInfoUser volume information.1.17.9
AliRtcBeautyConfigRetouching settings.1.17.9
AliRtcChannelProfileChannel type.1.17.9
AliRtcFeedbackTypeSDK feedback type.1.17.12
ErrorCodeEnumSDK error codes.1.17.19
AliRtcRotationModeVideo rotation angle.1.17.30
AliRtcVideoEncoderMirrorModeVideo encoder mirror mode.1.17.31
AliRtcVideoEncoderConfigurationVideo encoding preferences.1.17.31

Details

  • AliRtcVideoTrack: The video track type.

    Enumeration NameDescription
    AliRtcVideoTrackNoNo video stream.
    AliRtcVideoTrackCameraCamera stream.
    AliRtcVideoTrackScreenScreen sharing stream.
    AliRtcVideoTrackBothCamera and screen sharing streams.
  • AliRtcAudioTrack: The audio track type.

    Enumeration nameDescription
    AliRtcAudioTrackNoNo audio stream.
    AliRtcAudioTrackMicMicrophone stream.
  • AliRtcNetworkQuality: The network quality.

    Enumeration NameDescription
    AliRtcNetworkQualityExcellentExcellent network quality. The video is smooth and clear.
    AliRtcNetworkQualityGoodGood network quality. The video is almost as smooth and clear as the Excellent level.
    AliRtcNetworkQualityPoorPoor network quality. The audio and video have minor issues with smoothness and clarity, but communication is not affected.
    AliRtcNetworkQualityBadBad network quality. The video stutters severely, but audio communication is normal.
    AliRtcNetworkQualityVeryBadVery bad network quality. Communication is nearly impossible.
    AliRtcNetworkQualityDisconnectThe network is disconnected.
    AliRtcNetworkQualityUnknowUnknown.
  • AliRtcRenderMode: The rendering mode.

    Enumeration NameDescription
    AliRtcRenderModeAutoAuto mode.
    AliRtcRenderModeStretchStretches the video to fill the view. The aspect ratio is not maintained.
    AliRtcRenderModeFillScales the video while maintaining the aspect ratio. Black bars are added to fill the view.
    AliRtcRenderModeCropScales the video while maintaining the aspect ratio and crops it to fit the view.
    AliRtcRenderModeScrollScrolls the view to show more content.
  • AliRtcLogLevel: The log level.

    Enumeration NameDescription
    AliRtcLogLevelDumpAll.
    AliRtcLogLevelDebugDebug.
    AliRtcLogLevelVerboseDetails
    AliRtcLogLevelInfoGeneral
    AliRtcLogLevelWarnWarning.
    AliRtcLogLevelErrorError.
    AliRtcLogLevelFatalFatal.
    AliRtcLogLevelNoneNone.
  • AliRtcAuthInfo: The authentication information.

    Important The session id field is removed in versions 1.9 and later.
    ParameterTypeDescription
    channelAliRtc::StringThe channel ID.
    user_idAliRtc::StringThe user ID.
    appidAliRtc::StringThe application ID.
    nonceAliRtc::StringThe nonce for the token.
    tokenAliRtc::StringThe token.
    gslbAliRtc::StringThe server address.
    timestamplong longThe timestamp.
    agentAliRtc::StringArrayThe agent server address. By default, this parameter is not passed.
    roleAliRtc::StringThe role type. The default value is empty, which indicates that this feature is not used. Valid values:
    • pub: The streamer role.
    • sub: The viewer role.
    For more information, see How to perform role-based authentication.
  • AliVideoCanvas: The rendering canvas.

    ParameterTypeDescription
    hWndHWNDThe handle of the rendering window.
    renderModeAliRtcRenderModeThe rendering mode.
    flipbooltrue: The image is mirrored. false: The image is normal.
    backgroundColorintThe background color in the hexadecimal RGB format.
    rotationAliRtcRotationModeThe video rotation angle.
    scaleRatioAliRtcScaleRatioThe preview scaling ratio.
  • AliRtcOnByeType: The OnBye type.

    Enumeration nameDescription
    AliRtcOnByeBeKickOutThe current user is kicked out of the channel.
    AliRtcOnByeChannelTerminatedThe channel is closed.
    AliRtcOnByeUserReplacedThe same user joins the channel on another device, and the current device is forced to go offline.
  • AliRtcScreenShareType: The screen sharing type.

    Enumeration nameDescription
    AliRtcScreenShareDesktopDesktop sharing.
    AliRtcScreenShareWindowWindow sharing.
  • AliRtcClientRole: The client role type.

    Enumeration nameDescription
    AliRtcClientRoleInteractiveInteractive role.
    AliRtcClientRoleLiveViewer-only role.
  • AliRtcExternalDeviceState: The external device state.

    Enumeration memberDescription
    AliRtcExternalDeviceAddAn external device is added.
    AliRtcExternalDeviceRemoveAn external device is removed.
  • AliRtcScaleRatio: The video scaling ratio.

    Enumeration memberDescription
    AliRtcScaleRatio_16_916:9.
    AliRtcScaleRatio_4_34:3.
  • AliRtcAudioNumChannelType: The number of audio channels.

    Enumeration NameDescription
    AliRtcMonoAudioMono audio.
    AliRtcStereoAudioStereo audio.
  • AliRtcAudioSampleRate: The audio recording sample rate.

    Enumeration nameDescription
    AliRtcAudioSampleRate_80008000 Hz.
    AliRtcAudioSampleRate_1102511025 Hz.
    AliRtcAudioSampleRate_1600016000 Hz.
    AliRtcAudioSampleRate_2205022050 Hz.
    AliRtcAudioSampleRate_3200032000 Hz.
    AliRtcAudioSampleRate_4410044100 Hz.
    AliRtcAudioSampleRate_4800048000 Hz.
  • AliRtcAudioSource: The raw audio data source type.

    Enumeration nameDescription
    AliRtcAudiosourcePubPublish.
    AliRtcAudiosourceSubSubscribe.
    AliRtcAudiosourceRawDataRaw data.
    AliRtcAudioSourceVolumeVolume.
  • AliRtcVideoSource: The raw video data source type.

    Enumeration NameDescription
    AliRtcVideoSourceCameraCamera stream.
    AliRtcVideoSourceScreenShareShared stream.
  • AliRtcVideoFormat: The video data format.

    Enumeration nameDescription
    AliRtcVideoFormatUnknowUnknown.
    AliRtcVideoFormatBGRABGRA format.
    AliRtcVideoFormatI420I420 format.
    AliRtcVideoFormatNV21NV21 format.
    AliRtcVideoFormatNV12NV12 format.
  • AliRtcBufferType: The video data buffer type.

    Enumeration nameDescription
    AliRtcBufferTypeRawDataRaw data.
    AliRtcBufferTypeCVPixelBufferWatermark.
    AliRtcBufferTypeTextureTexture.
  • AliRtcMuteLocalAudioMode: The local audio muting mode.

    Enumeration nameDescription
    AliRtcMuteLocalAudioModeDefaultDefault mute mode.
    AliRtcMuteAllLocalAudioModeMutes all local audio.
    AliRtcMuteOnlyMicAudioModeMutes the microphone.
  • AliRtcScreenSourceList: The list of screen sharing sources.

    ParameterTypeDescription
    sourceNumlong longThe number of share sources.
    sourceIdAliRtc::StringArrayAn array of share source IDs.
    sourceTitleAliRtc::StringArrayAn array of share source names.
  • AliRtcScreenShareRegion: The screen sharing region.

    ParameterTypeDescription
    originXfloatThe x-axis.
    originYfloatThe y-axis.
    widthfloatThe width.
    heightfloatThe height.
  • AliRtcScreenSource: The screen sharing source.

    ParameterTypeDescription
    eTypeAliRtcScreenShareTypeThe desktop sharing type.
    sourceIdAliRtc::StringThe share source ID.
    sourceTitleAliRtc::StringThe share source name.
    isShareByRegionboolSpecifies whether to enable the sharing region.
    shareRegionAliRtcScreenShareRegionThe sharing region.
  • AliRtcDeviceList: The device list.

    ParameterTypeDescription
    deviceCountlong longThe number of devices.
    deviceIdsAliRtc::StringArrayAn array of device IDs.
    deviceNamesAliRtc::StringArrayAn array of device names.
  • AliRtcStats: The session statistics.

    ParameterTypeDescription
    sent_kbitrateint64_tThe send bitrate.
    rcvd_kbitrateint64_tThe receive bitrate.
    sent_bytesint64_tThe number of bytes sent.
    rcvd_bytesint64_tThe number of bytes received.
    system_cpuuint32_tThe CPU usage of the computer.
    app_cpuuint32_tThe CPU usage of the RTC process.
    video_rcvd_kbitrateint64_tThe video receive bitrate.
    video_sent_kbitrateint64_tThe video send bitrate.
    call_durationint64_tThe call duration in seconds.
    sent_loss_rateint8_tThe packet loss rate for sending.
    lastmile_delayint64_tThe latency in milliseconds.
  • AliRtcVideoDataSample: The video data sample.

    ParameterTypeDescription
    formatAliRtcVideoFormatThe video data format.
    bufferTypeAliRtcBufferTypeThe video data type.
    char *dataunsigned char *A pointer to the stored data.
    size_t dataLensize_tThe data length.
    strideYintLuminance.
    strideUintChroma.
    strideVintConcentration
    heightintHeight.
    widthintWidth.
    rotationintThe rotation in degrees.
    timeStamplong longThe timestamp.
  • AliRtcAudioDataSample: The audio data sample.

    ParameterTypeDescription
    dataunsigned char *The audio data.
    numOfSamplesintThe number of samples.
    bytesPerSampleintThe audio bit depth in bytes.
    numOfChannelsintThe number of sound channels.
    samplesPerSecintThe sample rate.
  • AliRtcAudioEffectReverbMode: The reverb effect mode.

    Enumeration nameDescription
    AliRtcAudioEffect_Reverb_OffOff.
    AliRtcAudioEffect_Reverb_Vocal_IVocal I.
    AliRtcAudioEffect_Reverb_Vocal_IIVocal II.
    AliRtcAudioEffect_Reverb_BathroomBathhouse.
    AliRtcAudioEffect_Reverb_Small_Room_BrightBright small room.
    AliRtcAudioEffect_Reverb_Small_Room_DarkDark small room.
    AliRtcAudioEffect_Reverb_Medium_RoomMedium room.
    AliRtcAudioEffect_Reverb_Large_RoomLarge room.
    AliRtcAudioEffect_Reverb_Church_HallChurch Corridor
    AliRtcAudioEffect_Reverb_CathedralCathedral.
  • AliRtcAudioEffectReverbParamType: The reverb effect parameter type.

    Enumeration NameDescription
    AliRtcAudioEffect_Reverb_Room_SizeThe room size. Valid values: [0, 100].
    AliRtcAudioEffect_Reverb_Pre_DelayThe pre-delay in ms. Valid values: [0, 200].
    AliRtcAudioEffect_Reverb_ReverberanceThe reverberance. Valid values: [0, 100].
    AliRtcAudioEffect_Reverb_Hf_DampingThe noise suppression level, which ranges from 0 to 100.
    AliRtcAudioEffect_Reverb_Tone_LowThe low tone. Valid values: [0, 100].
    AliRtcAudioEffect_Reverb_Tone_HighThe high tone. Valid values: [0, 100].
    AliRtcAudioEffect_Reverb_Dry_GainThe dry gain. Valid values: [-20, 10].
    AliRtcAudioEffect_Reverb_Wet_GainThe wet gain. Valid values: [-20, 10].
  • AliRtcRecordType: The record type.

    Enumeration NameDescription
    AliRtcRecordTypeAudioAudio-only recording.
    AliRtcRecordTypeVideoVideo-only recording.
    AliRtcRecordTypeBothAudio and video recording.
  • AliRtcRecordFormat: The record format.

    Enumeration nameDescription
    AliRtcRecordFormatAACAAC file.
    AliRtcRecordFormatWAVWAV file.
    AliRtcRecordFormatMP4MP4 file.
  • AliRtcAudioQuality: The audio recording quality.

    Enumeration nameDescription
    AliRtcAudioQualityLowLow.
    AliRtcAudioQualityMidiumMedium.
    AliRtcAudioQualityHighHigh.
  • AliRtcVideoQuality: The video recording quality.

    Enumeration nameDescription
    AliRtcVideoQualityDefaultDefault. The recording quality is the same as the capture quality. For example, if the capture resolution is 1080p, the recorded video stream is also 1080p.
  • AliRtcRecordAudioConfig: The audio recording configuration.

    ParameterTypeDescription
    sampleRateAliRtcAudioSampleRateThe audio sampling rate.
    qualityAliRtcAudioQualityThe audio quality.
    externalPcmCaptureRecordingboolExternal PCM input recording.
    externalPcmRenderRecordingboolExternal PCM rendering recording.
  • AliRtcRecordVideoConfig: The video recording configuration.

    ParameterTypeDescription
    qualityAliRtcVideoQualityThe video quality.
    sourceTypeAliRtcVideoSourceThe video source type.
  • AliRtcLocalVideoStats: The local video statistics.

    ParameterTypeDescription
    trackAliRtcVideoTrackThe video stream type.
    sent_bitrateuint32_tThe send bitrate.
    sent_fpsuint32_tThe send frame rate.
    encode_fpsuint32_tThe output frame rate of the encoder.
  • AliRtcRemoteVideoStats: The remote video statistics.

    ParameterTypeDescription
    user_idAliRtc::StringThe user ID.
    trackAliRtcVideoTrackThe video stream type.
    widthuint32_tWidth.
    heightuint32_tHeight.
    decode_fpsuint32_tThe output frame rate of the encoder.
    render_fpsuint32_tThe output frame rate of the renderer.
    frozen_timesuint32_tThe number of stutters.
  • AliRtcVideoProfile: The video stream parameters.

    The default value is AliRtcVideoProfile_Default. You can set this parameter before or after you join a channel, but you must set it using the setVideoProfile method before you publish a stream.

    Enumeration NameDescription
    AliRtcVideoProfile_DefaultDefault. Resolution: 480 × 640. Frame rate: 15.
    AliRtcVideoProfile_180_240P_15Resolution: 180 × 240. Frame rate: 15.
    AliRtcVideoProfile_180_320P_15Resolution: 180 × 320. Frame rate: 15.
    AliRtcVideoProfile_180_320P_30Resolution: 180 × 320. Frame rate: 30.
    AliRtcVideoProfile_240_320P_15Resolution: 240 × 320. Frame rate: 15.
    AliRtcVideoProfile_360_480P_15Resolution: 360 × 480. Frame rate: 15.
    AliRtcVideoProfile_360_480P_30Resolution: 360 × 480. Frame rate: 30.
    AliRtcVideoProfile_360_640P_15Resolution: 360 × 640. Frame rate: 15.
    AliRtcVideoProfile_360_640P_30Resolution: 360 × 640. Frame rate: 30.
    AliRtcVideoProfile_480_640P_15Resolution: 480 × 640. Frame rate: 15.
    AliRtcVideoProfile_480_640P_30Resolution: 480 × 640. Frame rate: 30.
    AliRtcVideoProfile_720_960P_15Resolution: 720 × 960. Frame rate: 15.
    AliRtcVideoProfile_720_960P_30Resolution: 720 × 960. Frame rate: 30.
    AliRtcVideoProfile_720_1280P_15Resolution: 720 × 1280. Frame rate: 15.
    AliRtcVideoProfile_720_1280P_30Resolution: 720 × 1280. Frame rate: 30.
    AliRtcVideoProfile_1080_1920P_15Resolution: 1080 × 1920. Frame rate: 15.
    AliRtcVideoProfile_1080_1920P_30Resolution: 1080 × 1920. Frame rate: 30.
    AliRtcVideoProfile_480_640P_15_1500KbResolution: 480 × 640. Frame rate: 15. Bitrate: 1500 Kbps.
    AliRtcVideoProfile_900_1600P_20Resolution: 900 × 1600. Frame rate: 20.
    AliRtcVideoProfile_360_640P_15_800KbResolution: 360 × 640. Frame rate: 15. Bitrate: 800 Kbps.
    AliRtcVideoProfile_480_840P_15_500KbResolution: 480 × 840. Frame rate: 15. Bitrate: 500 Kbps.
    AliRtcVideoProfile_480_840P_15_800KbResolution: 480 × 840. Frame rate: 15. Bitrate: 800 Kbps.
    AliRtcVideoProfile_540_960P_15_800KbResolution: 540 × 960. Frame rate: 15. Bitrate: 800 Kbps.
    AliRtcVideoProfile_540_960P_15_1200KbResolution: 540 × 960. Frame rate: 15. Bitrate: 1200 Kbps.
    AliRtcVideoProfile_540_960P_20Resolution: 540 × 960. Frame rate: 20.
    AliRtcVideoProfile_720_1280P_20Resolution: 720 × 1280. Frame rate: 20.
    AliRtcVideoProfile_1080_1920P_20Resolution: 1080 × 1920. Frame rate: 20.
  • AliRtcUserVolumeInfo: The user volume information.

    ParameterTypeDescription
    user_idAliRtc::StringThe user ID. This is a unique identifier issued by the AppServer.
    volumeintThe user's volume. Valid values: 0 to 255.
    speech_stateintA value of 1 indicates that the user is speaking.
  • AliRtcBeautyConfig: The retouching configuration.

    ParameterTypeDescription
    whiteningLevel floatThe whitening level. Valid values: [0, 1]. A larger value indicates a stronger whitening effect.
    smoothnessLevelfloatThe smoothing level. Valid values: [0, 1]. A larger value indicates a stronger smoothing effect.
  • AliRtcChannelProfile: The channel profile.

    Enumeration nameDescription
    AliRtcCommunicationCommunication mode.
    AliRtcInteractiveLiveInteractive mode.
  • AliRtcFeedbackType: The SDK feedback type.

    Enumeration nameDescription
    AliRtcFeedbackVideoDeviceFailVideo device issue.
    AliRtcFeedbackVideoNotRenderNo video frames.
    AliRtcFeedbackAudioDeviceFailAudio device issue.
    AliRtcFeedbackAudioNotRenderNo sound.
    AliRtcFeedbackAudioEchoErrorAbnormal audio echo.
    AliRtcFeedbackChannelTypeErrorAbnormal channel state, such as an error when joining or leaving a channel.
    AliRtcFeedbackSDKTypeErrorOther abnormal SDK states.
    AliRtcFeedbackNetworkUnfluentNetwork stuttering issue.
    AliRtcFeedbackVideoBlurringVideo clarity issue.
    AliRtcFeedbackUnkonwUnknown type.
  • ErrorCodeEnum: The SDK error codes.
    Enumeration nameDescription
    ERR_JOIN_BAD_APPID = 0x02010201The AppId does not exist.
    ERR_JOIN_INVALID_APPID = 0x02010202The AppId is invalid.
    ERR_JOIN_BAD_CHANNEL = 0x02010204The channel does not exist.
    ERR_JOIN_INVALID_CHANNEL = 0x02010203The channel is invalid.
    ERR_JOIN_BAD_TOKEN = 0x02010205The token does not exist.
    ERR_JOIN_TIMEOUT = 0x01020204The request to join the channel timed out.
    ERR_JOIN_BAD_PARAM = 0x01030101The parameters for joining the channel are invalid.
    ERR_MIC_OPEN_FAIL = 0x01040404Failed to initialize the capture device.
    ERR_SPEAKER_OPEN_FAIL = 0x01040405Failed to initialize the playback device.
    ERR_MIC_INTERRUPT = 0x01040406An exception occurred during capture.
    ERR_SPEAKER_INTERRUPT = 0x01040407An exception occurred during playback.
    ERR_MIC_AUTH_FAIL = 0x01040408Failed to obtain authorization for the microphone.
    ERR_MIC_NOT_AVAILABLE = 0x01040409Authorization for the microphone is not granted.
    ERR_SPEAKER_NO_AVAILABLE = 0x01040410No audio capture device is available.
    ERR_CAMERA_OPEN_FAIL = 0x01040104Failed to initialize the camera.
    ERR_CAMERA_INTERRUPT = 0x01040106An exception occurred during camera capture.
    ERR_VIDEO_DISPLAY_OPEN_FAIL = 0x01040201Failed to initialize the rendering device.
    ERR_VIDEO_DISPLAY_INTERRUPT = 0x01040202An exception occurred during rendering.
    ERR_AUDIO_BUFFER_FULL = 0x01070101The audio input buffer is full.
    ERR_ICE_CONNECTION_CONNECT_FAIL = 0x01050201Failed to establish the media channel.
    ERR_ICE_CONNECTION_RECONNECT_FAI = 0x01050202Failed to reconnect to the media channel.
    ERR_ICE_CONNECTION_HEARTBEAT_TIMEOUT = 0x0102020CThe signaling heartbeat timed out.
    ERR_LOWLATENCY_LIVE_COMMUNICATION_FAIL = 0x01070003 A signaling failure occurred in the interactive stream.
    ERR_LOWLATENCY_LIVE_MEDIA_SETTING_FAIL = 0x01070004 An error occurred in the media settings for the interactive stream.
    ERR_LOWLATENCY_LIVE_NONE_BROADCASTER = 0x01070005 No streamer is publishing a stream in the current channel of the interactive stream.
    ERR_LOWLATENCY_LIVE_NEED_RESTART = 0x01070006 An error occurred in the interactive stream. The application layer must create a new SDK instance.
    ERR_LOWLATENCY_LIVE_NEEDRESTART_AGAIN_LATER = 0x01070007 An error occurred in the interactive stream. The application layer must wait for a custom interval and then create a new SDK instance.
    ERR_LOWLATENCY_LIVE_SERVICE_UNAVAILABLE = 0x01070008The interactive stream service is unavailable or degraded.
    ERR_LOWLATENCY_LIVE_MEDIA_CONNECTION_INTERRUPTION = 0x01070009A network disconnection error occurred in the interactive stream.
    ERR_SDK_INVALID_STATE = 0x01030204An internal SDK state error occurred.
    ERR_SESSION_REMOVED = 0x02010105The session has been removed.
    ERR_INNER = -1An internal SDK error occurred.
  • AliRtcRotationMode: The video rotation mode.
    Enumeration NameDescription
    AliRtcRotationMode_00-degree rotation.
    AliRtcRotationMode_90Rotates the video by 90 degrees.
    AliRtcRotationMode_180Rotates the video by 180 degrees.
    AliRtcRotationMode_270Rotates the video by 270 degrees.
  • AliRtcVideoEncoderMirrorMode: The video encoder mirror mode.
    Enumeration NameDescription
    AliRtcVideoEncoderMirrorModeDisabledMirrors the encoded video.
    AliRtcVideoEncoderMirrorModeEnabledDoes not mirror the encoded video.
  • AliRtcVideoEncoderConfiguration: The video encoder configuration.
    ParameterTypeDescription
    mirrorModeAliRtcVideoEncoderMirrorModeThe mirror mode for the encoded video.