niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
andrew@webrtc.org | 63a5098 | 2012-05-02 23:56:37 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 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 | |
pbos@webrtc.org | 7fad4b8 | 2013-05-28 08:11:59 +0000 | [diff] [blame] | 11 | #include "webrtc/modules/audio_processing/audio_buffer.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 12 | |
andrew@webrtc.org | 17e4064 | 2014-03-04 20:58:13 +0000 | [diff] [blame] | 13 | #include "webrtc/common_audio/include/audio_util.h" |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 14 | #include "webrtc/common_audio/resampler/push_sinc_resampler.h" |
pbos@webrtc.org | 7fad4b8 | 2013-05-28 08:11:59 +0000 | [diff] [blame] | 15 | #include "webrtc/common_audio/signal_processing/include/signal_processing_library.h" |
andrew@webrtc.org | 755b04a | 2011-11-15 16:57:56 +0000 | [diff] [blame] | 16 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 17 | namespace webrtc { |
| 18 | namespace { |
| 19 | |
| 20 | enum { |
| 21 | kSamplesPer8kHzChannel = 80, |
| 22 | kSamplesPer16kHzChannel = 160, |
| 23 | kSamplesPer32kHzChannel = 320 |
| 24 | }; |
| 25 | |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 26 | bool HasKeyboardChannel(AudioProcessing::ChannelLayout layout) { |
| 27 | switch (layout) { |
| 28 | case AudioProcessing::kMono: |
| 29 | case AudioProcessing::kStereo: |
| 30 | return false; |
| 31 | case AudioProcessing::kMonoAndKeyboard: |
| 32 | case AudioProcessing::kStereoAndKeyboard: |
| 33 | return true; |
| 34 | } |
| 35 | assert(false); |
| 36 | return false; |
| 37 | } |
| 38 | |
| 39 | int KeyboardChannelIndex(AudioProcessing::ChannelLayout layout) { |
| 40 | switch (layout) { |
| 41 | case AudioProcessing::kMono: |
| 42 | case AudioProcessing::kStereo: |
| 43 | assert(false); |
| 44 | return -1; |
| 45 | case AudioProcessing::kMonoAndKeyboard: |
| 46 | return 1; |
| 47 | case AudioProcessing::kStereoAndKeyboard: |
| 48 | return 2; |
| 49 | } |
| 50 | assert(false); |
| 51 | return -1; |
| 52 | } |
| 53 | |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 54 | void StereoToMono(const float* left, const float* right, float* out, |
| 55 | int samples_per_channel) { |
| 56 | for (int i = 0; i < samples_per_channel; ++i) { |
| 57 | out[i] = (left[i] + right[i]) / 2; |
| 58 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 59 | } |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 60 | |
| 61 | void StereoToMono(const int16_t* left, const int16_t* right, int16_t* out, |
| 62 | int samples_per_channel) { |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 63 | for (int i = 0; i < samples_per_channel; ++i) { |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 64 | out[i] = (left[i] + right[i]) >> 1; |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 65 | } |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 66 | } |
| 67 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 68 | } // namespace |
| 69 | |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 70 | // One int16_t and one float ChannelBuffer that are kept in sync. The sync is |
| 71 | // broken when someone requests write access to either ChannelBuffer, and |
| 72 | // reestablished when someone requests the outdated ChannelBuffer. It is |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 73 | // therefore safe to use the return value of ibuf_const() and fbuf_const() |
| 74 | // until the next call to ibuf() or fbuf(), and the return value of ibuf() and |
| 75 | // fbuf() until the next call to any of the other functions. |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 76 | class IFChannelBuffer { |
| 77 | public: |
| 78 | IFChannelBuffer(int samples_per_channel, int num_channels) |
| 79 | : ivalid_(true), |
| 80 | ibuf_(samples_per_channel, num_channels), |
| 81 | fvalid_(true), |
| 82 | fbuf_(samples_per_channel, num_channels) {} |
| 83 | |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 84 | ChannelBuffer<int16_t>* ibuf() { return ibuf(false); } |
| 85 | ChannelBuffer<float>* fbuf() { return fbuf(false); } |
| 86 | const ChannelBuffer<int16_t>* ibuf_const() { return ibuf(true); } |
| 87 | const ChannelBuffer<float>* fbuf_const() { return fbuf(true); } |
| 88 | |
| 89 | private: |
| 90 | ChannelBuffer<int16_t>* ibuf(bool readonly) { |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 91 | RefreshI(); |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 92 | fvalid_ = readonly; |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 93 | return &ibuf_; |
| 94 | } |
| 95 | |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 96 | ChannelBuffer<float>* fbuf(bool readonly) { |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 97 | RefreshF(); |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 98 | ivalid_ = readonly; |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 99 | return &fbuf_; |
| 100 | } |
| 101 | |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 102 | void RefreshF() { |
| 103 | if (!fvalid_) { |
| 104 | assert(ivalid_); |
| 105 | const int16_t* const int_data = ibuf_.data(); |
| 106 | float* const float_data = fbuf_.data(); |
| 107 | const int length = fbuf_.length(); |
| 108 | for (int i = 0; i < length; ++i) |
| 109 | float_data[i] = int_data[i]; |
| 110 | fvalid_ = true; |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | void RefreshI() { |
| 115 | if (!ivalid_) { |
| 116 | assert(fvalid_); |
| 117 | const float* const float_data = fbuf_.data(); |
| 118 | int16_t* const int_data = ibuf_.data(); |
| 119 | const int length = ibuf_.length(); |
| 120 | for (int i = 0; i < length; ++i) |
| 121 | int_data[i] = WEBRTC_SPL_SAT(std::numeric_limits<int16_t>::max(), |
| 122 | float_data[i], |
| 123 | std::numeric_limits<int16_t>::min()); |
| 124 | ivalid_ = true; |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | bool ivalid_; |
| 129 | ChannelBuffer<int16_t> ibuf_; |
| 130 | bool fvalid_; |
| 131 | ChannelBuffer<float> fbuf_; |
| 132 | }; |
| 133 | |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 134 | AudioBuffer::AudioBuffer(int input_samples_per_channel, |
| 135 | int num_input_channels, |
| 136 | int process_samples_per_channel, |
| 137 | int num_process_channels, |
| 138 | int output_samples_per_channel) |
| 139 | : input_samples_per_channel_(input_samples_per_channel), |
| 140 | num_input_channels_(num_input_channels), |
| 141 | proc_samples_per_channel_(process_samples_per_channel), |
| 142 | num_proc_channels_(num_process_channels), |
| 143 | output_samples_per_channel_(output_samples_per_channel), |
| 144 | samples_per_split_channel_(proc_samples_per_channel_), |
aluebs@webrtc.org | 2561d52 | 2014-07-17 08:27:39 +0000 | [diff] [blame] | 145 | mixed_low_pass_valid_(false), |
andrew@webrtc.org | ed083d4 | 2011-09-19 15:28:51 +0000 | [diff] [blame] | 146 | reference_copied_(false), |
| 147 | activity_(AudioFrame::kVadUnknown), |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 148 | keyboard_data_(NULL), |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 149 | channels_(new IFChannelBuffer(proc_samples_per_channel_, |
| 150 | num_proc_channels_)) { |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 151 | assert(input_samples_per_channel_ > 0); |
| 152 | assert(proc_samples_per_channel_ > 0); |
| 153 | assert(output_samples_per_channel_ > 0); |
| 154 | assert(num_input_channels_ > 0 && num_input_channels_ <= 2); |
| 155 | assert(num_proc_channels_ <= num_input_channels); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 156 | |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 157 | if (num_input_channels_ == 2 && num_proc_channels_ == 1) { |
| 158 | input_buffer_.reset(new ChannelBuffer<float>(input_samples_per_channel_, |
| 159 | num_proc_channels_)); |
| 160 | } |
| 161 | |
| 162 | if (input_samples_per_channel_ != proc_samples_per_channel_ || |
| 163 | output_samples_per_channel_ != proc_samples_per_channel_) { |
| 164 | // Create an intermediate buffer for resampling. |
| 165 | process_buffer_.reset(new ChannelBuffer<float>(proc_samples_per_channel_, |
| 166 | num_proc_channels_)); |
| 167 | } |
| 168 | |
| 169 | if (input_samples_per_channel_ != proc_samples_per_channel_) { |
| 170 | input_resamplers_.reserve(num_proc_channels_); |
| 171 | for (int i = 0; i < num_proc_channels_; ++i) { |
| 172 | input_resamplers_.push_back( |
| 173 | new PushSincResampler(input_samples_per_channel_, |
| 174 | proc_samples_per_channel_)); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | if (output_samples_per_channel_ != proc_samples_per_channel_) { |
| 179 | output_resamplers_.reserve(num_proc_channels_); |
| 180 | for (int i = 0; i < num_proc_channels_; ++i) { |
| 181 | output_resamplers_.push_back( |
| 182 | new PushSincResampler(proc_samples_per_channel_, |
| 183 | output_samples_per_channel_)); |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | if (proc_samples_per_channel_ == kSamplesPer32kHzChannel) { |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 188 | samples_per_split_channel_ = kSamplesPer16kHzChannel; |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 189 | split_channels_low_.reset(new IFChannelBuffer(samples_per_split_channel_, |
| 190 | num_proc_channels_)); |
| 191 | split_channels_high_.reset(new IFChannelBuffer(samples_per_split_channel_, |
| 192 | num_proc_channels_)); |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 193 | filter_states_.reset(new SplitFilterStates[num_proc_channels_]); |
| 194 | } |
| 195 | } |
| 196 | |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 197 | AudioBuffer::~AudioBuffer() {} |
| 198 | |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 199 | void AudioBuffer::CopyFrom(const float* const* data, |
| 200 | int samples_per_channel, |
| 201 | AudioProcessing::ChannelLayout layout) { |
| 202 | assert(samples_per_channel == input_samples_per_channel_); |
| 203 | assert(ChannelsFromLayout(layout) == num_input_channels_); |
| 204 | InitForNewData(); |
| 205 | |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 206 | if (HasKeyboardChannel(layout)) { |
| 207 | keyboard_data_ = data[KeyboardChannelIndex(layout)]; |
| 208 | } |
| 209 | |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 210 | // Downmix. |
| 211 | const float* const* data_ptr = data; |
| 212 | if (num_input_channels_ == 2 && num_proc_channels_ == 1) { |
| 213 | StereoToMono(data[0], |
| 214 | data[1], |
| 215 | input_buffer_->channel(0), |
| 216 | input_samples_per_channel_); |
| 217 | data_ptr = input_buffer_->channels(); |
| 218 | } |
| 219 | |
| 220 | // Resample. |
| 221 | if (input_samples_per_channel_ != proc_samples_per_channel_) { |
| 222 | for (int i = 0; i < num_proc_channels_; ++i) { |
| 223 | input_resamplers_[i]->Resample(data_ptr[i], |
| 224 | input_samples_per_channel_, |
| 225 | process_buffer_->channel(i), |
| 226 | proc_samples_per_channel_); |
| 227 | } |
| 228 | data_ptr = process_buffer_->channels(); |
| 229 | } |
| 230 | |
| 231 | // Convert to int16. |
| 232 | for (int i = 0; i < num_proc_channels_; ++i) { |
| 233 | ScaleAndRoundToInt16(data_ptr[i], proc_samples_per_channel_, |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 234 | channels_->ibuf()->channel(i)); |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | |
| 238 | void AudioBuffer::CopyTo(int samples_per_channel, |
| 239 | AudioProcessing::ChannelLayout layout, |
| 240 | float* const* data) { |
| 241 | assert(samples_per_channel == output_samples_per_channel_); |
| 242 | assert(ChannelsFromLayout(layout) == num_proc_channels_); |
| 243 | |
| 244 | // Convert to float. |
| 245 | float* const* data_ptr = data; |
| 246 | if (output_samples_per_channel_ != proc_samples_per_channel_) { |
| 247 | // Convert to an intermediate buffer for subsequent resampling. |
| 248 | data_ptr = process_buffer_->channels(); |
| 249 | } |
| 250 | for (int i = 0; i < num_proc_channels_; ++i) { |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 251 | ScaleToFloat(channels_->ibuf()->channel(i), |
| 252 | proc_samples_per_channel_, |
| 253 | data_ptr[i]); |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | // Resample. |
| 257 | if (output_samples_per_channel_ != proc_samples_per_channel_) { |
| 258 | for (int i = 0; i < num_proc_channels_; ++i) { |
| 259 | output_resamplers_[i]->Resample(data_ptr[i], |
| 260 | proc_samples_per_channel_, |
| 261 | data[i], |
| 262 | output_samples_per_channel_); |
| 263 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 264 | } |
| 265 | } |
| 266 | |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 267 | void AudioBuffer::InitForNewData() { |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 268 | keyboard_data_ = NULL; |
aluebs@webrtc.org | 2561d52 | 2014-07-17 08:27:39 +0000 | [diff] [blame] | 269 | mixed_low_pass_valid_ = false; |
andrew@webrtc.org | 17e4064 | 2014-03-04 20:58:13 +0000 | [diff] [blame] | 270 | reference_copied_ = false; |
| 271 | activity_ = AudioFrame::kVadUnknown; |
andrew@webrtc.org | 17e4064 | 2014-03-04 20:58:13 +0000 | [diff] [blame] | 272 | } |
| 273 | |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 274 | const int16_t* AudioBuffer::data(int channel) const { |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 275 | return channels_->ibuf_const()->channel(channel); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 276 | } |
| 277 | |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 278 | int16_t* AudioBuffer::data(int channel) { |
aluebs@webrtc.org | 2561d52 | 2014-07-17 08:27:39 +0000 | [diff] [blame] | 279 | mixed_low_pass_valid_ = false; |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 280 | return channels_->ibuf()->channel(channel); |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 281 | } |
| 282 | |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 283 | const float* AudioBuffer::data_f(int channel) const { |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 284 | return channels_->fbuf_const()->channel(channel); |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 285 | } |
| 286 | |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 287 | float* AudioBuffer::data_f(int channel) { |
aluebs@webrtc.org | 2561d52 | 2014-07-17 08:27:39 +0000 | [diff] [blame] | 288 | mixed_low_pass_valid_ = false; |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 289 | return channels_->fbuf()->channel(channel); |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 290 | } |
| 291 | |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 292 | const int16_t* AudioBuffer::low_pass_split_data(int channel) const { |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 293 | return split_channels_low_.get() |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 294 | ? split_channels_low_->ibuf_const()->channel(channel) |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 295 | : data(channel); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 296 | } |
| 297 | |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 298 | int16_t* AudioBuffer::low_pass_split_data(int channel) { |
aluebs@webrtc.org | 2561d52 | 2014-07-17 08:27:39 +0000 | [diff] [blame] | 299 | mixed_low_pass_valid_ = false; |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 300 | return split_channels_low_.get() |
| 301 | ? split_channels_low_->ibuf()->channel(channel) |
| 302 | : data(channel); |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 303 | } |
| 304 | |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 305 | const float* AudioBuffer::low_pass_split_data_f(int channel) const { |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 306 | return split_channels_low_.get() |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 307 | ? split_channels_low_->fbuf_const()->channel(channel) |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 308 | : data_f(channel); |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 309 | } |
| 310 | |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 311 | float* AudioBuffer::low_pass_split_data_f(int channel) { |
aluebs@webrtc.org | 2561d52 | 2014-07-17 08:27:39 +0000 | [diff] [blame] | 312 | mixed_low_pass_valid_ = false; |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 313 | return split_channels_low_.get() |
| 314 | ? split_channels_low_->fbuf()->channel(channel) |
| 315 | : data_f(channel); |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 316 | } |
| 317 | |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 318 | const int16_t* AudioBuffer::high_pass_split_data(int channel) const { |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 319 | return split_channels_high_.get() |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 320 | ? split_channels_high_->ibuf_const()->channel(channel) |
| 321 | : NULL; |
| 322 | } |
| 323 | |
| 324 | int16_t* AudioBuffer::high_pass_split_data(int channel) { |
| 325 | return split_channels_high_.get() |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 326 | ? split_channels_high_->ibuf()->channel(channel) |
| 327 | : NULL; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 328 | } |
| 329 | |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 330 | const float* AudioBuffer::high_pass_split_data_f(int channel) const { |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 331 | return split_channels_high_.get() |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 332 | ? split_channels_high_->fbuf_const()->channel(channel) |
kwiberg@webrtc.org | 2b6bc8d | 2014-07-17 09:46:37 +0000 | [diff] [blame] | 333 | : NULL; |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 334 | } |
| 335 | |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 336 | float* AudioBuffer::high_pass_split_data_f(int channel) { |
kwiberg@webrtc.org | e364ac9 | 2014-07-18 07:50:29 +0000 | [diff] [blame] | 337 | return split_channels_high_.get() |
| 338 | ? split_channels_high_->fbuf()->channel(channel) |
| 339 | : NULL; |
kwiberg@webrtc.org | 38214d5 | 2014-07-03 09:47:33 +0000 | [diff] [blame] | 340 | } |
| 341 | |
aluebs@webrtc.org | 2561d52 | 2014-07-17 08:27:39 +0000 | [diff] [blame] | 342 | const int16_t* AudioBuffer::mixed_low_pass_data() { |
| 343 | // Currently only mixing stereo to mono is supported. |
| 344 | assert(num_proc_channels_ == 1 || num_proc_channels_ == 2); |
andrew@webrtc.org | 755b04a | 2011-11-15 16:57:56 +0000 | [diff] [blame] | 345 | |
aluebs@webrtc.org | 2561d52 | 2014-07-17 08:27:39 +0000 | [diff] [blame] | 346 | if (num_proc_channels_ == 1) { |
| 347 | return low_pass_split_data(0); |
| 348 | } |
| 349 | |
| 350 | if (!mixed_low_pass_valid_) { |
| 351 | if (!mixed_low_pass_channels_.get()) { |
| 352 | mixed_low_pass_channels_.reset( |
| 353 | new ChannelBuffer<int16_t>(samples_per_split_channel_, 1)); |
| 354 | } |
| 355 | StereoToMono(low_pass_split_data(0), |
| 356 | low_pass_split_data(1), |
| 357 | mixed_low_pass_channels_->data(), |
| 358 | samples_per_split_channel_); |
| 359 | mixed_low_pass_valid_ = true; |
| 360 | } |
| 361 | return mixed_low_pass_channels_->data(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 362 | } |
| 363 | |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 364 | const int16_t* AudioBuffer::low_pass_reference(int channel) const { |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 365 | if (!reference_copied_) { |
| 366 | return NULL; |
| 367 | } |
| 368 | |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 369 | return low_pass_reference_channels_->channel(channel); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 370 | } |
| 371 | |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 372 | const float* AudioBuffer::keyboard_data() const { |
| 373 | return keyboard_data_; |
| 374 | } |
| 375 | |
andrew@webrtc.org | 65f9338 | 2014-04-30 16:44:13 +0000 | [diff] [blame] | 376 | SplitFilterStates* AudioBuffer::filter_states(int channel) { |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 377 | assert(channel >= 0 && channel < num_proc_channels_); |
| 378 | return &filter_states_[channel]; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 379 | } |
| 380 | |
andrew@webrtc.org | ed083d4 | 2011-09-19 15:28:51 +0000 | [diff] [blame] | 381 | void AudioBuffer::set_activity(AudioFrame::VADActivity activity) { |
| 382 | activity_ = activity; |
| 383 | } |
| 384 | |
andrew@webrtc.org | 755b04a | 2011-11-15 16:57:56 +0000 | [diff] [blame] | 385 | AudioFrame::VADActivity AudioBuffer::activity() const { |
andrew@webrtc.org | ed083d4 | 2011-09-19 15:28:51 +0000 | [diff] [blame] | 386 | return activity_; |
| 387 | } |
| 388 | |
| 389 | int AudioBuffer::num_channels() const { |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 390 | return num_proc_channels_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 391 | } |
| 392 | |
andrew@webrtc.org | ed083d4 | 2011-09-19 15:28:51 +0000 | [diff] [blame] | 393 | int AudioBuffer::samples_per_channel() const { |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 394 | return proc_samples_per_channel_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 395 | } |
| 396 | |
andrew@webrtc.org | ed083d4 | 2011-09-19 15:28:51 +0000 | [diff] [blame] | 397 | int AudioBuffer::samples_per_split_channel() const { |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 398 | return samples_per_split_channel_; |
| 399 | } |
| 400 | |
andrew@webrtc.org | 103657b | 2014-04-24 18:28:56 +0000 | [diff] [blame] | 401 | int AudioBuffer::samples_per_keyboard_channel() const { |
| 402 | // We don't resample the keyboard channel. |
| 403 | return input_samples_per_channel_; |
| 404 | } |
| 405 | |
andrew@webrtc.org | ed083d4 | 2011-09-19 15:28:51 +0000 | [diff] [blame] | 406 | // TODO(andrew): Do deinterleaving and mixing in one step? |
| 407 | void AudioBuffer::DeinterleaveFrom(AudioFrame* frame) { |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 408 | assert(proc_samples_per_channel_ == input_samples_per_channel_); |
andrew@webrtc.org | 30be827 | 2014-09-24 20:06:23 +0000 | [diff] [blame] | 409 | assert(frame->num_channels_ == num_input_channels_); |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 410 | assert(frame->samples_per_channel_ == proc_samples_per_channel_); |
| 411 | InitForNewData(); |
andrew@webrtc.org | 63a5098 | 2012-05-02 23:56:37 +0000 | [diff] [blame] | 412 | activity_ = frame->vad_activity_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 413 | |
andrew@webrtc.org | 30be827 | 2014-09-24 20:06:23 +0000 | [diff] [blame] | 414 | if (num_input_channels_ == 2 && num_proc_channels_ == 1) { |
| 415 | // Downmix directly; no explicit deinterleaving needed. |
| 416 | int16_t* downmixed = channels_->ibuf()->channel(0); |
| 417 | for (int i = 0; i < input_samples_per_channel_; ++i) { |
| 418 | // HACK(ajm): The downmixing in the int16_t path is in practice never |
| 419 | // called from production code. We do this weird scaling to and from float |
| 420 | // to satisfy tests checking for bit-exactness with the float path. |
| 421 | float downmix_float = (ScaleToFloat(frame->data_[i * 2]) + |
| 422 | ScaleToFloat(frame->data_[i * 2 + 1])) / 2; |
| 423 | downmixed[i] = ScaleAndRoundToInt16(downmix_float); |
| 424 | } |
| 425 | } else { |
| 426 | assert(num_proc_channels_ == num_input_channels_); |
| 427 | int16_t* interleaved = frame->data_; |
| 428 | for (int i = 0; i < num_proc_channels_; ++i) { |
| 429 | int16_t* deinterleaved = channels_->ibuf()->channel(i); |
| 430 | int interleaved_idx = i; |
| 431 | for (int j = 0; j < proc_samples_per_channel_; ++j) { |
| 432 | deinterleaved[j] = interleaved[interleaved_idx]; |
| 433 | interleaved_idx += num_proc_channels_; |
| 434 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 435 | } |
| 436 | } |
| 437 | } |
| 438 | |
andrew@webrtc.org | 755b04a | 2011-11-15 16:57:56 +0000 | [diff] [blame] | 439 | void AudioBuffer::InterleaveTo(AudioFrame* frame, bool data_changed) const { |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 440 | assert(proc_samples_per_channel_ == output_samples_per_channel_); |
| 441 | assert(num_proc_channels_ == num_input_channels_); |
| 442 | assert(frame->num_channels_ == num_proc_channels_); |
| 443 | assert(frame->samples_per_channel_ == proc_samples_per_channel_); |
andrew@webrtc.org | 63a5098 | 2012-05-02 23:56:37 +0000 | [diff] [blame] | 444 | frame->vad_activity_ = activity_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 445 | |
andrew@webrtc.org | 755b04a | 2011-11-15 16:57:56 +0000 | [diff] [blame] | 446 | if (!data_changed) { |
| 447 | return; |
| 448 | } |
| 449 | |
andrew@webrtc.org | 63a5098 | 2012-05-02 23:56:37 +0000 | [diff] [blame] | 450 | int16_t* interleaved = frame->data_; |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 451 | for (int i = 0; i < num_proc_channels_; i++) { |
mflodman@webrtc.org | d5da250 | 2014-05-15 11:17:21 +0000 | [diff] [blame] | 452 | int16_t* deinterleaved = channels_->ibuf()->channel(i); |
andrew@webrtc.org | ed083d4 | 2011-09-19 15:28:51 +0000 | [diff] [blame] | 453 | int interleaved_idx = i; |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 454 | for (int j = 0; j < proc_samples_per_channel_; j++) { |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 455 | interleaved[interleaved_idx] = deinterleaved[j]; |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 456 | interleaved_idx += num_proc_channels_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 457 | } |
| 458 | } |
| 459 | } |
| 460 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 461 | void AudioBuffer::CopyLowPassToReference() { |
| 462 | reference_copied_ = true; |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 463 | if (!low_pass_reference_channels_.get()) { |
| 464 | low_pass_reference_channels_.reset( |
| 465 | new ChannelBuffer<int16_t>(samples_per_split_channel_, |
| 466 | num_proc_channels_)); |
| 467 | } |
| 468 | for (int i = 0; i < num_proc_channels_; i++) { |
| 469 | low_pass_reference_channels_->CopyFrom(low_pass_split_data(i), i); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 470 | } |
| 471 | } |
andrew@webrtc.org | ddbb8a2 | 2014-04-22 21:00:04 +0000 | [diff] [blame] | 472 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 473 | } // namespace webrtc |