1 line
131 KiB
Plaintext
1 line
131 KiB
Plaintext
|
{"version":3,"names":["AreaCode","exports","AudioCodecProfileType","AudioEqualizationBandFrequency","AudioLocalError","AudioLocalState","AudioMixingReason","AudioMixingStateCode","AudioOutputRouting","AudioProfile","AudioRecordingQuality","AudioRecordingPosition","AudioRemoteState","AudioRemoteStateReason","AudioReverbPreset","AudioReverbType","AudioSampleRateType","AudioScenario","AudioVoiceChanger","CameraCaptureOutputPreference","CameraDirection","ChannelMediaRelayError","ChannelMediaRelayEvent","ChannelMediaRelayState","ChannelProfile","ClientRole","ConnectionChangedReason","ConnectionStateType","DegradationPreference","EncryptionMode","ErrorCode","InjectStreamStatus","LastmileProbeResultState","LighteningContrastLevel","LocalVideoStreamError","LocalVideoStreamState","LogFilter","NetworkQuality","NetworkType","RtmpStreamingErrorCode","RtmpStreamingState","StreamFallbackOptions","UserOfflineReason","UserPriority","VideoCodecProfileType","VideoFrameRate","BitRate","VideoMirrorMode","VideoOutputOrientationMode","VideoQualityAdaptIndication","VideoRemoteState","VideoRemoteStateReason","VideoRenderMode","VideoStreamType","WarningCode","AudioChannel","VideoCodecType","StreamPublishState","StreamSubscribeState","RtmpStreamingEvent","AudioSessionOperationRestriction","AudioEffectPreset","VoiceBeautifierPreset","AudienceLatencyLevelType","LogLevel","CaptureBrightnessLevelType","SuperResolutionStateReason","UploadErrorReason","CloudProxyType","ExperienceQualityType","ExperiencePoorReason","VoiceConversionPreset","VirtualBackgroundSourceType","VirtualBackgroundSourceStateReason","AudioFileInfoError","AudioMixingDualMonoMode","VirtualBackgroundBlurDegree","VideoCodecTypeForStream","ProxyType","ContentInspectResult","WlAccReason","WlAccAction","ClientRoleChangeFailedReason","VideoContentHint"],"sources":["Enums.ts"],"sourcesContent":["/**\r\n * Regions for connection.\r\n */\r\nexport enum AreaCode {\r\n /**\r\n * Mainland China\r\n */\r\n CN = 0x00000001,\r\n /**\r\n * North America\r\n */\r\n NA = 0x00000002,\r\n /**\r\n * Europe\r\n */\r\n EU = 0x00000004,\r\n /**\r\n * Asia, excluding Mainland China\r\n */\r\n AS = 0x00000008,\r\n /**\r\n * Japan\r\n */\r\n JP = 0x00000010,\r\n /**\r\n * India\r\n */\r\n IN = 0x00000020,\r\n /**\r\n * (Default) Global\r\n */\r\n GLOB = -1,\r\n}\r\n\r\n/**\r\n * Audio codec profile.\r\n */\r\nexport enum AudioCodecProfileType {\r\n /**\r\n * 0: (Default) LC-AAC.\r\n */\r\n LCAAC = 0,\r\n /**\r\n * 1: HE-AAC.\r\n */\r\n HEAAC = 1,\r\n /**\r\n * 2: HE-AAC v2.\r\n *\r\n * @since v3.6.2\r\n */\r\n HE_AAC_V2 = 2,\r\n}\r\n\r\n/**\r\n * Audio equalization band frequency.\r\n */\r\nexport enum AudioEqualizationBandFrequency {\r\n /**\r\n * 0: 31 Hz.\r\n */\r\n Band31 = 0,\r\n /**\r\n * 1: 62 Hz.\r\n */\r\n Band62 = 1,\r\n /**\r\n * 2: 125 Hz.\r\n */\r\n Band125 = 2,\r\n /**\r\n * 3: 250 Hz.\r\n */\r\n Band250 = 3,\r\n /**\r\n * 4: 500 Hz.\r\n */\r\n Band500 = 4,\r\n /**\r\n * 5: 1 kHz.\r\n */\r\n Band1K = 5,\r\n /**\r\n * 6: 2 kHz.\r\n */\r\n Band2K = 6,\r\n /**\r\n * 7: 4 kHz.\r\n */\r\n Band4K = 7,\r\n /**\r\n * 8: 8 kHz.\r\n */\r\n Band8K = 8,\r\n /**\r\n * 9: 16 kHz.\r\n */\r\n Band16K = 9,\r\n}\r\n\r\n/**\r\n * The error information of the local audio.\r\n */\r\nexport enum AudioLocalError {\r\n /**\r\n * 0: The local audio is normal.\r\n */\r\n Ok = 0,\r\n /**\r\n * 1: No specified reason for the local audio failure.\r\n */\r\n Failure = 1,\r\n /**\r\n * 2: No permission to use the local audio device.\r\n */\r\n DeviceNoPermission = 2,\r\n /**\r\n * 3: The microphone is in use.\r\n */\r\n DeviceBusy = 3,\r\n /**\r\n * 4: The local audio recording fails. Check whether the recording device is working properly.\r\n */\r\n RecordFailure = 4,\r\n /**\r\n * 5: The local audio encoding fails.\r\n */\r\n EncodeFailure = 5,\r\n /**\r\n * 8: The local audio capturing is interrupted by the system call.\r\n */\r\n Interrupted = 8,\r\n}\r\n\r\n
|