andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
kjellander | 0c1546c | 2015-11-26 12:44:54 | [diff] [blame] | 11 | #include "webrtc/modules/audio_coding/test/EncodeDecodeTest.h" |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 12 | |
kwiberg | 4df8757 | 2016-02-15 04:40:57 | [diff] [blame] | 13 | #include <memory> |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 14 | #include <sstream> |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 15 | #include <stdio.h> |
| 16 | #include <stdlib.h> |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 17 | |
tina.legrand@webrtc.org | cf9ab12 | 2013-03-15 13:29:17 | [diff] [blame] | 18 | #include "webrtc/common_types.h" |
kwiberg | 77c17ed | 2016-10-24 20:47:09 | [diff] [blame] | 19 | #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" |
kwiberg | 36a2479 | 2016-10-01 05:29:43 | [diff] [blame] | 20 | #include "webrtc/modules/audio_coding/include/audio_coding_module.h" |
kjellander | 0c1546c | 2015-11-26 12:44:54 | [diff] [blame] | 21 | #include "webrtc/modules/audio_coding/test/utility.h" |
Henrik Kjellander | 78f65d0 | 2015-10-28 17:17:40 | [diff] [blame] | 22 | #include "webrtc/system_wrappers/include/trace.h" |
kwiberg | 36a2479 | 2016-10-01 05:29:43 | [diff] [blame] | 23 | #include "webrtc/test/gtest.h" |
tina.legrand@webrtc.org | cf9ab12 | 2013-03-15 13:29:17 | [diff] [blame] | 24 | #include "webrtc/test/testsupport/fileutils.h" |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 25 | |
| 26 | namespace webrtc { |
| 27 | |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 28 | TestPacketization::TestPacketization(RTPStream *rtpStream, uint16_t frequency) |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 29 | : _rtpStream(rtpStream), |
| 30 | _frequency(frequency), |
| 31 | _seqNo(0) { |
| 32 | } |
| 33 | |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 34 | TestPacketization::~TestPacketization() { |
| 35 | } |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 36 | |
pbos@webrtc.org | fbda0fc | 2013-04-09 00:28:06 | [diff] [blame] | 37 | int32_t TestPacketization::SendData( |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 38 | const FrameType /* frameType */, const uint8_t payloadType, |
| 39 | const uint32_t timeStamp, const uint8_t* payloadData, |
pkasting@chromium.org | 0ab923a | 2014-11-20 22:28:14 | [diff] [blame] | 40 | const size_t payloadSize, |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 41 | const RTPFragmentationHeader* /* fragmentation */) { |
| 42 | _rtpStream->Write(payloadType, timeStamp, _seqNo++, payloadData, payloadSize, |
| 43 | _frequency); |
| 44 | return 1; |
| 45 | } |
| 46 | |
| 47 | Sender::Sender() |
| 48 | : _acm(NULL), |
| 49 | _pcmFile(), |
| 50 | _audioFrame(), |
| 51 | _packetization(NULL) { |
| 52 | } |
| 53 | |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 54 | void Sender::Setup(AudioCodingModule *acm, RTPStream *rtpStream, |
Peter Kasting | 80590d9 | 2016-01-13 00:26:35 | [diff] [blame] | 55 | std::string in_file_name, int sample_rate, size_t channels) { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 56 | struct CodecInst sendCodec; |
| 57 | int noOfCodecs = acm->NumberOfCodecs(); |
| 58 | int codecNo; |
| 59 | |
| 60 | // Open input file |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 61 | const std::string file_name = webrtc::test::ResourcePath(in_file_name, "pcm"); |
| 62 | _pcmFile.Open(file_name, sample_rate, "rb"); |
| 63 | if (channels == 2) { |
| 64 | _pcmFile.ReadStereo(true); |
| 65 | } |
Henrik Lundin | 9f2a01c | 2015-12-10 15:24:39 | [diff] [blame] | 66 | // Set test length to 500 ms (50 blocks of 10 ms each). |
| 67 | _pcmFile.SetNum10MsBlocksToRead(50); |
| 68 | // Fast-forward 1 second (100 blocks) since the file starts with silence. |
| 69 | _pcmFile.FastForward(100); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 70 | |
| 71 | // Set the codec for the current test. |
| 72 | if ((testMode == 0) || (testMode == 1)) { |
| 73 | // Set the codec id. |
| 74 | codecNo = codeId; |
| 75 | } else { |
| 76 | // Choose codec on command line. |
| 77 | printf("List of supported codec.\n"); |
| 78 | for (int n = 0; n < noOfCodecs; n++) { |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 79 | EXPECT_EQ(0, acm->Codec(n, &sendCodec)); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 80 | printf("%d %s\n", n, sendCodec.plname); |
| 81 | } |
| 82 | printf("Choose your codec:"); |
| 83 | ASSERT_GT(scanf("%d", &codecNo), 0); |
| 84 | } |
| 85 | |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 86 | EXPECT_EQ(0, acm->Codec(codecNo, &sendCodec)); |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 87 | |
| 88 | sendCodec.channels = channels; |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 89 | |
| 90 | EXPECT_EQ(0, acm->RegisterSendCodec(sendCodec)); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 91 | _packetization = new TestPacketization(rtpStream, sendCodec.plfreq); |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 92 | EXPECT_EQ(0, acm->RegisterTransportCallback(_packetization)); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 93 | |
| 94 | _acm = acm; |
| 95 | } |
| 96 | |
| 97 | void Sender::Teardown() { |
| 98 | _pcmFile.Close(); |
| 99 | delete _packetization; |
| 100 | } |
| 101 | |
| 102 | bool Sender::Add10MsData() { |
| 103 | if (!_pcmFile.EndOfFile()) { |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 104 | EXPECT_GT(_pcmFile.Read10MsData(_audioFrame), 0); |
pbos@webrtc.org | fbda0fc | 2013-04-09 00:28:06 | [diff] [blame] | 105 | int32_t ok = _acm->Add10MsData(_audioFrame); |
henrik.lundin@webrtc.org | 5727769 | 2015-03-02 12:29:30 | [diff] [blame] | 106 | EXPECT_GE(ok, 0); |
| 107 | return ok >= 0 ? true : false; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 108 | } |
| 109 | return false; |
| 110 | } |
| 111 | |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 112 | void Sender::Run() { |
| 113 | while (true) { |
| 114 | if (!Add10MsData()) { |
| 115 | break; |
| 116 | } |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 117 | } |
| 118 | } |
| 119 | |
| 120 | Receiver::Receiver() |
| 121 | : _playoutLengthSmpls(WEBRTC_10MS_PCM_AUDIO), |
| 122 | _payloadSizeBytes(MAX_INCOMING_PAYLOAD) { |
| 123 | } |
| 124 | |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 125 | void Receiver::Setup(AudioCodingModule *acm, RTPStream *rtpStream, |
Peter Kasting | 80590d9 | 2016-01-13 00:26:35 | [diff] [blame] | 126 | std::string out_file_name, size_t channels) { |
henrike@webrtc.org | 22c283b | 2014-08-11 21:06:30 | [diff] [blame] | 127 | struct CodecInst recvCodec = CodecInst(); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 128 | int noOfCodecs; |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 129 | EXPECT_EQ(0, acm->InitializeReceiver()); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 130 | |
| 131 | noOfCodecs = acm->NumberOfCodecs(); |
| 132 | for (int i = 0; i < noOfCodecs; i++) { |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 133 | EXPECT_EQ(0, acm->Codec(i, &recvCodec)); |
| 134 | if (recvCodec.channels == channels) |
kwiberg | 77c17ed | 2016-10-24 20:47:09 | [diff] [blame] | 135 | EXPECT_EQ(true, acm->RegisterReceiveCodec(recvCodec.pltype, |
| 136 | CodecInstToSdp(recvCodec))); |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 137 | // Forces mono/stereo for Opus. |
| 138 | if (!strcmp(recvCodec.plname, "opus")) { |
| 139 | recvCodec.channels = channels; |
kwiberg | 77c17ed | 2016-10-24 20:47:09 | [diff] [blame] | 140 | EXPECT_EQ(true, acm->RegisterReceiveCodec(recvCodec.pltype, |
| 141 | CodecInstToSdp(recvCodec))); |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 142 | } |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | int playSampFreq; |
| 146 | std::string file_name; |
| 147 | std::stringstream file_stream; |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 148 | file_stream << webrtc::test::OutputPath() << out_file_name |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 149 | << static_cast<int>(codeId) << ".pcm"; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 150 | file_name = file_stream.str(); |
| 151 | _rtpStream = rtpStream; |
| 152 | |
| 153 | if (testMode == 1) { |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 154 | playSampFreq = recvCodec.plfreq; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 155 | _pcmFile.Open(file_name, recvCodec.plfreq, "wb+"); |
| 156 | } else if (testMode == 0) { |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 157 | playSampFreq = 32000; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 158 | _pcmFile.Open(file_name, 32000, "wb+"); |
| 159 | } else { |
| 160 | printf("\nValid output frequencies:\n"); |
| 161 | printf("8000\n16000\n32000\n-1,"); |
| 162 | printf("which means output frequency equal to received signal frequency"); |
| 163 | printf("\n\nChoose output sampling frequency: "); |
| 164 | ASSERT_GT(scanf("%d", &playSampFreq), 0); |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 165 | file_name = webrtc::test::OutputPath() + out_file_name + ".pcm"; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 166 | _pcmFile.Open(file_name, playSampFreq, "wb+"); |
| 167 | } |
| 168 | |
| 169 | _realPayloadSizeBytes = 0; |
pbos@webrtc.org | fbda0fc | 2013-04-09 00:28:06 | [diff] [blame] | 170 | _playoutBuffer = new int16_t[WEBRTC_10MS_PCM_AUDIO]; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 171 | _frequency = playSampFreq; |
| 172 | _acm = acm; |
| 173 | _firstTime = true; |
| 174 | } |
| 175 | |
| 176 | void Receiver::Teardown() { |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 177 | delete[] _playoutBuffer; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 178 | _pcmFile.Close(); |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 179 | if (testMode > 1) { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 180 | Trace::ReturnTrace(); |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 181 | } |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | bool Receiver::IncomingPacket() { |
| 185 | if (!_rtpStream->EndOfFile()) { |
| 186 | if (_firstTime) { |
| 187 | _firstTime = false; |
| 188 | _realPayloadSizeBytes = _rtpStream->Read(&_rtpInfo, _incomingPayload, |
| 189 | _payloadSizeBytes, &_nextTime); |
| 190 | if (_realPayloadSizeBytes == 0) { |
| 191 | if (_rtpStream->EndOfFile()) { |
| 192 | _firstTime = true; |
| 193 | return true; |
| 194 | } else { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 195 | return false; |
| 196 | } |
| 197 | } |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 198 | } |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 199 | |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 200 | EXPECT_EQ(0, _acm->IncomingPacket(_incomingPayload, _realPayloadSizeBytes, |
| 201 | _rtpInfo)); |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 202 | _realPayloadSizeBytes = _rtpStream->Read(&_rtpInfo, _incomingPayload, |
| 203 | _payloadSizeBytes, &_nextTime); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 204 | if (_realPayloadSizeBytes == 0 && _rtpStream->EndOfFile()) { |
| 205 | _firstTime = true; |
| 206 | } |
| 207 | } |
| 208 | return true; |
| 209 | } |
| 210 | |
| 211 | bool Receiver::PlayoutData() { |
| 212 | AudioFrame audioFrame; |
henrik.lundin | b8896d2 | 2016-05-17 19:21:55 | [diff] [blame] | 213 | bool muted; |
| 214 | int32_t ok = _acm->PlayoutData10Ms(_frequency, &audioFrame, &muted); |
| 215 | if (muted) { |
| 216 | ADD_FAILURE(); |
| 217 | return false; |
| 218 | } |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 219 | EXPECT_EQ(0, ok); |
| 220 | if (ok < 0){ |
| 221 | return false; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 222 | } |
| 223 | if (_playoutLengthSmpls == 0) { |
| 224 | return false; |
| 225 | } |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 226 | _pcmFile.Write10MsData(audioFrame.data_, |
| 227 | audioFrame.samples_per_channel_ * audioFrame.num_channels_); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 228 | return true; |
| 229 | } |
| 230 | |
| 231 | void Receiver::Run() { |
pbos@webrtc.org | fbda0fc | 2013-04-09 00:28:06 | [diff] [blame] | 232 | uint8_t counter500Ms = 50; |
| 233 | uint32_t clock = 0; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 234 | |
| 235 | while (counter500Ms > 0) { |
| 236 | if (clock == 0 || clock >= _nextTime) { |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 237 | EXPECT_TRUE(IncomingPacket()); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 238 | if (clock == 0) { |
| 239 | clock = _nextTime; |
| 240 | } |
| 241 | } |
| 242 | if ((clock % 10) == 0) { |
| 243 | if (!PlayoutData()) { |
| 244 | clock++; |
| 245 | continue; |
| 246 | } |
| 247 | } |
| 248 | if (_rtpStream->EndOfFile()) { |
| 249 | counter500Ms--; |
| 250 | } |
| 251 | clock++; |
| 252 | } |
| 253 | } |
| 254 | |
henrik.lundin@webrtc.org | c68f88e | 2014-04-17 08:29:10 | [diff] [blame] | 255 | EncodeDecodeTest::EncodeDecodeTest() { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 256 | _testMode = 2; |
| 257 | Trace::CreateTrace(); |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 258 | Trace::SetTraceFile( |
| 259 | (webrtc::test::OutputPath() + "acm_encdec_trace.txt").c_str()); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 260 | } |
| 261 | |
henrik.lundin@webrtc.org | c68f88e | 2014-04-17 08:29:10 | [diff] [blame] | 262 | EncodeDecodeTest::EncodeDecodeTest(int testMode) { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 263 | //testMode == 0 for autotest |
| 264 | //testMode == 1 for testing all codecs/parameters |
| 265 | //testMode > 1 for specific user-input test (as it was used before) |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 266 | _testMode = testMode; |
| 267 | if (_testMode != 0) { |
| 268 | Trace::CreateTrace(); |
| 269 | Trace::SetTraceFile( |
| 270 | (webrtc::test::OutputPath() + "acm_encdec_trace.txt").c_str()); |
| 271 | } |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | void EncodeDecodeTest::Perform() { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 275 | int numCodecs = 1; |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 276 | int codePars[3]; // Frequency, packet size, rate. |
| 277 | int numPars[52]; // Number of codec parameters sets (freq, pacsize, rate) |
| 278 | // to test, for a given codec. |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 279 | |
| 280 | codePars[0] = 0; |
| 281 | codePars[1] = 0; |
| 282 | codePars[2] = 0; |
| 283 | |
kwiberg | 4df8757 | 2016-02-15 04:40:57 | [diff] [blame] | 284 | std::unique_ptr<AudioCodingModule> acm(AudioCodingModule::Create(0)); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 285 | struct CodecInst sendCodecTmp; |
| 286 | numCodecs = acm->NumberOfCodecs(); |
| 287 | |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 288 | if (_testMode != 2) { |
| 289 | for (int n = 0; n < numCodecs; n++) { |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 290 | EXPECT_EQ(0, acm->Codec(n, &sendCodecTmp)); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 291 | if (STR_CASE_CMP(sendCodecTmp.plname, "telephone-event") == 0) { |
| 292 | numPars[n] = 0; |
| 293 | } else if (STR_CASE_CMP(sendCodecTmp.plname, "cn") == 0) { |
| 294 | numPars[n] = 0; |
| 295 | } else if (STR_CASE_CMP(sendCodecTmp.plname, "red") == 0) { |
| 296 | numPars[n] = 0; |
| 297 | } else if (sendCodecTmp.channels == 2) { |
| 298 | numPars[n] = 0; |
| 299 | } else { |
| 300 | numPars[n] = 1; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 301 | } |
| 302 | } |
| 303 | } else { |
| 304 | numCodecs = 1; |
| 305 | numPars[0] = 1; |
| 306 | } |
| 307 | |
| 308 | _receiver.testMode = _testMode; |
| 309 | |
| 310 | // Loop over all mono codecs: |
| 311 | for (int codeId = 0; codeId < numCodecs; codeId++) { |
| 312 | // Only encode using real mono encoders, not telephone-event and cng. |
| 313 | for (int loopPars = 1; loopPars <= numPars[codeId]; loopPars++) { |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 314 | // Encode all data to file. |
pbos@webrtc.org | f719f20 | 2014-10-01 10:05:40 | [diff] [blame] | 315 | std::string fileName = EncodeToFile(1, codeId, codePars, _testMode); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 316 | |
| 317 | RTPFile rtpFile; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 318 | rtpFile.Open(fileName.c_str(), "rb"); |
| 319 | |
| 320 | _receiver.codeId = codeId; |
| 321 | |
| 322 | rtpFile.ReadHeader(); |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 323 | _receiver.Setup(acm.get(), &rtpFile, "encodeDecode_out", 1); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 324 | _receiver.Run(); |
| 325 | _receiver.Teardown(); |
| 326 | rtpFile.Close(); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 327 | } |
| 328 | } |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 329 | |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 330 | // End tracing. |
| 331 | if (_testMode == 1) { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 332 | Trace::ReturnTrace(); |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 333 | } |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 334 | } |
| 335 | |
pbos@webrtc.org | f719f20 | 2014-10-01 10:05:40 | [diff] [blame] | 336 | std::string EncodeDecodeTest::EncodeToFile(int fileType, |
| 337 | int codeId, |
| 338 | int* codePars, |
| 339 | int testMode) { |
kwiberg | 4df8757 | 2016-02-15 04:40:57 | [diff] [blame] | 340 | std::unique_ptr<AudioCodingModule> acm(AudioCodingModule::Create(1)); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 341 | RTPFile rtpFile; |
pbos@webrtc.org | f719f20 | 2014-10-01 10:05:40 | [diff] [blame] | 342 | std::string fileName = webrtc::test::TempFilename(webrtc::test::OutputPath(), |
| 343 | "encode_decode_rtp"); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 344 | rtpFile.Open(fileName.c_str(), "wb+"); |
| 345 | rtpFile.WriteHeader(); |
| 346 | |
tina.legrand@webrtc.org | 584b688 | 2013-08-27 07:33:51 | [diff] [blame] | 347 | // Store for auto_test and logging. |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 348 | _sender.testMode = testMode; |
| 349 | _sender.codeId = codeId; |
| 350 | |
minyue@webrtc.org | 91c0a25 | 2014-05-23 15:16:51 | [diff] [blame] | 351 | _sender.Setup(acm.get(), &rtpFile, "audio_coding/testfile32kHz", 32000, 1); |
kwiberg | 85b36b9 | 2015-11-03 19:20:50 | [diff] [blame] | 352 | if (acm->SendCodec()) { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 353 | _sender.Run(); |
| 354 | } |
| 355 | _sender.Teardown(); |
| 356 | rtpFile.Close(); |
pbos@webrtc.org | f719f20 | 2014-10-01 10:05:40 | [diff] [blame] | 357 | |
| 358 | return fileName; |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 359 | } |
| 360 | |
tina.legrand@webrtc.org | b31332e | 2013-05-03 07:34:12 | [diff] [blame] | 361 | } // namespace webrtc |