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

This CL allows to trigger related tests when rolling opus (at chromium side). Namely: * TestOpusBitExactness * TestOpusDtxBitExactness This CL also prevents name clash for OpusTest: * modules/audio_coding/test/opus_test.h: Helper class. * modules/audio_coding/neteq/opus_unittest.cc: Local test fixture. Bug: chromium:1002973 Change-Id: If8470b5f64fbdb1f7a84b838bde62d8c90390f2c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/159033 Commit-Queue: Yves Gerey <yvesg@google.com> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Ivo Creusen <ivoc@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29759}
95 lines
3.2 KiB
C++
95 lines
3.2 KiB
C++
/*
|
|
* Copyright (c) 2011 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_CODING_NETEQ_TEST_NETEQ_DECODING_TEST_H_
|
|
#define MODULES_AUDIO_CODING_NETEQ_TEST_NETEQ_DECODING_TEST_H_
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "api/audio/audio_frame.h"
|
|
#include "api/neteq/neteq.h"
|
|
#include "api/rtp_headers.h"
|
|
#include "modules/audio_coding/neteq/tools/packet.h"
|
|
#include "modules/audio_coding/neteq/tools/rtp_file_source.h"
|
|
#include "system_wrappers/include/clock.h"
|
|
#include "test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class NetEqDecodingTest : public ::testing::Test {
|
|
protected:
|
|
// NetEQ must be polled for data once every 10 ms.
|
|
// Thus, none of the constants below can be changed.
|
|
static constexpr int kTimeStepMs = 10;
|
|
static constexpr size_t kBlockSize8kHz = kTimeStepMs * 8;
|
|
static constexpr size_t kBlockSize16kHz = kTimeStepMs * 16;
|
|
static constexpr size_t kBlockSize32kHz = kTimeStepMs * 32;
|
|
static constexpr size_t kBlockSize48kHz = kTimeStepMs * 48;
|
|
static constexpr int kInitSampleRateHz = 8000;
|
|
|
|
NetEqDecodingTest();
|
|
virtual void SetUp();
|
|
virtual void TearDown();
|
|
void OpenInputFile(const std::string& rtp_file);
|
|
void Process();
|
|
|
|
void DecodeAndCompare(const std::string& rtp_file,
|
|
const std::string& output_checksum,
|
|
const std::string& network_stats_checksum,
|
|
bool gen_ref);
|
|
|
|
static void PopulateRtpInfo(int frame_index,
|
|
int timestamp,
|
|
RTPHeader* rtp_info);
|
|
static void PopulateCng(int frame_index,
|
|
int timestamp,
|
|
RTPHeader* rtp_info,
|
|
uint8_t* payload,
|
|
size_t* payload_len);
|
|
|
|
void WrapTest(uint16_t start_seq_no,
|
|
uint32_t start_timestamp,
|
|
const std::set<uint16_t>& drop_seq_numbers,
|
|
bool expect_seq_no_wrap,
|
|
bool expect_timestamp_wrap);
|
|
|
|
void LongCngWithClockDrift(double drift_factor,
|
|
double network_freeze_ms,
|
|
bool pull_audio_during_freeze,
|
|
int delay_tolerance_ms,
|
|
int max_time_to_speech_ms);
|
|
|
|
SimulatedClock clock_;
|
|
std::unique_ptr<NetEq> neteq_;
|
|
NetEq::Config config_;
|
|
std::unique_ptr<test::RtpFileSource> rtp_source_;
|
|
std::unique_ptr<test::Packet> packet_;
|
|
AudioFrame out_frame_;
|
|
int output_sample_rate_;
|
|
int algorithmic_delay_ms_;
|
|
};
|
|
|
|
class NetEqDecodingTestTwoInstances : public NetEqDecodingTest {
|
|
public:
|
|
NetEqDecodingTestTwoInstances() : NetEqDecodingTest() {}
|
|
|
|
void SetUp() override;
|
|
|
|
void CreateSecondInstance();
|
|
|
|
protected:
|
|
std::unique_ptr<NetEq> neteq2_;
|
|
NetEq::Config config2_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
#endif // MODULES_AUDIO_CODING_NETEQ_TEST_NETEQ_DECODING_TEST_H_
|