101 lines
2.3 KiB
C++
101 lines
2.3 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 ACM_ISAC_TEST_H
|
|
#define ACM_ISAC_TEST_H
|
|
|
|
#include "ACMTest.h"
|
|
#include "Channel.h"
|
|
#include "PCMFile.h"
|
|
#include "audio_coding_module.h"
|
|
#include "utility.h"
|
|
#include "common_types.h"
|
|
|
|
#define MAX_FILE_NAME_LENGTH_BYTE 500
|
|
#define NO_OF_CLIENTS 15
|
|
|
|
struct ACMTestISACConfig
|
|
{
|
|
WebRtc_Word32 currentRateBitPerSec;
|
|
WebRtc_Word16 currentFrameSizeMsec;
|
|
WebRtc_UWord32 maxRateBitPerSec;
|
|
WebRtc_Word16 maxPayloadSizeByte;
|
|
WebRtc_Word16 encodingMode;
|
|
WebRtc_UWord32 initRateBitPerSec;
|
|
WebRtc_Word16 initFrameSizeInMsec;
|
|
bool enforceFrameSize;
|
|
};
|
|
|
|
|
|
|
|
class ISACTest : public ACMTest
|
|
{
|
|
public:
|
|
ISACTest(int testMode);
|
|
~ISACTest();
|
|
|
|
void Perform();
|
|
private:
|
|
WebRtc_Word16 Setup();
|
|
WebRtc_Word16 SetupConference();
|
|
WebRtc_Word16 RunConference();
|
|
|
|
|
|
void Run10ms();
|
|
|
|
void EncodeDecode(
|
|
int testNr,
|
|
ACMTestISACConfig& wbISACConfig,
|
|
ACMTestISACConfig& swbISACConfig);
|
|
|
|
void TestBWE(
|
|
int testNr);
|
|
|
|
void SwitchingSamplingRate(
|
|
int testNr,
|
|
int maxSampRateChange);
|
|
|
|
AudioCodingModule* _acmA;
|
|
AudioCodingModule* _acmB;
|
|
|
|
Channel* _channel_A2B;
|
|
Channel* _channel_B2A;
|
|
|
|
PCMFile _inFileA;
|
|
PCMFile _inFileB;
|
|
|
|
PCMFile _outFileA;
|
|
PCMFile _outFileB;
|
|
|
|
WebRtc_UWord8 _idISAC16kHz;
|
|
WebRtc_UWord8 _idISAC32kHz;
|
|
CodecInst _paramISAC16kHz;
|
|
CodecInst _paramISAC32kHz;
|
|
|
|
char _fileNameWB[MAX_FILE_NAME_LENGTH_BYTE];
|
|
char _fileNameSWB[MAX_FILE_NAME_LENGTH_BYTE];
|
|
|
|
ACMTestTimer _myTimer;
|
|
int _testMode;
|
|
|
|
AudioCodingModule* _defaultACM32;
|
|
AudioCodingModule* _defaultACM16;
|
|
|
|
AudioCodingModule* _confACM[NO_OF_CLIENTS];
|
|
AudioCodingModule* _clientACM[NO_OF_CLIENTS];
|
|
Channel* _conf2Client[NO_OF_CLIENTS];
|
|
Channel* _client2Conf[NO_OF_CLIENTS];
|
|
|
|
PCMFile _clientOutFile[NO_OF_CLIENTS];
|
|
};
|
|
|
|
|
|
#endif
|