2017-10-05 16:55:38 +02:00
|
|
|
/*
|
2018-03-07 10:32:03 +01:00
|
|
|
* Copyright 2018 The WebRTC project authors. All Rights Reserved.
|
2017-10-05 16:55:38 +02:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#ifndef SDK_OBJC_NATIVE_API_AUDIO_DEVICE_MODULE_H_
|
|
|
|
|
#define SDK_OBJC_NATIVE_API_AUDIO_DEVICE_MODULE_H_
|
2018-03-07 10:32:03 +01:00
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#include <memory>
|
2017-10-05 16:55:38 +02:00
|
|
|
|
2024-04-19 19:46:03 +00:00
|
|
|
#include "api/audio/audio_device.h"
|
2017-10-05 16:55:38 +02:00
|
|
|
|
2018-03-07 10:32:03 +01:00
|
|
|
namespace webrtc {
|
2017-10-05 16:55:38 +02:00
|
|
|
|
2021-07-27 12:23:39 +02:00
|
|
|
// If `bypass_voice_processing` is true, WebRTC will attempt to disable hardware
|
2020-11-26 12:18:11 +01:00
|
|
|
// audio processing on iOS.
|
2021-07-27 12:23:39 +02:00
|
|
|
// Warning: Setting `bypass_voice_processing` will have unpredictable
|
2020-11-26 12:18:11 +01:00
|
|
|
// consequences for the audio path in the device. It is not advisable to use in
|
|
|
|
|
// most scenarios.
|
|
|
|
|
rtc::scoped_refptr<AudioDeviceModule> CreateAudioDeviceModule(
|
|
|
|
|
bool bypass_voice_processing = false);
|
2017-10-05 16:55:38 +02:00
|
|
|
|
2024-07-18 23:14:45 +02:00
|
|
|
// If `muted_speech_event_handler` is exist, audio unit will catch speech
|
|
|
|
|
// activity while muted.
|
|
|
|
|
rtc::scoped_refptr<AudioDeviceModule> CreateMutedDetectAudioDeviceModule(
|
|
|
|
|
AudioDeviceModule::MutedSpeechEventHandler muted_speech_event_handler,
|
|
|
|
|
bool bypass_voice_processing = false);
|
|
|
|
|
|
2018-03-07 10:32:03 +01:00
|
|
|
} // namespace webrtc
|
2017-10-05 16:55:38 +02:00
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#endif // SDK_OBJC_NATIVE_API_AUDIO_DEVICE_MODULE_H_
|