From be56723cce4cd60ddc144ebe6ac20607675b3006 Mon Sep 17 00:00:00 2001 From: chenqiyang <1406175257@qq.com> Date: 星期三, 17 七月 2024 09:33:38 +0800 Subject: [PATCH] 更新sdk --- 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