mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

This CL adds the following options: pass an input AEC dump as a string (currently, the tool can only accept a path to an AEC dump file) write the processed capture samples to a given vector Bug: webrtc:10808 Change-Id: I02863c97ec3cd8c03ade2ea8521836f2e7417050 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/145208 Commit-Queue: Sonia-Florina Horchidan <soniahorchidan@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Per Åhgren <peah@webrtc.org> Reviewed-by: Alessio Bazzica <alessiob@webrtc.org> Reviewed-by: Ivo Creusen <ivoc@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28826}
169 lines
5 KiB
C++
169 lines
5 KiB
C++
/*
|
|
* Copyright (c) 2014 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.
|
|
*/
|
|
|
|
#ifndef MODULES_AUDIO_PROCESSING_TEST_TEST_UTILS_H_
|
|
#define MODULES_AUDIO_PROCESSING_TEST_TEST_UTILS_H_
|
|
|
|
#include <math.h>
|
|
|
|
#include <iterator>
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <sstream> // no-presubmit-check TODO(webrtc:8982)
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "api/audio/audio_frame.h"
|
|
#include "common_audio/channel_buffer.h"
|
|
#include "common_audio/wav_file.h"
|
|
#include "modules/audio_processing/include/audio_processing.h"
|
|
#include "rtc_base/constructor_magic.h"
|
|
|
|
namespace webrtc {
|
|
|
|
static const AudioProcessing::Error kNoErr = AudioProcessing::kNoError;
|
|
#define EXPECT_NOERR(expr) EXPECT_EQ(kNoErr, (expr))
|
|
|
|
class RawFile final {
|
|
public:
|
|
explicit RawFile(const std::string& filename);
|
|
~RawFile();
|
|
|
|
void WriteSamples(const int16_t* samples, size_t num_samples);
|
|
void WriteSamples(const float* samples, size_t num_samples);
|
|
|
|
private:
|
|
FILE* file_handle_;
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(RawFile);
|
|
};
|
|
|
|
// Reads ChannelBuffers from a provided WavReader.
|
|
class ChannelBufferWavReader final {
|
|
public:
|
|
explicit ChannelBufferWavReader(std::unique_ptr<WavReader> file);
|
|
~ChannelBufferWavReader();
|
|
|
|
// Reads data from the file according to the |buffer| format. Returns false if
|
|
// a full buffer can't be read from the file.
|
|
bool Read(ChannelBuffer<float>* buffer);
|
|
|
|
private:
|
|
std::unique_ptr<WavReader> file_;
|
|
std::vector<float> interleaved_;
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(ChannelBufferWavReader);
|
|
};
|
|
|
|
// Writes ChannelBuffers to a provided WavWriter.
|
|
class ChannelBufferWavWriter final {
|
|
public:
|
|
explicit ChannelBufferWavWriter(std::unique_ptr<WavWriter> file);
|
|
~ChannelBufferWavWriter();
|
|
|
|
void Write(const ChannelBuffer<float>& buffer);
|
|
|
|
private:
|
|
std::unique_ptr<WavWriter> file_;
|
|
std::vector<float> interleaved_;
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(ChannelBufferWavWriter);
|
|
};
|
|
|
|
// Takes a pointer to a vector. Allows appending the samples of channel buffers
|
|
// to the given vector, by interleaving the samples and converting them to float
|
|
// S16.
|
|
class ChannelBufferVectorWriter final {
|
|
public:
|
|
explicit ChannelBufferVectorWriter(std::vector<float>* output);
|
|
ChannelBufferVectorWriter(const ChannelBufferVectorWriter&) = delete;
|
|
ChannelBufferVectorWriter& operator=(const ChannelBufferVectorWriter&) =
|
|
delete;
|
|
~ChannelBufferVectorWriter();
|
|
|
|
// Creates an interleaved copy of |buffer|, converts the samples to float S16
|
|
// and appends the result to output_.
|
|
void Write(const ChannelBuffer<float>& buffer);
|
|
|
|
private:
|
|
std::vector<float> interleaved_buffer_;
|
|
std::vector<float>* output_;
|
|
};
|
|
|
|
void WriteIntData(const int16_t* data,
|
|
size_t length,
|
|
WavWriter* wav_file,
|
|
RawFile* raw_file);
|
|
|
|
void WriteFloatData(const float* const* data,
|
|
size_t samples_per_channel,
|
|
size_t num_channels,
|
|
WavWriter* wav_file,
|
|
RawFile* raw_file);
|
|
|
|
// Exits on failure; do not use in unit tests.
|
|
FILE* OpenFile(const std::string& filename, const char* mode);
|
|
|
|
size_t SamplesFromRate(int rate);
|
|
|
|
void SetFrameSampleRate(AudioFrame* frame, int sample_rate_hz);
|
|
|
|
template <typename T>
|
|
void SetContainerFormat(int sample_rate_hz,
|
|
size_t num_channels,
|
|
AudioFrame* frame,
|
|
std::unique_ptr<ChannelBuffer<T> >* cb) {
|
|
SetFrameSampleRate(frame, sample_rate_hz);
|
|
frame->num_channels_ = num_channels;
|
|
cb->reset(new ChannelBuffer<T>(frame->samples_per_channel_, num_channels));
|
|
}
|
|
|
|
AudioProcessing::ChannelLayout LayoutFromChannels(size_t num_channels);
|
|
|
|
template <typename T>
|
|
float ComputeSNR(const T* ref, const T* test, size_t length, float* variance) {
|
|
float mse = 0;
|
|
float mean = 0;
|
|
*variance = 0;
|
|
for (size_t i = 0; i < length; ++i) {
|
|
T error = ref[i] - test[i];
|
|
mse += error * error;
|
|
*variance += ref[i] * ref[i];
|
|
mean += ref[i];
|
|
}
|
|
mse /= length;
|
|
*variance /= length;
|
|
mean /= length;
|
|
*variance -= mean * mean;
|
|
|
|
float snr = 100; // We assign 100 dB to the zero-error case.
|
|
if (mse > 0)
|
|
snr = 10 * log10(*variance / mse);
|
|
return snr;
|
|
}
|
|
|
|
// Returns a vector<T> parsed from whitespace delimited values in to_parse,
|
|
// or an empty vector if the string could not be parsed.
|
|
template <typename T>
|
|
std::vector<T> ParseList(const std::string& to_parse) {
|
|
std::vector<T> values;
|
|
|
|
std::istringstream str(to_parse);
|
|
std::copy(
|
|
std::istream_iterator<T>(str), // no-presubmit-check TODO(webrtc:8982)
|
|
std::istream_iterator<T>(), // no-presubmit-check TODO(webrtc:8982)
|
|
std::back_inserter(values));
|
|
|
|
return values;
|
|
}
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_AUDIO_PROCESSING_TEST_TEST_UTILS_H_
|