blob: e3201ea79b5bd90c175ecca74be3d9d790df8b42 [file] [log] [blame]
aleloidd310712016-11-17 06:28:59 -08001/*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "audio/audio_transport_proxy.h"
aleloidd310712016-11-17 06:28:59 -080012
13namespace webrtc {
14
aleloi04c07222016-11-22 06:42:53 -080015namespace {
16// Resample audio in |frame| to given sample rate preserving the
17// channel count and place the result in |destination|.
18int Resample(const AudioFrame& frame,
19 const int destination_sample_rate,
20 PushResampler<int16_t>* resampler,
21 int16_t* destination) {
22 const int number_of_channels = static_cast<int>(frame.num_channels_);
23 const int target_number_of_samples_per_channel =
24 destination_sample_rate / 100;
25 resampler->InitializeIfNeeded(frame.sample_rate_hz_, destination_sample_rate,
26 number_of_channels);
27
yujo36b1a5f2017-06-12 12:45:32 -070028 // TODO(yujo): make resampler take an AudioFrame, and add special case
29 // handling of muted frames.
aleloi04c07222016-11-22 06:42:53 -080030 return resampler->Resample(
yujo36b1a5f2017-06-12 12:45:32 -070031 frame.data(), frame.samples_per_channel_ * number_of_channels,
32 destination, number_of_channels * target_number_of_samples_per_channel);
aleloi04c07222016-11-22 06:42:53 -080033}
34} // namespace
35
aleloidd310712016-11-17 06:28:59 -080036AudioTransportProxy::AudioTransportProxy(AudioTransport* voe_audio_transport,
peaha9cc40b2017-06-29 08:32:09 -070037 AudioProcessing* audio_processing,
aleloidd310712016-11-17 06:28:59 -080038 AudioMixer* mixer)
peaha9cc40b2017-06-29 08:32:09 -070039 : voe_audio_transport_(voe_audio_transport),
40 audio_processing_(audio_processing),
41 mixer_(mixer) {
aleloidd310712016-11-17 06:28:59 -080042 RTC_DCHECK(voe_audio_transport);
peaha9cc40b2017-06-29 08:32:09 -070043 RTC_DCHECK(audio_processing);
aleloi04c07222016-11-22 06:42:53 -080044 RTC_DCHECK(mixer);
aleloidd310712016-11-17 06:28:59 -080045}
46
47AudioTransportProxy::~AudioTransportProxy() {}
48
49int32_t AudioTransportProxy::RecordedDataIsAvailable(
50 const void* audioSamples,
51 const size_t nSamples,
52 const size_t nBytesPerSample,
53 const size_t nChannels,
54 const uint32_t samplesPerSec,
55 const uint32_t totalDelayMS,
56 const int32_t clockDrift,
57 const uint32_t currentMicLevel,
58 const bool keyPressed,
oprypin67fdb802017-03-09 06:25:06 -080059 uint32_t& newMicLevel) { // NOLINT: to avoid changing APIs
aleloidd310712016-11-17 06:28:59 -080060 // Pass call through to original audio transport instance.
61 return voe_audio_transport_->RecordedDataIsAvailable(
62 audioSamples, nSamples, nBytesPerSample, nChannels, samplesPerSec,
63 totalDelayMS, clockDrift, currentMicLevel, keyPressed, newMicLevel);
64}
65
66int32_t AudioTransportProxy::NeedMorePlayData(const size_t nSamples,
67 const size_t nBytesPerSample,
68 const size_t nChannels,
69 const uint32_t samplesPerSec,
70 void* audioSamples,
71 size_t& nSamplesOut,
72 int64_t* elapsed_time_ms,
73 int64_t* ntp_time_ms) {
74 RTC_DCHECK_EQ(sizeof(int16_t) * nChannels, nBytesPerSample);
kwibergaf476c72016-11-28 15:21:39 -080075 RTC_DCHECK_GE(nChannels, 1);
76 RTC_DCHECK_LE(nChannels, 2);
aleloidd310712016-11-17 06:28:59 -080077 RTC_DCHECK_GE(
78 samplesPerSec,
79 static_cast<uint32_t>(AudioProcessing::NativeRate::kSampleRate8kHz));
aleloi04c07222016-11-22 06:42:53 -080080
81 // 100 = 1 second / data duration (10 ms).
aleloidd310712016-11-17 06:28:59 -080082 RTC_DCHECK_EQ(nSamples * 100, samplesPerSec);
83 RTC_DCHECK_LE(nBytesPerSample * nSamples * nChannels,
yujo36b1a5f2017-06-12 12:45:32 -070084 AudioFrame::kMaxDataSizeBytes);
aleloidd310712016-11-17 06:28:59 -080085
aleloi04c07222016-11-22 06:42:53 -080086 mixer_->Mix(nChannels, &mixed_frame_);
87 *elapsed_time_ms = mixed_frame_.elapsed_time_ms_;
88 *ntp_time_ms = mixed_frame_.ntp_time_ms_;
89
peaha9cc40b2017-06-29 08:32:09 -070090 const auto error = audio_processing_->ProcessReverseStream(&mixed_frame_);
aleloi04c07222016-11-22 06:42:53 -080091 RTC_DCHECK_EQ(error, AudioProcessing::kNoError);
92
93 nSamplesOut = Resample(mixed_frame_, samplesPerSec, &resampler_,
94 static_cast<int16_t*>(audioSamples));
95 RTC_DCHECK_EQ(nSamplesOut, nChannels * nSamples);
96 return 0;
aleloidd310712016-11-17 06:28:59 -080097}
98
99void AudioTransportProxy::PushCaptureData(int voe_channel,
100 const void* audio_data,
101 int bits_per_sample,
102 int sample_rate,
103 size_t number_of_channels,
104 size_t number_of_frames) {
105 // This is part of deprecated VoE interface operating on specific
106 // VoE channels. It should not be used.
107 RTC_NOTREACHED();
108}
109
110void AudioTransportProxy::PullRenderData(int bits_per_sample,
111 int sample_rate,
112 size_t number_of_channels,
113 size_t number_of_frames,
114 void* audio_data,
115 int64_t* elapsed_time_ms,
116 int64_t* ntp_time_ms) {
kwiberg352444f2016-11-28 15:58:53 -0800117 RTC_DCHECK_EQ(bits_per_sample, 16);
kwibergaf476c72016-11-28 15:21:39 -0800118 RTC_DCHECK_GE(number_of_channels, 1);
119 RTC_DCHECK_LE(number_of_channels, 2);
kwiberg352444f2016-11-28 15:58:53 -0800120 RTC_DCHECK_GE(sample_rate, AudioProcessing::NativeRate::kSampleRate8kHz);
aleloi04c07222016-11-22 06:42:53 -0800121
122 // 100 = 1 second / data duration (10 ms).
kwiberg352444f2016-11-28 15:58:53 -0800123 RTC_DCHECK_EQ(number_of_frames * 100, sample_rate);
aleloi04c07222016-11-22 06:42:53 -0800124
125 // 8 = bits per byte.
aleloidd310712016-11-17 06:28:59 -0800126 RTC_DCHECK_LE(bits_per_sample / 8 * number_of_frames * number_of_channels,
yujo36b1a5f2017-06-12 12:45:32 -0700127 AudioFrame::kMaxDataSizeBytes);
aleloi04c07222016-11-22 06:42:53 -0800128 mixer_->Mix(number_of_channels, &mixed_frame_);
129 *elapsed_time_ms = mixed_frame_.elapsed_time_ms_;
130 *ntp_time_ms = mixed_frame_.ntp_time_ms_;
131
132 const auto output_samples = Resample(mixed_frame_, sample_rate, &resampler_,
133 static_cast<int16_t*>(audio_data));
134 RTC_DCHECK_EQ(output_samples, number_of_channels * number_of_frames);
aleloidd310712016-11-17 06:28:59 -0800135}
136
137} // namespace webrtc