2016-03-03 11:21:51 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/audio_processing/test/audio_buffer_tools.h"
|
2016-03-03 11:21:51 -08:00
|
|
|
|
2016-03-19 18:01:09 -07:00
|
|
|
#include <string.h>
|
|
|
|
|
|
2016-03-03 11:21:51 -08:00
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
2016-03-19 18:01:09 -07:00
|
|
|
void SetupFrame(const StreamConfig& stream_config,
|
2016-03-03 11:21:51 -08:00
|
|
|
std::vector<float*>* frame,
|
|
|
|
|
std::vector<float>* frame_samples) {
|
|
|
|
|
frame_samples->resize(stream_config.num_channels() *
|
|
|
|
|
stream_config.num_frames());
|
|
|
|
|
frame->resize(stream_config.num_channels());
|
|
|
|
|
for (size_t ch = 0; ch < stream_config.num_channels(); ++ch) {
|
|
|
|
|
(*frame)[ch] = &(*frame_samples)[ch * stream_config.num_frames()];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CopyVectorToAudioBuffer(const StreamConfig& stream_config,
|
2016-03-19 18:01:09 -07:00
|
|
|
rtc::ArrayView<const float> source,
|
2016-03-03 11:21:51 -08:00
|
|
|
AudioBuffer* destination) {
|
|
|
|
|
std::vector<float*> input;
|
|
|
|
|
std::vector<float> input_samples;
|
|
|
|
|
|
|
|
|
|
SetupFrame(stream_config, &input, &input_samples);
|
|
|
|
|
|
2016-03-19 18:01:09 -07:00
|
|
|
RTC_CHECK_EQ(input_samples.size(), source.size());
|
|
|
|
|
memcpy(input_samples.data(), source.data(),
|
|
|
|
|
source.size() * sizeof(source[0]));
|
2016-03-03 11:21:51 -08:00
|
|
|
|
|
|
|
|
destination->CopyFrom(&input[0], stream_config);
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 18:01:09 -07:00
|
|
|
void ExtractVectorFromAudioBuffer(const StreamConfig& stream_config,
|
|
|
|
|
AudioBuffer* source,
|
|
|
|
|
std::vector<float>* destination) {
|
2016-03-03 11:21:51 -08:00
|
|
|
std::vector<float*> output;
|
|
|
|
|
|
2016-03-19 18:01:09 -07:00
|
|
|
SetupFrame(stream_config, &output, destination);
|
2016-03-03 11:21:51 -08:00
|
|
|
|
|
|
|
|
source->CopyTo(stream_config, &output[0]);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-15 16:31:04 +00:00
|
|
|
void FillBuffer(float value, AudioBuffer& audio_buffer) {
|
|
|
|
|
for (size_t ch = 0; ch < audio_buffer.num_channels(); ++ch) {
|
|
|
|
|
FillBufferChannel(value, ch, audio_buffer);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FillBufferChannel(float value, int channel, AudioBuffer& audio_buffer) {
|
|
|
|
|
RTC_CHECK_LT(channel, audio_buffer.num_channels());
|
|
|
|
|
for (size_t i = 0; i < audio_buffer.num_frames(); ++i) {
|
|
|
|
|
audio_buffer.channels()[channel][i] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-03 11:21:51 -08:00
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|