This reverts commit 5341aaccdb64e3336abf5875e8828222446adffa. Reason for revert: Order of initialization of global static strings. Original change's description: > Reland of https://webrtc-review.googlesource.com/c/src/+/114883 > > The difference to the original is new bitexactness strings AND > global static file string constants. The reason for reland is breaking > downstream projects. > > Original CL description: > > Tests for multi-stream Opus. > > This CL (mainly) adds bit-exactness tests for multi-stream Opus. The > tests are in audio_coding_unittest.cc. Some refactoring of > AcmSendTestOldApi, AcmSenderBitExactnessOldApi is done to make it > possible. A few checks for "channels \in {1, 2}" are replaced with > "channels \in {1, 2, 4, 6, 8}" in the WebRTC Opus codec wrapper. A few > other changes are made to be able to write and read multi-channel WAV > files. > > The SDP changes are NOT included; as of this CL there is no way to set > up a multi-stream opus en/de-coder from SDP strings. > > Bug: webrtc:8649 > Change-Id: I9fd47c790c241c1876c4a731b0840bec30b4f1b2 > Reviewed-on: https://webrtc-review.googlesource.com/c/123387 > Reviewed-by: Oskar Sundbom <ossu@webrtc.org> > Commit-Queue: Alex Loiko <aleloi@webrtc.org> > Cr-Commit-Position: refs/heads/master@{#26774} TBR=aleloi@webrtc.org,ossu@webrtc.org Change-Id: I88060f2050ccee83d6091b042a10f79b3c4edc47 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: webrtc:8649 Reviewed-on: https://webrtc-review.googlesource.com/c/123580 Reviewed-by: Alex Loiko <aleloi@webrtc.org> Commit-Queue: Alex Loiko <aleloi@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26777}
94 lines
3.1 KiB
C++
94 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2013 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 "modules/audio_coding/neteq/tools/input_audio_file.h"
|
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
namespace webrtc {
|
|
namespace test {
|
|
|
|
InputAudioFile::InputAudioFile(const std::string file_name, bool loop_at_end)
|
|
: loop_at_end_(loop_at_end) {
|
|
fp_ = fopen(file_name.c_str(), "rb");
|
|
}
|
|
|
|
InputAudioFile::~InputAudioFile() {
|
|
fclose(fp_);
|
|
}
|
|
|
|
bool InputAudioFile::Read(size_t samples, int16_t* destination) {
|
|
if (!fp_) {
|
|
return false;
|
|
}
|
|
size_t samples_read = fread(destination, sizeof(int16_t), samples, fp_);
|
|
if (samples_read < samples) {
|
|
if (!loop_at_end_) {
|
|
return false;
|
|
}
|
|
// Rewind and read the missing samples.
|
|
rewind(fp_);
|
|
size_t missing_samples = samples - samples_read;
|
|
if (fread(destination + samples_read, sizeof(int16_t), missing_samples,
|
|
fp_) < missing_samples) {
|
|
// Could not read enough even after rewinding the file.
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool InputAudioFile::Seek(int samples) {
|
|
if (!fp_) {
|
|
return false;
|
|
}
|
|
// Find file boundaries.
|
|
const long current_pos = ftell(fp_);
|
|
RTC_CHECK_NE(EOF, current_pos)
|
|
<< "Error returned when getting file position.";
|
|
RTC_CHECK_EQ(0, fseek(fp_, 0, SEEK_END)); // Move to end of file.
|
|
const long file_size = ftell(fp_);
|
|
RTC_CHECK_NE(EOF, file_size) << "Error returned when getting file position.";
|
|
// Find new position.
|
|
long new_pos = current_pos + sizeof(int16_t) * samples; // Samples to bytes.
|
|
if (loop_at_end_) {
|
|
new_pos = new_pos % file_size; // Wrap around the end of the file.
|
|
if (new_pos < 0) {
|
|
// For negative values of new_pos, newpos % file_size will also be
|
|
// negative. To get the correct result it's needed to add file_size.
|
|
new_pos += file_size;
|
|
}
|
|
} else {
|
|
new_pos = new_pos > file_size ? file_size : new_pos; // Don't loop.
|
|
}
|
|
RTC_CHECK_GE(new_pos, 0)
|
|
<< "Trying to move to before the beginning of the file";
|
|
// Move to new position relative to the beginning of the file.
|
|
RTC_CHECK_EQ(0, fseek(fp_, new_pos, SEEK_SET));
|
|
return true;
|
|
}
|
|
|
|
void InputAudioFile::DuplicateInterleaved(const int16_t* source,
|
|
size_t samples,
|
|
size_t channels,
|
|
int16_t* destination) {
|
|
// Start from the end of |source| and |destination|, and work towards the
|
|
// beginning. This is to allow in-place interleaving of the same array (i.e.,
|
|
// |source| and |destination| are the same array).
|
|
for (int i = static_cast<int>(samples - 1); i >= 0; --i) {
|
|
for (int j = static_cast<int>(channels - 1); j >= 0; --j) {
|
|
destination[i * channels + j] = source[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace webrtc
|