mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00

Bug: webrtc:15874 Change-Id: I5bdb19d5e710838b41e6ca283d406c9f1f21286b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/348060 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Henrik Andreassson <henrika@webrtc.org> Commit-Queue: Florent Castelli <orphis@webrtc.org> Cr-Commit-Position: refs/heads/main@{#42137}
82 lines
2.5 KiB
C++
82 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "media/engine/adm_helpers.h"
|
|
|
|
#include "api/audio/audio_device.h"
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/logging.h"
|
|
|
|
namespace webrtc {
|
|
namespace adm_helpers {
|
|
|
|
// On Windows Vista and newer, Microsoft introduced the concept of "Default
|
|
// Communications Device". This means that there are two types of default
|
|
// devices (old Wave Audio style default and Default Communications Device).
|
|
//
|
|
// On Windows systems which only support Wave Audio style default, uses either
|
|
// -1 or 0 to select the default device.
|
|
//
|
|
// Using a #define for AUDIO_DEVICE since we will call *different* versions of
|
|
// the ADM functions, depending on the ID type.
|
|
#if defined(WEBRTC_WIN)
|
|
#define AUDIO_DEVICE_ID \
|
|
(AudioDeviceModule::WindowsDeviceType::kDefaultCommunicationDevice)
|
|
#else
|
|
#define AUDIO_DEVICE_ID (0u)
|
|
#endif // defined(WEBRTC_WIN)
|
|
|
|
void Init(AudioDeviceModule* adm) {
|
|
RTC_DCHECK(adm);
|
|
|
|
RTC_CHECK_EQ(0, adm->Init()) << "Failed to initialize the ADM.";
|
|
|
|
// Playout device.
|
|
{
|
|
if (adm->SetPlayoutDevice(AUDIO_DEVICE_ID) != 0) {
|
|
RTC_LOG(LS_ERROR) << "Unable to set playout device.";
|
|
return;
|
|
}
|
|
if (adm->InitSpeaker() != 0) {
|
|
RTC_LOG(LS_ERROR) << "Unable to access speaker.";
|
|
}
|
|
|
|
// Set number of channels
|
|
bool available = false;
|
|
if (adm->StereoPlayoutIsAvailable(&available) != 0) {
|
|
RTC_LOG(LS_ERROR) << "Failed to query stereo playout.";
|
|
}
|
|
if (adm->SetStereoPlayout(available) != 0) {
|
|
RTC_LOG(LS_ERROR) << "Failed to set stereo playout mode.";
|
|
}
|
|
}
|
|
|
|
// Recording device.
|
|
{
|
|
if (adm->SetRecordingDevice(AUDIO_DEVICE_ID) != 0) {
|
|
RTC_LOG(LS_ERROR) << "Unable to set recording device.";
|
|
return;
|
|
}
|
|
if (adm->InitMicrophone() != 0) {
|
|
RTC_LOG(LS_ERROR) << "Unable to access microphone.";
|
|
}
|
|
|
|
// Set number of channels
|
|
bool available = false;
|
|
if (adm->StereoRecordingIsAvailable(&available) != 0) {
|
|
RTC_LOG(LS_ERROR) << "Failed to query stereo recording.";
|
|
}
|
|
if (adm->SetStereoRecording(available) != 0) {
|
|
RTC_LOG(LS_ERROR) << "Failed to set stereo recording mode.";
|
|
}
|
|
}
|
|
}
|
|
} // namespace adm_helpers
|
|
} // namespace webrtc
|