Meeting SDK for Windows API Reference
Loading...
Searching...
No Matches
setting_service_interface.h
Go to the documentation of this file.
1
5#ifndef _SETTING_SERVICE_INTERFACE_H_
6#define _SETTING_SERVICE_INTERFACE_H_
7#include "zoom_sdk_def.h"
8#if defined(WIN32)
10#endif
11
18{
19public:
24 virtual const zchar_t* GetDeviceId() = 0;
25
30 virtual const zchar_t* GetDeviceName() = 0;
31
36 virtual bool IsSelectedDevice() = 0;
37
38 virtual ~ICameraInfo() {};
39};
40
46{
47public:
52 virtual const zchar_t* GetDeviceId() = 0;
53
58 virtual const zchar_t* GetDeviceName() = 0;
59
64 virtual bool IsSelectedDevice() = 0;
65
66 virtual ~IMicInfo() {};
67};
68
74{
75public:
80 virtual const zchar_t* GetDeviceId() = 0;
81
86 virtual const zchar_t* GetDeviceName() = 0;
87
92 virtual bool IsSelectedDevice() = 0;
93
94 virtual ~ISpeakerInfo() {};
95};
96
102{
103public:
108 virtual const zchar_t* GetDeviceId() = 0;
109
114 virtual const zchar_t* GetDeviceName() = 0;
115
120 virtual bool IsSelectedDevice() = 0;
121
122 virtual ~IRingSpeakerInfo() {};
123};
124
147
148
149#if defined(WIN32)
153typedef enum tagReactionSkinToneType
154{
156 ReactionSkinTone_None = 0,
158 ReactionSkinTone_Default,
160 ReactionSkinTone_Light,
162 ReactionSkinTone_MediumLight,
164 ReactionSkinTone_Medium,
166 ReactionSkinTone_MediumDark,
168 ReactionSkinTone_Dark,
169}ReactionSkinToneType;
170
174enum ZoomSDKUITheme
175{
177 ZoomSDKUITheme_Bloom,
179 ZoomSDKUITheme_Rose,
181 ZoomSDKUITheme_Agave,
183 ZoomSDKUITheme_Classic,
184};
185
189enum ZoomSDKUIAppearance
190{
192 ZoomSDKUIAppearance_Light = 1,
194 ZoomSDKUIAppearance_Dark,
196 ZoomSDKUIAppearance_System,
197};
198
202enum WindowSizeType
203{
205 WindowSize_None = 0,
207 WindowSize_FullScreen,
209 WindowSize_Maximize,
211 WindowSize_CurrentSize,
212};
213
217enum SettingTabPage
218{
220 SettingTabPage_General,
222 SettingTabPage_Audio,
224 SettingTabPage_Video,
225};
226
230enum ScreenCaptureMode
231{
233 CaptureMode_auto = 0,
235 CaptureMode_legacy,
237 CaptureMode_gpu_copy_filter,
239 CaptureMode_ada_copy_filter,
241 CaptureMode_ada_copy_without_filter,
243 CaptureMode_ada_secure_filter,
245 CaptureMode_end,
246};
247
251enum ShareOptionInMeeting
252{
254 ShareOptionInMeeting_AllOption,
256 ShareOptionInMeeting_AutoShareDesktop,
257};
258
262enum ShareOptionToRoom
263{
265 ShareOptionToRoom_AllOption,
267 ShareOptionToRoom_AutoShareDesktop,
268};
269
273enum ShareSelectMode
274{
276 SelectMode_None = 0,
278 SelectMode_Window,
280 SelectMode_Process,
281};
282
286typedef struct tagShowSettingDlgParam
287{
289 HWND hParent;
291 int top;
293 int left;
295 HWND hSettingWnd;
297 bool bShow;
299 bool bCenter;
301 SettingTabPage eTabPageType;
302 tagShowSettingDlgParam()
303 {
304 hParent = nullptr;
305 top = 0;
306 left = 0;
307 hSettingWnd = nullptr;
308 bShow = true;
309 bCenter = false;
310 eTabPageType = SettingTabPage_General;
311 }
312}ShowSettingDlgParam;
313
317typedef struct tagSettingDlgShowTabPageOption
318{
320 bool bShowGeneral;
322 bool bShowVideo;
324 bool bShowAudio;
326 bool bShowShareScreen;
328 bool bShowVirtualBackGround;
330 bool bSHowRecording;
332 bool bShowAdvancedFeature;
334 bool bShowStatistics;
336 bool bShowFeedback;
338 bool bShowKeyboardShortcuts;
340 bool bShowAccessibility;
341 tagSettingDlgShowTabPageOption()
342 {
343 bShowGeneral = true;
344 bShowVideo = true;
345 bShowAudio = true;
346 bShowShareScreen = true;
347 bShowVirtualBackGround = true;
348 bSHowRecording = true;
349 bShowStatistics = true;
350 bShowAccessibility = true;
351 bShowKeyboardShortcuts = true;
352 bShowAdvancedFeature = false;
353 bShowFeedback = false;
354 }
355
356}SettingDlgShowTabPageOption;
357
361typedef struct tagSettingDlgShowUrlOption
362{
364 bool bShowGeneralViewMoreSetting;
366 bool bShowVideoSupportCenter;
368 bool bShowAudioLearnMore;
370 bool bShowShareAndVBLearnMore;
371 tagSettingDlgShowUrlOption()
372 {
373 bShowGeneralViewMoreSetting = true;
374 bShowVideoSupportCenter = true;
375 bShowAudioLearnMore = true;
376 bShowShareAndVBLearnMore = true;
377 }
378
379}SettingDlgShowUrlOption;
380
384typedef enum
385{
387 enuCanTest = 0,
389 enuMicRecording,
391 enuCanPlay,
392} SDK_TESTMIC_STATUS;
393
398class ITestAudioDeviceHelperEvent
399{
400public:
401 virtual ~ITestAudioDeviceHelperEvent() {}
402
408 virtual void OnMicSpkVolumeChanged(unsigned int MicVolume, unsigned int SpkVolume) = 0;
409
414 virtual void OnNoAudioDeviceIsUseful(bool bMicOrSpk) = 0;
415
422 virtual void OnTestMicStatusChanged(SDK_TESTMIC_STATUS status,bool& bHandled) = 0;
423
427 virtual void OnSelectedAudioDeviceIsChanged() = 0;
428};
429
434class ITestAudioDeviceHelper
435{
436public:
443 virtual SDKError SetEvent(ITestAudioDeviceHelperEvent* pEvent) = 0;
444
451 virtual SDKError TestMicStartRecording(const zchar_t* deviceID = nullptr) = 0;
452
458 virtual SDKError TestMicStopTesting() = 0;
459
465 virtual SDKError TestMicPlayRecording() = 0;
466
473 virtual SDKError TestSpeakerStartPlaying(const zchar_t* deviceID = nullptr) = 0;
474
480 virtual SDKError TestSpeakerStopPlaying() = 0;
481
488 virtual SDKError SetTimerInterval(unsigned int timerInterval) = 0;
489};
490#endif
491
508
514{
515public:
521 virtual SDKError EnableAutoCopyInviteLink(bool bEnable) = 0;
522
527 virtual bool IsAutoCopyInviteLinkEnabled() = 0;
528
534 virtual SDKError EnableMuteWhenLockScreen(bool bEnable) = 0;
535
540 virtual bool IsMuteWhenLockScreenEnabled() = 0;
541#if defined(WIN32)
547 virtual SDKError EnableDualScreenMode(bool bEnable) = 0;
548
553 virtual bool IsDualScreenModeEnabled() = 0;
554
561 virtual SDKError TurnOffAeroModeInSharing(bool bTurnoff) = 0;
562
567 virtual bool IsAeroModeInSharingTurnOff() = 0;
568
574 virtual SDKError EnableAutoFullScreenVideoWhenJoinMeeting(bool bEnable) = 0;
575
580 virtual bool IsAutoFullScreenVideoWhenJoinMeetingEnabled() = 0;
581
587 virtual SDKError EnableSplitScreenMode(bool bEnable) = 0;
588
593 virtual bool IsSplitScreenModeEnabled() = 0;
594
600 virtual SDKError EnableDisplayReminderWindowWhenExit(bool bEnable) = 0;
601
606 virtual bool IsDisplayReminderWindowWhenExitEnabled() = 0;
607
613 virtual SDKError EnableShowMyMeetingElapseTime(bool bEnable) = 0;
614
619 virtual bool IsShowMyMeetingElapseTimeEnabled() = 0;
620
626 virtual SDKError SetReactionSkinTone(ReactionSkinToneType skinTone) = 0;
627
632 virtual ReactionSkinToneType GetReactionSkinTone() = 0;
633
638 virtual bool IsSupportSetUITheme() = 0;
639
645 virtual SDKError SetUITheme(ZoomSDKUITheme theme) = 0;
646
651 virtual ZoomSDKUITheme GetUITheme() = 0;
652
657 virtual bool IsSupportSetUIAppearance() = 0;
658
664 virtual SDKError SetUIAppearance(ZoomSDKUIAppearance appearance) = 0;
665
670 virtual ZoomSDKUIAppearance GetUIAppearance() = 0;
671
672#endif
673};
674#if defined(WIN32)
678typedef enum
679{
681 PREVIEW_VIDEO_ROTATION_ACTION_0,
683 PREVIEW_VIDEO_ROTATION_ACTION_CLOCK90,
685 PREVIEW_VIDEO_ROTATION_ACTION_CLOCK180,
687 PREVIEW_VIDEO_ROTATION_ACTION_ANTI_CLOCK90
688} PREVIEW_VIDEO_ROTATION_ACTION, *PPREVIEW_VIDEO_ROTATION_ACTION;
689
693typedef enum
694{
696 VIDEO_HARDWARE_ENCODE_RECEIVING = 0,
698 VIDEO_HARDWARE_ENCODE_SENDING,
700 VIDEO_HARDWARE_ENCODE_PROCESSING,
701}VIDEO_HARDWARE_ENCODE_TYPE;
702
707class ITestVideoDeviceHelperEvent
708{
709public:
710 virtual ~ITestVideoDeviceHelperEvent() {}
711
715 virtual void OnNoVideoDeviceIsUseful() = 0;
716
720 virtual void OnSelectedVideoDeviceIsChanged() = 0;
721
725 virtual void OnNoWindowToShowPreview() = 0;
726};
727
732class ITestVideoDeviceHelper
733{
734public:
741 virtual SDKError SetEvent(ITestVideoDeviceHelperEvent* pEvent) = 0;
742
750 virtual SDKError SetVideoPreviewParentWnd(HWND hParentWnd, RECT rc = _SDK_TEST_VIDEO_INIT_RECT) = 0;
751
758 virtual SDKError TestVideoStartPreview(const zchar_t* deviceID = nullptr) = 0;
759
765 virtual SDKError TestVideoStopPreview() = 0;
766
773 virtual SDKError TestVideoRotate(PREVIEW_VIDEO_ROTATION_ACTION action) = 0;
774
775 virtual ICameraController* GetTestCameraController() = 0;
776};
777
782class ILipSyncAvatarPreviewHelperEvent
783{
784public:
785 virtual ~ILipSyncAvatarPreviewHelperEvent() {}
786
790 virtual void OnNoWindowToShowLipsyncPreview() = 0;
791};
792
797class ILipSyncAvatarPreviewHelper
798{
799public:
806 virtual SDKError SetEvent(ILipSyncAvatarPreviewHelperEvent* pEvent) = 0;
807
815 virtual SDKError SetLipSyncAvatarPreviewParentWnd(HWND hParentWnd, RECT rc = _SDK_TEST_VIDEO_INIT_RECT) = 0;
816
822 virtual SDKError StartLipSyncAvatarPreview() = 0;
823
829 virtual SDKError StopLipSyncAvatarPreview() = 0;
830
831 virtual ~ILipSyncAvatarPreviewHelper() {};
832};
833
838class I3DAvatarImageInfo
839{
840public:
845 virtual bool IsSelected() = 0;
846
851 virtual bool IsLastUsed() = 0;
852
857 virtual const zchar_t* GetImageFilePath() = 0;
858
863 virtual const zchar_t* GetImageName() = 0;
864
869 virtual int GetIndex() = 0;
870
871 virtual ~I3DAvatarImageInfo() {};
872};
873
874#endif
887
888
894{
895public:
897
902 virtual void onComputerCamDeviceChanged(IList<ICameraInfo*>* pNewCameraList) = 0;
903
909 virtual void onDefaultCamDeviceChanged(const zchar_t* deviceId, const zchar_t* deviceName) = 0;
910};
911
924
939
956
962{
963public:
969
975 virtual SDKError SelectCamera(const zchar_t* deviceId) = 0;
976
982 virtual SDKError EnableFaceBeautyEffect(bool bEnable) = 0;
983
988 virtual bool IsFaceBeautyEffectEnabled() = 0;
989
994 virtual unsigned int GetFaceBeautyStrengthValue() = 0;
995
1001 virtual SDKError SetFaceBeautyStrengthValue(unsigned int beautyStrengthValue) = 0;
1002
1010 virtual SDKError EnableLightAdaption(bool bEnable, VIDEO_LIGHT_ADAPTION_TYPE lightAdaptionType, double manualValue) = 0;
1011
1016 virtual bool IsLightAdaptionEnabled() = 0;
1017
1023
1028 virtual double GetLightAdaptionManualValue() = 0;
1029
1035 virtual SDKError EnableHDVideo(bool bEnable) = 0;
1036
1041 virtual bool IsHDVideoEnabled() = 0;
1042
1049
1055
1061 virtual SDKError EnableTemporalDeNoise(bool bEnable) = 0;
1062
1067 virtual bool IsTemporalDeNoiseEnabled() = 0;
1068
1074 virtual SDKError EnableAlwaysShowNameOnVideo(bool bEnable) = 0;
1075
1081
1088
1094
1102
1110
1115 virtual bool IsVideoAutoFramingEnabled() = 0;
1116
1123
1130
1136 virtual SDKError SetVideoAutoFramingRatio(float ratio) = 0;
1137
1144
1152
1158
1165 virtual SDKError EnableOptimizeVideoQuality(bool bEnable) = 0;
1166
1172
1178#if defined(WIN32)
1184 virtual SDKError EnableVideoMirrorEffect(bool bEnable) = 0;
1185
1190 virtual bool IsVideoMirrorEffectEnabled() = 0;
1191
1197 virtual SDKError EnableSpotlightSelf(bool bEnable) = 0;
1198
1203 virtual bool IsSpotlightSelfEnabled() = 0;
1204
1211 virtual SDKError EnableHardwareEncode(bool bEnable, VIDEO_HARDWARE_ENCODE_TYPE encodeType) = 0;
1212
1218 virtual bool IsHardwareEncodeEnabled(VIDEO_HARDWARE_ENCODE_TYPE encodeType) = 0;
1219
1225 virtual SDKError Enable49VideoesInGallaryView(bool bEnable) = 0;
1226
1231 virtual bool Is49VideoesInGallaryViewEnabled() = 0;
1232
1238 virtual SDKError EnableHideNoVideoUsersOnWallView(bool bEnable) = 0;
1239
1244 virtual bool IsHideNoVideoUsersOnWallViewEnabled() = 0;
1245
1251 virtual SDKError EnableVideoPreviewDialog(bool bEnable) = 0;
1252
1257 virtual bool IsVideoPreviewDialogEnabled() = 0;
1258
1264 virtual SDKError EnableStopIncomingVideo(bool bEnable) = 0;
1265
1270 virtual bool IsStopIncomingVideoEnabled() = 0;
1271
1278 virtual SDKError EnableHideSelfView(bool bEnable) = 0;
1279
1286 virtual SDKError IsHideSelfViewEnabled(bool& bEnabled) = 0;
1287
1292 virtual ITestVideoDeviceHelper* GetTestVideoDeviceHelper() = 0;
1293#endif
1294};
1295
1301{
1302public:
1304
1309 virtual void onComputerMicDeviceChanged(IList<IMicInfo*>* pNewMicList) = 0;
1310
1315 virtual void onComputerSpeakerDeviceChanged(IList<ISpeakerInfo*>* pNewSpeakerList) = 0;
1316
1322 virtual void onDefaultMicDeviceChanged(const zchar_t* deviceId, const zchar_t* deviceName) = 0;
1323
1329 virtual void onDefaultSpeakerDeviceChanged(const zchar_t* deviceId, const zchar_t* deviceName) = 0;
1330};
1331
1344
1356
1362{
1363public:
1369
1376 virtual SDKError SelectMic(const zchar_t* deviceId, const zchar_t* deviceName) = 0;
1377
1383
1390 virtual SDKError SelectSpeaker(const zchar_t* deviceId, const zchar_t* deviceName) = 0;
1391
1397 virtual SDKError EnableAutoJoinAudio(bool bEnable) = 0;
1398
1403 virtual bool IsAutoJoinAudioEnabled() = 0;
1404
1410 virtual SDKError EnableAutoAdjustMic(bool bEnable) = 0;
1411
1416 virtual bool IsAutoAdjustMicEnabled() = 0;
1417
1424
1430
1436 virtual SDKError EnableSuppressAudioNotify(bool bEnable) = 0;
1437
1443
1450 virtual SDKError SetMicVol(FLOAT& value) = 0;
1451
1457 virtual SDKError GetMicVol(FLOAT& value) = 0;
1458
1465 virtual SDKError SetSpeakerVol(FLOAT& value) = 0;
1466
1472 virtual SDKError GetSpeakerVol(FLOAT& value) = 0;
1473
1481
1487
1494
1500
1507
1513
1520
1527 virtual SDKError DisableEchoCancellation(bool bDisable) = 0;
1528
1533 virtual bool IsEchoCancellationDisabled() = 0;
1534
1536
1537 virtual SDKError GetRingSpkVolume(FLOAT& fValue) = 0;
1538
1539 virtual SDKError SetRingSpkVolume(FLOAT fValue) = 0;
1540
1541 virtual SDKError SetRingSpkDevice(const zchar_t* spk_id) = 0;
1542
1544
1546
1552 virtual SDKError EnableMicOriginalInput(bool bEnable) = 0;
1553#if defined(WIN32)
1560 virtual SDKError EnableStereoAudio(bool bEnable) = 0;
1561
1566 virtual bool IsStereoAudioEnable() = 0;
1567
1572 virtual bool IsMicOriginalInputEnable() = 0;
1573
1579 virtual SDKError EnableHoldSpaceKeyToSpeak(bool bEnable) = 0;
1580
1585 virtual bool IsHoldSpaceKeyToSpeakEnabled() = 0;
1586
1591 virtual ITestAudioDeviceHelper* GetTestAudioDeviceHelper() = 0;
1592
1598 virtual SDKError EnableSyncButtonsOnHeadset(bool bEnable) = 0;
1599
1604 virtual bool IsSyncButtonsOnHeadsetEnabled() = 0;
1605
1612 virtual SDKError EnableHighFidelityMusicMode(bool bEnable) = 0;
1613
1618 virtual bool IsHighFidelityMusicModeDisabled() = 0;
1619
1620 virtual SDKError EnableAlwaysUseSeparateRingSpk(bool bEnable) = 0;
1621
1622 virtual bool IsAlwaysUseSeparateRingSpk() = 0;
1623
1624 virtual bool isSupportPromptJoinAudioDialogWhenUse3rdPartyAudio() = 0;
1625#endif
1626};
1627
1633{
1634public:
1636
1643 virtual void onCloudRecordingStorageInfo(INT64 storage_total_size, INT64 storage_used_size, bool allow_exceed_storage) = 0;
1644};
1645
1651{
1652public:
1658 virtual SDKError SetRecordingPath(const zchar_t* szPath) = 0;
1659
1664 virtual const zchar_t* GetRecordingPath() = 0;
1665
1672
1678
1685
1691
1697 virtual SDKError CanGetRecordingManagementURL(bool& bEnable) = 0;
1698
1704 virtual SDKError EnableMultiAudioStreamRecord(bool bEnable) = 0;
1705
1711
1717 virtual SDKError EnableAddTimestampWatermark(bool bEnable) = 0;
1718
1724
1731
1737
1744
1750
1757
1763#if defined(WIN32)
1769 virtual SDKError EnableSelectRecordFileLocationAfterMeeting(bool bEnable) = 0;
1770
1775 virtual bool IsSelectRecordFileLocationAfterMeetingEnabled() = 0;
1776#endif
1777
1778};
1779
1798
1811
1830
1858
1893
1894
1933
1940
1948
1954{
1955public:
1961
1966 virtual const zchar_t* GetWallpaperID() = 0;
1967
1972 virtual const zchar_t* GetTitle() = 0;
1973
1978 virtual const zchar_t* GetThumbnailPath() = 0;
1979
1984 virtual const zchar_t* GetPath() = 0;
1985
1990 virtual int GetTransparency() = 0;
1991
1996 virtual void SetTransparency(int transparency) = 0;
1997
2003
2004 virtual ~IWallpaperItem() {};
2005};
2006
2012{
2013public:
2019
2026
2027#if defined(WIN32)
2032 virtual void onPersonalWallpaperChanged(IWallpaperItem* item) = 0;
2033
2039 virtual void onPersonalWallpaperImageDownloadStatus(ZoomSDKWallpaperSettingStatus status, const zchar_t* wallpaperId) = 0;
2040#endif
2041};
2042
2048{
2049public:
2057
2062 virtual bool IsMeetingWallpaperEnabled() = 0;
2063
2069
2076
2082
2089
2094 virtual IWallpaperItem* GetMeetingWallpaperItemByID(const zchar_t* wallpaperID) = 0;
2095
2096#if defined(WIN32)
2101 virtual bool IsPersonalWallpaperEnabled() = 0;
2102
2108 virtual IWallpaperItem* GetCurrentPersonalWallpaperItem() = 0;
2109
2115 virtual IList<IWallpaperItem* >* GetPersonalWallpaperList() = 0;
2116
2123 virtual SDKError SetPersonalWallpaper(IWallpaperItem* item) = 0;
2124
2130 virtual IWallpaperItem* GetPersonalWallpaperItemByID(const zchar_t* wallpaperID) = 0;
2131#endif
2132};
2133
2134#if defined(WIN32)
2139class IAccessibilitySettingContext
2140{
2141public:
2147 virtual SDKError EnableAlwaysShowMeetingControls(bool bEnable) = 0;
2148
2154 virtual SDKError IsAlwaysShowMeetingControlsEnable(bool& bEnable) = 0;
2155};
2156
2161class ISettingUIStrategy
2162{
2163public:
2168 virtual void DisableAdvancedFeatures4GeneralSetting(bool bDisable) = 0;
2169
2175 virtual void DisableAccountSettingTabPage(bool bDisable) = 0;
2176
2181 virtual void ConfSettingDialogShownTabPage(SettingDlgShowTabPageOption showOption) = 0;
2182
2187 virtual void HideAutoCopyInviteLinkCheckBox(bool bHide) = 0;
2188
2193 virtual void ConfigToShowUrlLinksInSetting(SettingDlgShowUrlOption showOption) = 0;
2194};
2199class IVirtualBGImageInfo
2200{
2201public:
2206 virtual bool isSelected() = 0;
2207
2212 virtual bool isAllowDelete() = 0;
2217 virtual const zchar_t* GetImageFilePath() = 0;
2218
2223 virtual const zchar_t* GetImageName() = 0;
2224
2225 virtual ~IVirtualBGImageInfo() {};
2226};
2227
2228enum VBVideoError {
2229 VB_VideoError_None = 0,
2230 VB_VideoError_UnknownFormat,
2231 VB_VideoError_ResolutionHigh1080P,
2232 VB_VideoError_ResolutionHigh720P,
2233 VB_VideoError_ResolutionLow,
2234 VB_VideoError_PlayError,
2235 VB_VideoError_OpenError,
2236};
2237
2242class IVirtualBGSettingContextEvent
2243{
2244public:
2245 virtual ~IVirtualBGSettingContextEvent() {}
2246
2250 virtual void onVBImageDidDownloaded() = 0;
2251
2256 virtual void onGreenVBDidUpdateWithReplaceColor(DWORD selectedColor) = 0;
2257
2261 virtual void onSelectedVBImageChanged() = 0;
2262
2267 virtual void OnVideoThumbReady(const zchar_t* file_path) = 0;
2268
2274 virtual void OnVideoThumbError(const zchar_t* file_path, VBVideoError error) = 0;
2275
2281 virtual void OnVideoPlayError(const zchar_t* file_path, VBVideoError error) = 0;
2282};
2283
2288class IVirtualBGSettingContext
2289{
2290public:
2297 virtual SDKError SetVirtualBGEvent(IVirtualBGSettingContextEvent* pEvent) = 0;
2298
2303 virtual bool IsSupportVirtualBG() = 0;
2304
2309 virtual bool IsDeviceSupportSmartVirtualBG() = 0;
2310
2315 virtual bool IsSupportVirtualBackgroundVideo() = 0;
2316
2322 virtual bool IsDeviceSupportSmartVirtualBackgroundVideo() = 0;
2323
2329 virtual bool IsDeviceSupportGreenVirtualBackgroundVideo() = 0;
2330
2335 virtual bool IsUsingGreenScreenOn() = 0;
2336
2343 virtual SDKError SetUsingGreenScreen(bool bUse) = 0;
2344
2349 virtual bool IsAllowToAddNewVBItem() = 0;
2350
2356 virtual bool isAllowToRemoveVBItem() = 0;
2357
2363 virtual SDKError AddBGImage(const zchar_t* file_path) = 0;
2364
2370 virtual SDKError RemoveBGImage(IVirtualBGImageInfo* pRemoveImage) = 0;
2371
2376 virtual IList<IVirtualBGImageInfo* >* GetBGImageList() = 0;
2377
2383 virtual SDKError UseBGImage(IVirtualBGImageInfo* pImage) = 0;
2384
2389 virtual DWORD GetBGReplaceColor() = 0;
2390
2395 virtual SDKError BeginSelectReplaceVBColor() = 0;
2396
2402 virtual SDKError AddBGVideo(const zchar_t* file_path) = 0;
2403
2409 virtual SDKError RemoveBGVideo(IVirtualBGImageInfo* pRemoveVideo) = 0;
2410
2415 virtual IList<IVirtualBGImageInfo* >* GetBGVideoList() = 0;
2416
2422 virtual SDKError UseBGVideo(IVirtualBGImageInfo* pImage) = 0;
2423
2428 virtual ITestVideoDeviceHelper* GetTestVideoDeviceHelper() = 0;
2429};
2430
2431typedef enum
2432{
2433 ZoomSDKVideoEffectType_None = 0,
2434 ZoomSDKVideoEffectType_Filter = 1,
2435 ZoomSDKVideoEffectType_Frame = 2,
2436 ZoomSDKVideoEffectType_CustomFilter = 3,
2437 ZoomSDKVideoEffectType_Sticker = 4,
2438}ZoomSDKVideoEffectType;
2439
2444class IVideoFilterImageInfo
2445{
2446public:
2451 virtual bool isSelected() = 0;
2452
2457 virtual const zchar_t* GetImageFilePath() = 0;
2458
2463 virtual const zchar_t* GetImageName() = 0;
2464
2470 virtual ZoomSDKVideoEffectType GetType() = 0;
2471
2477 virtual int GetIndex() = 0;
2478
2479 virtual ~IVideoFilterImageInfo() {};
2480};
2481
2486class IVideoFilterSettingContextEvent
2487{
2488public:
2492 virtual void onVideoFilterItemThumnailsDownloaded() = 0;
2493
2499 virtual void onVideoFilterItemDataDownloading(ZoomSDKVideoEffectType type, int index) = 0;
2500
2507 virtual void onVideoFilterItemDataDownloaded(bool bSuccess, ZoomSDKVideoEffectType type, int index) = 0;
2508};
2509
2514class IVideoFilterSettingContext
2515{
2516public:
2523 virtual SDKError SetVideoFilterEvent(IVideoFilterSettingContextEvent* pEvent) = 0;
2524
2525
2530 virtual bool IsSupportVideoFilter() = 0;
2531
2536 virtual bool IsVideoFilterEnabled() = 0;
2537
2542 virtual bool IsVideoFilterLocked() = 0;
2543
2548 virtual IList<IVideoFilterImageInfo* >* GetVideoFilterImageList() = 0;
2549
2555 virtual SDKError UseVideoFilterImage(IVideoFilterImageInfo* pImage) = 0;
2556
2561 virtual ITestVideoDeviceHelper* GetTestVideoDeviceHelper() = 0;
2562};
2563
2564typedef enum
2565{
2566 ZoomSDKCustom3DAvatarElementImageType_None,
2567 ZoomSDKCustom3DAvatarElementImageType_Skin,
2568 ZoomSDKCustom3DAvatarElementImageType_Face,
2569 ZoomSDKCustom3DAvatarElementImageType_Hair,
2570 ZoomSDKCustom3DAvatarElementImageType_Eyes,
2571 ZoomSDKCustom3DAvatarElementImageType_EyeColor,
2572 ZoomSDKCustom3DAvatarElementImageType_Eyelashes,
2573 ZoomSDKCustom3DAvatarElementImageType_Eyebrows,
2574 ZoomSDKCustom3DAvatarElementImageType_Nose,
2575 ZoomSDKCustom3DAvatarElementImageType_Mouth,
2576 ZoomSDKCustom3DAvatarElementImageType_LipColor,
2577 ZoomSDKCustom3DAvatarElementImageType_Age,
2578 ZoomSDKCustom3DAvatarElementImageType_FacialHair,
2579 ZoomSDKCustom3DAvatarElementImageType_Body,
2580 ZoomSDKCustom3DAvatarElementImageType_Clothing,
2581 ZoomSDKCustom3DAvatarElementImageType_HeadCovering,
2582 ZoomSDKCustom3DAvatarElementImageType_Glasses,
2583}ZoomSDKCustom3DAvatarElementImageType;
2584
2585typedef enum
2586{
2587 ZoomSDKCustom3DAvatarElementColorType_None,
2588 ZoomSDKCustom3DAvatarElementColorType_Eyebrow,
2589 ZoomSDKCustom3DAvatarElementColorType_Mustache,
2590 ZoomSDKCustom3DAvatarElementColorType_Hair,
2591 ZoomSDKCustom3DAvatarElementColorType_Eyelash,
2592}ZoomSDKCustom3DAvatarElementColorType;
2593
2599class ICustom3DAvatarElementImageInfo
2600{
2601public:
2606 virtual ZoomSDKCustom3DAvatarElementImageType GetCustom3DAvatarElementImageType() = 0;
2607
2612 virtual bool IsSelected() = 0;
2613
2618 virtual const zchar_t* GetImageFilePath() = 0;
2619
2624 virtual const zchar_t* GetImageName() = 0;
2625
2626 virtual ~ICustom3DAvatarElementImageInfo() {};
2627};
2628
2634class ICustom3DAvatarElementColorInfo
2635{
2636public:
2641 virtual ZoomSDKCustom3DAvatarElementColorType GetCustom3DAvatarElementColorType() = 0;
2642
2643
2648 virtual unsigned long GetColor() = 0;
2649
2654 virtual bool IsSelected() = 0;
2655
2660 virtual const zchar_t* GetImageName() = 0;
2661
2662 virtual ~ICustom3DAvatarElementColorInfo() {};
2663};
2664
2669class ICustom3DAvatarElementSettingContextEvent
2670{
2671public:
2672 virtual ~ICustom3DAvatarElementSettingContextEvent() {}
2673
2679 virtual void onCustom3DAvatarElementImageModelDataDownloaded(bool bSuccess, ICustom3DAvatarElementImageInfo* pImageInfo) = 0;
2680};
2681
2704class ICustom3DAvatarElementSettingContext
2705{
2706public:
2707 virtual ~ICustom3DAvatarElementSettingContext() {}
2714 virtual SDKError SetEvent(ICustom3DAvatarElementSettingContextEvent* pEvent) = 0;
2719 virtual IList<ICustom3DAvatarElementImageInfo* >* GetCustom3DAvatarElementImageList() = 0;
2726 virtual bool IsCustom3DAvatarElementImageModelDataReady(ICustom3DAvatarElementImageInfo* pImageInfo) = 0;
2734 virtual SDKError DownloadCustom3dAvatarElementImageModelData(ICustom3DAvatarElementImageInfo* pImageInfo) = 0;
2741 virtual SDKError SetCustom3DAvatarElementImage(ICustom3DAvatarElementImageInfo* pImageInfo) = 0;
2746 virtual IList<ICustom3DAvatarElementColorInfo* >* GetCustom3DAvatarElementColorList() = 0;
2752 virtual SDKError SetCustom3DAvatarElementColor(ICustom3DAvatarElementColorInfo* pColorInfo) = 0;
2753};
2754
2755
2760class I3DAvatarSettingContextEvent
2761{
2762public:
2763 virtual ~I3DAvatarSettingContextEvent() {}
2764
2768 virtual void on3DAvatarItemThumbnailsDownloaded() = 0;
2769
2774 virtual void on3DAvatarItemDataDownloading(int index) = 0;
2775
2781 virtual void on3DAvatarItemDataDownloaded(bool bSuccess, int index) = 0;
2782
2788 virtual void onCustom3DAvatarImageModelDataDownloaded(bool bSuccess, I3DAvatarImageInfo* pImageInfo) = 0;
2789
2794 virtual void onCustom3DAvatarDefaultImageModelDataDownloaded(bool bSuccess) = 0;
2795};
2796
2801class I3DAvatarSettingContext
2802{
2803public:
2804 virtual ~I3DAvatarSettingContext() {}
2811 virtual SDKError SetEvent(I3DAvatarSettingContextEvent* pEvent) = 0;
2812
2817 virtual bool Is3DAvatarSupportedByDevice() = 0;
2818
2823 virtual bool Is3DAvatarEnabled() = 0;
2824
2829 virtual bool IsCustom3DAvatarEnabled() = 0;
2830
2836 virtual SDKError Enable3DAvatarEffectForAllMeeting(bool bEnable) = 0;
2837
2842 virtual bool Is3DAvatarEffectForAllMeetingEnabled() = 0;
2843
2848 virtual IList<I3DAvatarImageInfo* >* Get3DAvatarImageList() = 0;
2849
2855 virtual SDKError Set3DAvatarImage(I3DAvatarImageInfo* pImage) = 0;
2856
2863 virtual IList<I3DAvatarImageInfo* >* GetCustom3DAvatarImageList() = 0;
2864
2872 virtual bool IsCustom3DAvatarImageModelDataReady(I3DAvatarImageInfo* pImageInfo) = 0;
2873
2882 virtual SDKError DownloadCustom3DAvatarImageModelData(I3DAvatarImageInfo* pImageInfo) = 0;
2883
2891 virtual SDKError SetCustom3DAvatarImage(I3DAvatarImageInfo* pImageInfo) = 0;
2892
2899 virtual bool IsCustom3DAvatarDefaultImageModelDataReady() = 0;
2900
2908 virtual SDKError DownloadCustom3DAvatarDefaultImageModelData() = 0;
2909
2922 virtual ICustom3DAvatarElementSettingContext* StartCreateCustom3DAvatar(HWND hPreviewWnd, RECT rc) = 0;
2923
2933 virtual SDKError FinishCreateCustom3DAvatar(bool bSave) = 0;
2934
2948 virtual ICustom3DAvatarElementSettingContext* StartEditCustom3DAvatar(HWND hPreviewWnd, RECT rc, I3DAvatarImageInfo* pImage) = 0;
2949
2959 virtual SDKError FinishEditCustom3DAvatar(bool bSave) = 0;
2960
2968 virtual SDKError DuplicateCustom3DAvatarImage(I3DAvatarImageInfo* pImage) = 0;
2969
2976 virtual SDKError DeleteCustom3DAvatarImage(I3DAvatarImageInfo* pImage) = 0;
2977
2982 virtual ITestVideoDeviceHelper* GetTestVideoDeviceHelper() = 0;
2983
2989 virtual ILipSyncAvatarPreviewHelper* GetLipSyncAvatarPreviewHelper() = 0;
2990};
2991
2992typedef enum
2993{
2994 ZoomSDKFaceMakeupType_Mustache,
2995 ZoomSDKFaceMakeupType_Eyebrow,
2996 ZoomSDKFaceMakeupType_Lip
2997}ZoomSDKFaceMakeupType;
2998
3003class IFaceMakeupImageInfo
3004{
3005public:
3010 virtual ZoomSDKFaceMakeupType GetFaceMakeupType() = 0;
3011
3016 virtual bool IsSelected() = 0;
3017
3022 virtual const zchar_t* GetImageFilePath() = 0;
3023
3028 virtual const zchar_t* GetImageName() = 0;
3029
3035 virtual int GetIndex() = 0;
3036
3037 virtual ~IFaceMakeupImageInfo() {};
3038};
3039
3044class IFaceMakeupSettingContextEvent
3045{
3046public:
3047 virtual ~IFaceMakeupSettingContextEvent() {}
3048
3052 virtual void onFaceMakeupItemThumbnailsDownloaded(ZoomSDKFaceMakeupType type) = 0;
3053
3058 virtual void onFaceMakeupItemDataDownloading(ZoomSDKFaceMakeupType type, int index) = 0;
3059
3065 virtual void onFaceMakeupItemDataDownloaded(bool bSuccess, ZoomSDKFaceMakeupType type, int index) = 0;
3066};
3067
3072class IFaceMakeupSettingContext
3073{
3074public:
3081 virtual SDKError SetEvent(IFaceMakeupSettingContextEvent* pEvent) = 0;
3082
3087 virtual bool IsFaceMakeupEnabled() = 0;
3088
3093 virtual bool IsSupportFaceMakeup() = 0;
3094
3100 virtual SDKError EnableFaceMakeupEffectForAllMeeting(bool bEnable) = 0;
3101
3106 virtual bool IsFaceMakeupEffectForAllMeetingEnabled() = 0;
3107
3112 virtual IList<IFaceMakeupImageInfo* >* GetFaceMakeupImageList() = 0;
3113
3119 virtual SDKError SetFaceMakeupImage(IFaceMakeupImageInfo* pImage) = 0;
3120
3126 virtual SDKError SetLipsFaceMakeup(bool bEnable) = 0;
3127
3134 virtual SDKError SetColor(ZoomSDKFaceMakeupType type, unsigned long color) = 0;
3135
3142 virtual SDKError SetOpactity(ZoomSDKFaceMakeupType type, unsigned int opactity) = 0;
3143
3148 virtual SDKError ResetAllFaceMakeupEffect() = 0;
3149
3154 virtual ITestVideoDeviceHelper* GetTestVideoDeviceHelper() = 0;
3155};
3156#endif
3157
3163{
3164public:
3165
3172
3178
3184 virtual SDKError EnableTCPConnectionWhenSharing(bool bEnable) = 0;
3185
3190 virtual bool IsTCPConnectionWhenSharing() = 0;
3191
3197
3203 virtual SDKError EnableAccelerateGPUWhenShare(bool bEnable) = 0;
3204
3210 virtual SDKError IsAccelerateGPUWhenShareEnabled(bool& bEnable) = 0;
3211
3217 virtual SDKError EnableGreenBorderWhenShare(bool bEnable) = 0;
3218
3224
3229 virtual bool IsLimitFPSEnabledWhenShare() = 0;
3230
3236 virtual SDKError EnableLimitFPSWhenShare(bool bEnable) = 0;
3237
3242
3249
3255 virtual SDKError EnableShowMyAppWindowWhenShare(bool bEnable) = 0;
3256
3262
3268
3269
3274 virtual bool IsDoNotDisturbInSharingOn() = 0;
3275
3281 virtual SDKError EnableDoNotDisturbInSharing(bool bEnable) = 0;
3282
3289
3295 virtual SDKError IsAnnotationHardwareAccelerated(bool& bEnable) = 0;
3296
3303
3310
3322#if defined(WIN32)
3328 virtual SDKError SetWindowSizeTypeWhenViewShare(WindowSizeType eType) = 0;
3329
3333 virtual WindowSizeType GetWindowSizeTypeWhenViewShare() = 0;
3334
3340 virtual SDKError EnableRemoteControlAllApplications(bool bEnable) = 0;
3341
3346 virtual bool IsRemoteControlAllApplicationsEnabled() = 0;
3347
3353 virtual SDKError GetShareOptionWhenShareInMeeting(ShareOptionInMeeting& shareOption) = 0;
3354
3360 virtual SDKError SetShareOptionWhenShareInMeeting(ShareOptionInMeeting shareOption) = 0;
3361
3367 virtual SDKError GetShareOptionWhenShareApplication(ShareSelectMode& select_mode) = 0;
3368
3374 virtual SDKError SetShareOptionWhenShareApplication(ShareSelectMode select_mode) = 0;
3375
3381 virtual SDKError GetShareOptionWhenShareInDirectShare(ShareOptionToRoom& share_option) = 0;
3382
3388 virtual SDKError SetShareOptionWhenShareInDirectShare(ShareOptionToRoom share_option) = 0;
3389
3395 virtual SDKError SetScreenCaptureMode(ScreenCaptureMode capture_mode) = 0;
3396
3402 virtual SDKError GetScreenCaptureMode(ScreenCaptureMode& capture_mode) = 0;
3403#endif
3404};
3405
3411{
3412public:
3413
3419
3425
3431
3437
3443
3449
3450#if defined(WIN32)
3457 virtual SDKError ShowSettingDlg(ShowSettingDlgParam& param) = 0;
3458
3464 virtual SDKError HideSettingDlg() = 0;
3465
3470 virtual IAccessibilitySettingContext* GetAccessibilitySettings() = 0;
3471
3476 virtual ISettingUIStrategy* GetSettingUIStrategy() = 0;
3477
3482 virtual IVirtualBGSettingContext* GetVirtualBGSettings() = 0;
3483
3488 virtual IVideoFilterSettingContext* GetVideoFilterSettings() = 0;
3489
3494 virtual I3DAvatarSettingContext* Get3DAvatarSettings() = 0;
3495
3500 virtual IFaceMakeupSettingContext* GetFaceMakeupSettings() = 0;
3501#endif
3502
3508
3509};
3511#endif
Audio setting context callback event.
virtual void onComputerSpeakerDeviceChanged(IList< ISpeakerInfo * > *pNewSpeakerList)=0
Callback event when the SDK detects that the computer speaker devices have been changed.
virtual void onDefaultMicDeviceChanged(const zchar_t *deviceId, const zchar_t *deviceName)=0
Callback event when a microphone device is selected.
virtual void onComputerMicDeviceChanged(IList< IMicInfo * > *pNewMicList)=0
Callback event when the SDK detects that the computer mic devices have been changed.
virtual void onDefaultSpeakerDeviceChanged(const zchar_t *deviceId, const zchar_t *deviceName)=0
Callback event when a speaker device is selected.
Audio setting interface.
virtual bool IsAlwaysMuteMicWhenJoinVoipEnabled()=0
Determines whether always muting the mic when joining the meeting by VoIP is enabled.
virtual Suppress_Background_Noise_Level GetSuppressBackgroundNoiseLevel()=0
Gets the suppress background noise level.
virtual bool IsSuppressAudioNotifyEnabled()=0
Determines whether prompting when the user joins the meeting using third party audio is enabled.
virtual SDK_AUDIO_DEVICE_RAW_MODE_TYPE GetAudioSignalProcessType()=0
Gets the audio device raw mode type.
virtual SDKError UseDefaultSystemMic()=0
virtual SDKError DisableEchoCancellation(bool bDisable)=0
Enables or disables disabling echo cancellation.
virtual IList< IRingSpeakerInfo * > * GetRingSpkList()=0
virtual IList< IMicInfo * > * GetMicList()=0
Gets the mic device list.
virtual SDKError UseDefaultSystemSpeaker()=0
virtual SDKError SetEchoCancellationLevel(SDK_ECHO_CANCELLATION_LEVEL level)=0
Sets the echo cancellation level.
virtual bool IsAutoAdjustMicEnabled()=0
Determines whether auto-adjusting mic volume is enabled.
virtual SDKError EnableSuppressAudioNotify(bool bEnable)=0
Enables or disables prompting when the user joins the meeting using third party audio.
virtual SDKError SetSpeakerVol(FLOAT &value)=0
Sets the volume of the selected speaker.
virtual SDKError SetMicVol(FLOAT &value)=0
Sets the volume of the selected mic.
virtual SDKError SetRingSpkDevice(const zchar_t *spk_id)=0
virtual SDKError EnableAutoJoinAudio(bool bEnable)=0
Enables or disables automatically joining audio when joining the meeting.
virtual bool IsEchoCancellationDisabled()=0
Determines whether echo cancellation is disabled.
virtual SDKError SetRingSpkVolume(FLOAT fValue)=0
virtual SDKError SetAudioDeviceEvent(IAudioSettingContextEvent *pEvent)=0
Sets the audio device monitor callback event.
virtual SDKError GetRingSpkVolume(FLOAT &fValue)=0
virtual SDKError SelectMic(const zchar_t *deviceId, const zchar_t *deviceName)=0
Selects a mic device.
virtual bool IsAutoJoinAudioEnabled()=0
Determines whether automatically joining audio when joining the meeting is enabled.
virtual SDKError EnableAutoAdjustMic(bool bEnable)=0
Enables or disables auto-adjusting mic volume.
virtual SDKError GetSpeakerVol(FLOAT &value)=0
Gets the volume of the selected speaker.
virtual SDKError EnableAlwaysMuteMicWhenJoinVoip(bool bEnable)=0
Enables or disables always muting the mic when joining the meeting by VoIP.
virtual SDKError SetAudioSignalProcessType(SDK_AUDIO_DEVICE_RAW_MODE_TYPE type)=0
Sets the audio device raw mode type.
virtual SDK_ECHO_CANCELLATION_LEVEL GetEchoCancellationLevel()=0
Gets the echo cancellation level.
virtual SDKError SetSuppressBackgroundNoiseLevel(Suppress_Background_Noise_Level level)=0
Sets the suppress background noise level.
virtual SDKError SelectSpeaker(const zchar_t *deviceId, const zchar_t *deviceName)=0
Selects a speaker device.
virtual SDKError GetMicVol(FLOAT &value)=0
Gets the volume of the selected mic.
virtual SDKError EnableMicOriginalInput(bool bEnable)=0
Enables or disables the original input of mic.
virtual IList< ISpeakerInfo * > * GetSpeakerList()=0
Gets the speaker device list.
Camera device information interface.
virtual const zchar_t * GetDeviceName()=0
Gets the camera device name.
virtual const zchar_t * GetDeviceId()=0
Gets the camera device ID.
virtual bool IsSelectedDevice()=0
Determines whether the current device is selected.
General setting interface.
virtual SDKError EnableAutoCopyInviteLink(bool bEnable)=0
Enables or disables automatically copying the invite URL when the meeting starts.
virtual bool IsMuteWhenLockScreenEnabled()=0
Determines whether stopping the user's video and audio when the user's display is off or screen saver...
virtual bool IsAutoCopyInviteLinkEnabled()=0
Determines whether automatically copying the invite URL when the meeting starts is enabled.
virtual SDKError EnableMuteWhenLockScreen(bool bEnable)=0
Enables or disables stopping the user's video and audio when the user's display is off or screen save...
Microphone device information interface.
virtual const zchar_t * GetDeviceName()=0
Gets the microphone device name.
virtual bool IsSelectedDevice()=0
Determines whether the current device is selected.
virtual const zchar_t * GetDeviceId()=0
Gets the microphone device ID.
Recording setting context callback event.
virtual void onCloudRecordingStorageInfo(INT64 storage_total_size, INT64 storage_used_size, bool allow_exceed_storage)=0
Callback event when the current cloud recording storage information is updated.
Recording setting interface.
virtual bool CanGetCloudRecordingStorageInfo()=0
Checks if the user has the privilege to get the storage information for cloud recording.
virtual SDKError EnableShowVideoThumbnailWhenShare(bool bEnable)=0
Enable/Disable showing the video thumbnail when sharing.
virtual bool IsAddTimestampWatermarkEnabled()=0
Determines if the watermark of timestamps is enabled.
virtual SDKError EnableAddTimestampWatermark(bool bEnable)=0
Enable/Disable watermark of timestamp.
virtual bool IsPlaceVideoNextToShareInRecordEnabled()=0
Determines if placing video next to the shared content in recording file is enabled.
virtual const zchar_t * GetRecordingManagementURL()=0
Gets the recording management URL. It returns the real url only after you retrieve the callback IReco...
virtual const zchar_t * GetRecordingPath()=0
Gets the path to save the recording file.
virtual SDKError GetCloudRecordingStorageInfo()=0
Gets the storage information of cloud recording.
virtual SDKError EnablePlaceVideoNextToShareInRecord(bool bEnable)=0
Enable/Disable placing the video layout next to the shared content in recording file.
virtual bool IsShowVideoThumbnailWhenShareEnabled()=0
Determines if video thumbnail is enabled when sharing.
virtual bool IsMultiAudioStreamRecordEnabled()=0
Determines if multi-audio stream recording is enabled.
virtual bool IsOptimizeFor3rdPartyVideoEditorEnabled()=0
Determines if the third party video editor is enabled.
virtual SDKError EnableMultiAudioStreamRecord(bool bEnable)=0
Enable/Disable multi-audio stream recording.
virtual SDKError CanGetRecordingManagementURL(bool &bEnable)=0
Sets if it is able to get recording management URL.
virtual SDKError SetRecordingPath(const zchar_t *szPath)=0
Sets the path to save the recording file.
virtual SDKError EnableOptimizeFor3rdPartyVideoEditor(bool bEnable)=0
Enable/Disable the optimization for the third party video editor.
virtual SDKError SetRecordingSettingEvent(IRecordingSettingContextEvent *pEvent)=0
Sets the event of recording settings.
Ring speaker device information interface.
virtual bool IsSelectedDevice()=0
Determines whether the current device is selected.
virtual const zchar_t * GetDeviceName()=0
Gets the ring speaker device name.
virtual const zchar_t * GetDeviceId()=0
Gets the ring speaker device ID.
Meeting setting interface.
virtual IStatisticSettingContext * GetStatisticSettings()=0
Gets statistic settings interface.
virtual IRecordingSettingContext * GetRecordingSettings()=0
Gets recording setting interface.
virtual IShareSettingContext * GetShareSettings()=0
Gets share settings interface.
virtual IGeneralSettingContext * GetGeneralSettings()=0
Gets general setting interface.
virtual IWallpaperSettingContext * GetWallpaperSettings()=0
Gets wallpaper settings interface.
virtual IVideoSettingContext * GetVideoSettings()=0
Gets video setting interface.
virtual IAudioSettingContext * GetAudioSettings()=0
Gets audio setting interface.
Share setting interface.
virtual bool IsCurrentOSSupportAccelerateGPUWhenShare()=0
Determines if the operating system supports the GPU acceleration when user shares.
virtual SDKError SetLimitFPSValueWhenShare(LimitFPSValue value)=0
Sets the limited sharing fps value when the 'limited sharing fps' feature is enabled.
virtual SDKError EnableLimitFPSWhenShare(bool bEnable)=0
Enable/disable the 'limited sharing fps' feature when uses shares.
virtual bool IsShowMyAppWindowWhenShareEnabled()=0
Determines if it is enable to show the userself's app window when shares.
virtual LimitFPSValue GetLimitFPSValueWhenShare()=0
Gets the limited sharing fps value when the 'limited sharing fps' feature is enabled.
virtual bool IsDoNotDisturbInSharingOn()=0
Determines if it is silence system notification when sharing on.
virtual SDKError EnableAccelerateGPUWhenShare(bool bEnable)=0
Enable/Disable the GPU acceleration when user shares.
virtual bool IsGreenBorderEnabledWhenShare()=0
Determines if the green border is enabled when user shares.
virtual bool IsAutoFitToWindowWhenViewSharingEnabled()=0
Determines if it is able to auto-fit the ZOOM window when viewing the shared content.
virtual SDKError EnableGreenBorderWhenShare(bool bEnable)=0
Sets the visibility of the green border when sharing the application.
virtual bool IsShareContentFlashDetectionEnabled()=0
Query whether automatic dimming of video when sharing content flashes is enabled.
virtual SDKError IsVideoSharingHardwareAccelerated(bool &bEnable)=0
Determines if GPU acceleration is enabled when a user shares video.
virtual SDKError EnableDoNotDisturbInSharing(bool bEnable)=0
Enable/Disable to silence system notification when sharing on.
virtual SDKError EnableShowMyAppWindowWhenShare(bool bEnable)=0
Enable/Disable to show the userself's app window when shares.
virtual SDKError EnableHardwareAcceleratedAnnotation(bool bEnable)=0
Enable/Disable the GPU acceleration when a user adds annotations on a shared screen or whiteboard.
virtual SDKError EnableTCPConnectionWhenSharing(bool bEnable)=0
Enables or disable TCP connecting when sharing.
virtual SDKError IsAccelerateGPUWhenShareEnabled(bool &bEnable)=0
Determines if GPU acceleration is enabled when user shares.
virtual SDKError EnableAutoFitToWindowWhenViewSharing(bool bEnable)=0
Enables or disable to auto-fit the ZOOM window when viewing the shared content.
virtual SDKError EnableHardwareAcceleratedVideoSharing(bool bEnable)=0
Enable/Disable the GPU acceleration when user shares video.
virtual SDKError EnableShareContentFlashDetection(bool bEnable)=0
Enable or disable automatic video dimming when sharing flashing content. When enabled,...
virtual SDKError IsAnnotationHardwareAccelerated(bool &bEnable)=0
Determines if GPU acceleration is enabled when user use annotations on a shared screen or whiteboard.
virtual bool IsTCPConnectionWhenSharing()=0
Determines if it is enable use TCP connection when sharing.
virtual bool IsSupportShowMyAppWindowWhenShare()=0
Determines if the feature that showing the userself's app window when shares is supported.
virtual bool IsLimitFPSEnabledWhenShare()=0
Determines if the 'limited sharing fps' feature is enabled when user shares.
Audio speaker device information interface.
virtual const zchar_t * GetDeviceId()=0
Gets the speaker device ID.
virtual bool IsSelectedDevice()=0
Determines whether the current device is selected.
virtual const zchar_t * GetDeviceName()=0
Gets the speaker device name.
Statistic setting interface.
virtual SDKError QueryOverallStatisticInfo(OverallStatisticInfo &info_)=0
Query overall statistic information.
virtual SDKError QueryShareStatisticInfo(ASVSessionStatisticInfo &info_)=0
Query share statistic information.
virtual SDKError QueryAudioStatisticInfo(AudioSessionStatisticInfo &info_)=0
Query audio statistic information.
virtual SDKError QueryVideoStatisticInfo(ASVSessionStatisticInfo &info_)=0
Query video statistic information.
Video setting context callback event.
virtual void onDefaultCamDeviceChanged(const zchar_t *deviceId, const zchar_t *deviceName)=0
Callback event when a camera device is selected.
virtual void onComputerCamDeviceChanged(IList< ICameraInfo * > *pNewCameraList)=0
Callback event when the SDK detects that the computer camera devices have been changed.
Video setting interface.
virtual bool IsLightAdaptionEnabled()=0
Determines whether light adaption of the video is enabled.
virtual SDKError SetVideoAutoFramingRatio(float ratio)=0
Sets the zoom in ratio of auto-framing when auto-framing is enabled.
virtual SDKError GetVideoAutoFramingMode(AutoFramingMode &mode)=0
Gets the current mode of auto-framing.
virtual SDKError SelectCamera(const zchar_t *deviceId)=0
Selects a camera device.
virtual SDKError EnableVideoAutoFraming(AutoFramingMode mode, AutoFramingParameter &param)=0
Enables my video auto-framing.
virtual SDKError EnableAlwaysUseOriginalSizeVideo(bool bEnable)=0
Enables or disables always using original size video.
virtual SDKError SetFaceRecognitionFailStrategy(FaceRecognitionFailStrategy strategy)=0
Sets the fail strategy of face recognition when auto-framing is enabled (mode is AutoFramingMode_face...
virtual VIDEO_LIGHT_ADAPTION_TYPE GetLightAdaptionType()=0
Gets the light adaption type of the video.
virtual bool IsOptimizeVideoQualityEnabled()=0
Determines whether optimizing received video quality is enabled.
virtual unsigned int GetFaceBeautyStrengthValue()=0
Gets the video facial beauty strength value.
virtual bool IsVideoAutoFramingEnabled()=0
Determines whether auto-framing is enabled.
virtual bool IsOptimizeVideoQualitySupported()=0
Determines whether optimizing received video quality is supported.
virtual SDKError EnableHDVideo(bool bEnable)=0
Enables or disables HD video.
virtual IList< ICameraInfo * > * GetCameraList()=0
Gets the camera device list.
virtual bool IsAlwaysUseOriginalSizeVideo()=0
Determines whether always using original size video is enabled.
virtual SDKError SetVideoDeviceEvent(IVideoSettingContextEvent *pEvent)=0
Sets the video device monitor callback event.
virtual SDKError EnableAlwaysShowNameOnVideo(bool bEnable)=0
Enables or disables showing the username on the video.
virtual bool IsAutoTurnOffVideoWhenJoinMeetingEnabled()=0
Determines whether turning off the video when joining the meeting is enabled.
virtual SDKError EnableFaceBeautyEffect(bool bEnable)=0
Enables or disables the video facial beauty effect.
virtual SDKError DisableVideoAutoFraming()=0
Stops video auto-framing.
virtual SDKError SetVideoAutoFramingMode(AutoFramingMode mode)=0
Sets the mode of auto-framing when auto-framing is enabled.
virtual double GetLightAdaptionManualValue()=0
Gets the manual setting value for light adaption of the video.
virtual bool IsAlwaysShowNameOnVideoEnabled()=0
Determines whether showing the username on video is enabled.
virtual SDKError EnableLightAdaption(bool bEnable, VIDEO_LIGHT_ADAPTION_TYPE lightAdaptionType, double manualValue)=0
Enables or disables light adaption of the video.
virtual SDKError SetFaceBeautyStrengthValue(unsigned int beautyStrengthValue)=0
Sets the video facial beauty strength value.
virtual SDKError GetVideoAutoFramingSetting(AutoFramingMode mode, AutoFramingParameter &param)=0
Gets the setting of auto-framing.
virtual SDKError EnableOptimizeVideoQuality(bool bEnable)=0
Enables or disables optimizing received video quality when facing network issues for a variety of rea...
virtual bool IsFaceBeautyEffectEnabled()=0
Determines whether the video facial beauty effect is enabled.
virtual bool IsHDVideoEnabled()=0
Determines whether HD video is enabled.
virtual SDKError EnableTemporalDeNoise(bool bEnable)=0
Enables or disables video de-noise.
virtual bool IsTemporalDeNoiseEnabled()=0
Determines whether video de-noise is enabled.
virtual SDKError EnableAutoTurnOffVideoWhenJoinMeeting(bool bEnable)=0
Enables or disables turning off the video when joining the meeting.
Wall-paper item interface.
virtual void SetTransparency(int transparency)=0
Sets the transparency of the wall-paper.
virtual const zchar_t * GetThumbnailPath()=0
Gets the wall-paper thumbnail path.
virtual int GetTransparency()=0
Gets the transparency of the wall-paper.
virtual void SetWallpaperLayoutMode(ZoomSDKWallpaperLayoutMode mode)=0
Sets the layout mode of the wall-paper.
virtual const zchar_t * GetWallpaperID()=0
Gets the wall-paper ID.
virtual const zchar_t * GetTitle()=0
Gets the wall-paper title.
virtual ZoomSDKWallpaperLayoutMode GetWallpaperLayoutMode()=0
Gets the layout mode of the wall-paper.
virtual const zchar_t * GetPath()=0
Gets the full image path of the wall-paper.
Meeting wall-paper context Callback Event.
virtual void onMeetingWallpaperChanged(IWallpaperItem *item)=0
Callback event of notification that the meeting wall-paper item is changed.
virtual void onMeetingWallpaperImageDownloadStatus(ZoomSDKWallpaperSettingStatus status, const zchar_t *wallpaperId)=0
Callback event of notification that download status of the meeting wall-paper is changed.
Meeting Wall-paper setting interface.
virtual IWallpaperItem * GetMeetingWallpaperItemByID(const zchar_t *wallpaperID)=0
Gets the meeting wall-paper item by wall-paper ID.
virtual bool IsMeetingWallpaperEnabled()=0
Determines if the meeting wall-paper feature enabled by OP.
virtual bool IsMeetingWallpaperThumbsReady()=0
Determines if meeting wall-paper thumbnail ready.
virtual IList< IWallpaperItem * > * GetMeetingWallpaperList()=0
Gets the meeting wall-paper list.
virtual SDKError SetEvent(IWallpaperSettingContextEvent *pEvent)=0
Meeting wall-paper callback handler.
virtual SDKError SetMeetingWallpaper(IWallpaperItem *item)=0
Sets the meeting wall-paper item.
virtual IWallpaperItem * GetCurrentMeetingWallpaperItem()=0
Gets the meeting wall-paper item.
VIDEO_LIGHT_ADAPTION_TYPE
Enumeration of light adaption types.
Suppress_Background_Noise_Level
Enumeration of background noise suppression levels. For more information, please visit https://suppor...
@ Suppress_BGNoise_Level_Low
@ Suppress_BGNoise_Level_None
@ Suppress_BGNoise_Level_Medium
@ Suppress_BGNoise_Level_High
@ Suppress_BGNoise_Level_Auto
SettingConnectionType
Enumeration of the connection type.
@ SETTINGS_CONNECTION_TYPE_UNKNOWN
@ SETTINGS_CONNECTION_TYPE_CLOUD
@ SETTINGS_CONNECTION_TYPE_DIRECT
struct tagOverallStatisticInfo OverallStatisticInfo
Overall statistic information.
@ ZoomSDKWallpaperSettingStatus_DownloadFail
@ ZoomSDKWallpaperSettingStatus_Downloading
@ ZoomSDKWallpaperSettingStatus_Downloaded
@ ZoomSDKWallpaperSettingStatus_None
struct tagAudioSessionStatisticInfo AudioSessionStatisticInfo
The audio status information.
SDK_AUDIO_DEVICE_RAW_MODE_TYPE
Enumeration of signal processing by Windows audio device drivers. For more information,...
@ SDK_AUDIO_DEVICE_RAW_MODE_OFF
@ SDK_AUDIO_DEVICE_RAW_MODE_DEFAULT
@ SDK_AUDIO_DEVICE_RAW_MODE_ON
SettingsNetWorkType
Enumeration of the network type.
LimitFPSValue
Enumeration of FPS limit values.
SDK_ECHO_CANCELLATION_LEVEL
Enumeration of echo cancellation levels. For more information, please visit https://support....
@ SDK_ECHO_CANCELLATION_DEFAULT
@ SDK_ECHO_CANCELLATION_HIGH
@ SDK_ECHO_CANCELLATION_LOW
AutoFramingMode
Enumeration of auto framing modes in video.
@ AutoFramingMode_center_coordinates
@ AutoFramingMode_face_recognition
FaceRecognitionFailStrategy
Enumeration of the face recognition failure strategies.
@ FaceRecognitionFailStrategy_using_original_video
@ FaceRecognitionFailStrategy_none
@ FaceRecognitionFailStrategy_remain
@ FaceRecognitionFailStrategy_using_center_coordinates
@ ZoomSDKWallpaperLayoutMode_Fill
@ ZoomSDKWallpaperLayoutMode_None
@ ZoomSDKWallpaperLayoutMode_Fit
struct tagASVSessionStatisticInfo ASVSessionStatisticInfo
The video status information.
Auto framing parameters.
FaceRecognitionFailStrategy fail_Strategy
SettingConnectionType connection_type_
ZOOM windows SDK Common Definition File.
int64_t INT64
void * HWND
#define END_ZOOM_SDK_NAMESPACE
float FLOAT
#define BEGIN_ZOOM_SDK_NAMESPACE
char zchar_t
SDKError
Enumeration of common errors of SDK.
SDK utility definition of ZOOM windows.