From 2265a8478325a04871aab6a86d49c28d7d65443a Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期一, 29 五月 2023 15:17:01 +0800 Subject: [PATCH] 增加开锁二次确认弹窗 --- Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/mediastreamer2.framework/Headers/msinterfaces.h | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/mediastreamer2.framework/Headers/msinterfaces.h b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/mediastreamer2.framework/Headers/msinterfaces.h index e8d51f8..2c36100 100755 --- a/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/mediastreamer2.framework/Headers/msinterfaces.h +++ b/Shared.IOS.HDLLinphoneSDK/Shared.IOS.HDLLinphoneSDK/Library/mediastreamer2.framework/Headers/msinterfaces.h @@ -296,6 +296,14 @@ MS_FILTER_METHOD(MSFilterAudioCaptureInterface, 0, float) #define MS_AUDIO_CAPTURE_GET_VOLUME_GAIN \ MS_FILTER_METHOD(MSFilterAudioCaptureInterface, 1, float) +/** Set capture device ID */ +#define MS_AUDIO_CAPTURE_SET_INTERNAL_ID \ + MS_FILTER_METHOD(MSFilterAudioCaptureInterface, 2, int) +/** Get capture device ID */ +#define MS_AUDIO_CAPTURE_GET_INTERNAL_ID \ + MS_FILTER_METHOD(MSFilterAudioCaptureInterface, 3, int) +#define MS_AUDIO_CAPTURE_MUTE \ + MS_FILTER_METHOD(MSFilterAudioCaptureInterface, 4, int) #define MS_AUDIO_CAPTURE_FORCE_SPEAKER_STATE \ MS_FILTER_METHOD(MSFilterAudioCaptureInterface, 255, bool_t) @@ -314,6 +322,12 @@ MS_FILTER_METHOD(MSFilterAudioPlaybackInterface, 2, MSAudioRoute) #define MS_AUDIO_PLAYBACK_MUTE \ MS_FILTER_METHOD(MSFilterAudioPlaybackInterface, 3, int) +/** Set playback device ID */ +#define MS_AUDIO_PLAYBACK_SET_INTERNAL_ID \ + MS_FILTER_METHOD(MSFilterAudioPlaybackInterface, 4, int) +/** Get playback device ID */ +#define MS_AUDIO_PLAYBACK_GET_INTERNAL_ID \ + MS_FILTER_METHOD(MSFilterAudioPlaybackInterface, 5, int) /** Interface definitions for audio encoder */ #define MS_AUDIO_ENCODER_SET_PTIME \ -- Gitblit v1.8.0