niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
tina.legrand@webrtc.org | ae1c454 | 2012-03-12 08:41:30 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #include "modules/audio_coding/test/EncodeDecodeTest.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 12 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 13 | #include <stdio.h> |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 14 | #include <stdlib.h> |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 15 | #include <memory> |
tina.legrand@webrtc.org | 5e7ca60 | 2012-06-12 07:16:24 +0000 | [diff] [blame] | 16 | |
Karl Wiberg | 5817d3d | 2018-04-06 10:06:42 +0200 | [diff] [blame] | 17 | #include "api/audio_codecs/builtin_audio_decoder_factory.h" |
Karl Wiberg | 658a552 | 2018-08-15 15:20:49 +0200 | [diff] [blame] | 18 | #include "api/audio_codecs/builtin_audio_encoder_factory.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 19 | #include "modules/audio_coding/include/audio_coding_module.h" |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 20 | #include "rtc_base/strings/string_builder.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 21 | #include "test/gtest.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 22 | #include "test/testsupport/file_utils.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 23 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 24 | namespace webrtc { |
| 25 | |
tina.legrand@webrtc.org | d5726a1 | 2013-05-03 07:34:12 +0000 | [diff] [blame] | 26 | TestPacketization::TestPacketization(RTPStream *rtpStream, uint16_t frequency) |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 27 | : _rtpStream(rtpStream), |
| 28 | _frequency(frequency), |
| 29 | _seqNo(0) { |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 30 | } |
| 31 | |
tina.legrand@webrtc.org | d5726a1 | 2013-05-03 07:34:12 +0000 | [diff] [blame] | 32 | TestPacketization::~TestPacketization() { |
| 33 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 34 | |
pbos@webrtc.org | 0946a56 | 2013-04-09 00:28:06 +0000 | [diff] [blame] | 35 | int32_t TestPacketization::SendData( |
Niels Möller | 87e2d78 | 2019-03-07 10:18:23 +0100 | [diff] [blame] | 36 | const AudioFrameType /* frameType */, |
| 37 | const uint8_t payloadType, |
| 38 | const uint32_t timeStamp, |
| 39 | const uint8_t* payloadData, |
pkasting@chromium.org | 4591fbd | 2014-11-20 22:28:14 +0000 | [diff] [blame] | 40 | const size_t payloadSize, |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 41 | const RTPFragmentationHeader* /* fragmentation */) { |
| 42 | _rtpStream->Write(payloadType, timeStamp, _seqNo++, payloadData, payloadSize, |
| 43 | _frequency); |
| 44 | return 1; |
| 45 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 46 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 47 | Sender::Sender() |
| 48 | : _acm(NULL), |
| 49 | _pcmFile(), |
| 50 | _audioFrame(), |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 51 | _packetization(NULL) { |
| 52 | } |
| 53 | |
minyue@webrtc.org | aa5ea1c | 2014-05-23 15:16:51 +0000 | [diff] [blame] | 54 | void Sender::Setup(AudioCodingModule *acm, RTPStream *rtpStream, |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 55 | std::string in_file_name, int in_sample_rate, |
| 56 | int payload_type, SdpAudioFormat format) { |
tina.legrand@webrtc.org | ba46804 | 2012-08-17 10:38:28 +0000 | [diff] [blame] | 57 | // Open input file |
minyue@webrtc.org | aa5ea1c | 2014-05-23 15:16:51 +0000 | [diff] [blame] | 58 | const std::string file_name = webrtc::test::ResourcePath(in_file_name, "pcm"); |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 59 | _pcmFile.Open(file_name, in_sample_rate, "rb"); |
| 60 | if (format.num_channels == 2) { |
minyue@webrtc.org | aa5ea1c | 2014-05-23 15:16:51 +0000 | [diff] [blame] | 61 | _pcmFile.ReadStereo(true); |
| 62 | } |
Henrik Lundin | 4d68208 | 2015-12-10 16:24:39 +0100 | [diff] [blame] | 63 | // Set test length to 500 ms (50 blocks of 10 ms each). |
| 64 | _pcmFile.SetNum10MsBlocksToRead(50); |
| 65 | // Fast-forward 1 second (100 blocks) since the file starts with silence. |
| 66 | _pcmFile.FastForward(100); |
tina.legrand@webrtc.org | ba46804 | 2012-08-17 10:38:28 +0000 | [diff] [blame] | 67 | |
Karl Wiberg | 658a552 | 2018-08-15 15:20:49 +0200 | [diff] [blame] | 68 | acm->SetEncoder(CreateBuiltinAudioEncoderFactory()->MakeAudioEncoder( |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 69 | payload_type, format, absl::nullopt)); |
| 70 | _packetization = new TestPacketization(rtpStream, format.clockrate_hz); |
tina.legrand@webrtc.org | ee92b66 | 2013-08-27 07:33:51 +0000 | [diff] [blame] | 71 | EXPECT_EQ(0, acm->RegisterTransportCallback(_packetization)); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 72 | |
tina.legrand@webrtc.org | ba46804 | 2012-08-17 10:38:28 +0000 | [diff] [blame] | 73 | _acm = acm; |
| 74 | } |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 75 | |
| 76 | void Sender::Teardown() { |
| 77 | _pcmFile.Close(); |
| 78 | delete _packetization; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 79 | } |
| 80 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 81 | bool Sender::Add10MsData() { |
| 82 | if (!_pcmFile.EndOfFile()) { |
tina.legrand@webrtc.org | ee92b66 | 2013-08-27 07:33:51 +0000 | [diff] [blame] | 83 | EXPECT_GT(_pcmFile.Read10MsData(_audioFrame), 0); |
pbos@webrtc.org | 0946a56 | 2013-04-09 00:28:06 +0000 | [diff] [blame] | 84 | int32_t ok = _acm->Add10MsData(_audioFrame); |
henrik.lundin@webrtc.org | f56c162 | 2015-03-02 12:29:30 +0000 | [diff] [blame] | 85 | EXPECT_GE(ok, 0); |
| 86 | return ok >= 0 ? true : false; |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 87 | } |
| 88 | return false; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 89 | } |
| 90 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 91 | void Sender::Run() { |
| 92 | while (true) { |
| 93 | if (!Add10MsData()) { |
| 94 | break; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 95 | } |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 96 | } |
| 97 | } |
| 98 | |
| 99 | Receiver::Receiver() |
| 100 | : _playoutLengthSmpls(WEBRTC_10MS_PCM_AUDIO), |
| 101 | _payloadSizeBytes(MAX_INCOMING_PAYLOAD) { |
| 102 | } |
| 103 | |
minyue@webrtc.org | aa5ea1c | 2014-05-23 15:16:51 +0000 | [diff] [blame] | 104 | void Receiver::Setup(AudioCodingModule *acm, RTPStream *rtpStream, |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 105 | std::string out_file_name, size_t channels, int file_num) { |
tina.legrand@webrtc.org | ee92b66 | 2013-08-27 07:33:51 +0000 | [diff] [blame] | 106 | EXPECT_EQ(0, acm->InitializeReceiver()); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 107 | |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 108 | if (channels == 1) { |
| 109 | acm->SetReceiveCodecs({{103, {"ISAC", 16000, 1}}, |
| 110 | {104, {"ISAC", 32000, 1}}, |
| 111 | {107, {"L16", 8000, 1}}, |
| 112 | {108, {"L16", 16000, 1}}, |
| 113 | {109, {"L16", 32000, 1}}, |
| 114 | {0, {"PCMU", 8000, 1}}, |
| 115 | {8, {"PCMA", 8000, 1}}, |
| 116 | {102, {"ILBC", 8000, 1}}, |
| 117 | {9, {"G722", 8000, 1}}, |
| 118 | {120, {"OPUS", 48000, 2}}, |
| 119 | {13, {"CN", 8000, 1}}, |
| 120 | {98, {"CN", 16000, 1}}, |
| 121 | {99, {"CN", 32000, 1}}}); |
| 122 | } else { |
| 123 | ASSERT_EQ(channels, 2u); |
| 124 | acm->SetReceiveCodecs({{111, {"L16", 8000, 2}}, |
| 125 | {112, {"L16", 16000, 2}}, |
| 126 | {113, {"L16", 32000, 2}}, |
| 127 | {110, {"PCMU", 8000, 2}}, |
| 128 | {118, {"PCMA", 8000, 2}}, |
| 129 | {119, {"G722", 8000, 2}}, |
| 130 | {120, {"OPUS", 48000, 2, {{"stereo", "1"}}}}}); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 131 | } |
phoglund@webrtc.org | d1a860b | 2012-01-26 14:49:28 +0000 | [diff] [blame] | 132 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 133 | int playSampFreq; |
tina.legrand@webrtc.org | ba46804 | 2012-08-17 10:38:28 +0000 | [diff] [blame] | 134 | std::string file_name; |
Jonas Olsson | 366a50c | 2018-09-06 13:41:30 +0200 | [diff] [blame] | 135 | rtc::StringBuilder file_stream; |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 136 | file_stream << webrtc::test::OutputPath() << out_file_name << file_num |
| 137 | << ".pcm"; |
tina.legrand@webrtc.org | ba46804 | 2012-08-17 10:38:28 +0000 | [diff] [blame] | 138 | file_name = file_stream.str(); |
| 139 | _rtpStream = rtpStream; |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 140 | |
Karl Wiberg | 88aee28 | 2018-06-14 13:12:05 +0200 | [diff] [blame] | 141 | playSampFreq = 32000; |
| 142 | _pcmFile.Open(file_name, 32000, "wb+"); |
phoglund@webrtc.org | d1a860b | 2012-01-26 14:49:28 +0000 | [diff] [blame] | 143 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 144 | _realPayloadSizeBytes = 0; |
pbos@webrtc.org | 0946a56 | 2013-04-09 00:28:06 +0000 | [diff] [blame] | 145 | _playoutBuffer = new int16_t[WEBRTC_10MS_PCM_AUDIO]; |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 146 | _frequency = playSampFreq; |
| 147 | _acm = acm; |
| 148 | _firstTime = true; |
| 149 | } |
| 150 | |
| 151 | void Receiver::Teardown() { |
tina.legrand@webrtc.org | d5726a1 | 2013-05-03 07:34:12 +0000 | [diff] [blame] | 152 | delete[] _playoutBuffer; |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 153 | _pcmFile.Close(); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | bool Receiver::IncomingPacket() { |
| 157 | if (!_rtpStream->EndOfFile()) { |
| 158 | if (_firstTime) { |
| 159 | _firstTime = false; |
Niels Möller | bf47495 | 2019-02-18 12:00:06 +0100 | [diff] [blame] | 160 | _realPayloadSizeBytes = _rtpStream->Read(&_rtpHeader, _incomingPayload, |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 161 | _payloadSizeBytes, &_nextTime); |
andrew@webrtc.org | 975e4a3 | 2012-01-17 19:27:33 +0000 | [diff] [blame] | 162 | if (_realPayloadSizeBytes == 0) { |
| 163 | if (_rtpStream->EndOfFile()) { |
| 164 | _firstTime = true; |
| 165 | return true; |
| 166 | } else { |
andrew@webrtc.org | 975e4a3 | 2012-01-17 19:27:33 +0000 | [diff] [blame] | 167 | return false; |
| 168 | } |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 169 | } |
tina.legrand@webrtc.org | d5726a1 | 2013-05-03 07:34:12 +0000 | [diff] [blame] | 170 | } |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 171 | |
tina.legrand@webrtc.org | ee92b66 | 2013-08-27 07:33:51 +0000 | [diff] [blame] | 172 | EXPECT_EQ(0, _acm->IncomingPacket(_incomingPayload, _realPayloadSizeBytes, |
Niels Möller | bf47495 | 2019-02-18 12:00:06 +0100 | [diff] [blame] | 173 | _rtpHeader)); |
| 174 | _realPayloadSizeBytes = _rtpStream->Read(&_rtpHeader, _incomingPayload, |
tina.legrand@webrtc.org | d5726a1 | 2013-05-03 07:34:12 +0000 | [diff] [blame] | 175 | _payloadSizeBytes, &_nextTime); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 176 | if (_realPayloadSizeBytes == 0 && _rtpStream->EndOfFile()) { |
| 177 | _firstTime = true; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 178 | } |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 179 | } |
| 180 | return true; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 181 | } |
| 182 | |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 183 | bool Receiver::PlayoutData() { |
| 184 | AudioFrame audioFrame; |
henrik.lundin | d4ccb00 | 2016-05-17 12:21:55 -0700 | [diff] [blame] | 185 | bool muted; |
| 186 | int32_t ok = _acm->PlayoutData10Ms(_frequency, &audioFrame, &muted); |
| 187 | if (muted) { |
| 188 | ADD_FAILURE(); |
| 189 | return false; |
| 190 | } |
tina.legrand@webrtc.org | ee92b66 | 2013-08-27 07:33:51 +0000 | [diff] [blame] | 191 | EXPECT_EQ(0, ok); |
| 192 | if (ok < 0){ |
| 193 | return false; |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 194 | } |
| 195 | if (_playoutLengthSmpls == 0) { |
| 196 | return false; |
| 197 | } |
yujo | 36b1a5f | 2017-06-12 12:45:32 -0700 | [diff] [blame] | 198 | _pcmFile.Write10MsData(audioFrame.data(), |
minyue@webrtc.org | aa5ea1c | 2014-05-23 15:16:51 +0000 | [diff] [blame] | 199 | audioFrame.samples_per_channel_ * audioFrame.num_channels_); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 200 | return true; |
| 201 | } |
| 202 | |
| 203 | void Receiver::Run() { |
pbos@webrtc.org | 0946a56 | 2013-04-09 00:28:06 +0000 | [diff] [blame] | 204 | uint8_t counter500Ms = 50; |
| 205 | uint32_t clock = 0; |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 206 | |
| 207 | while (counter500Ms > 0) { |
| 208 | if (clock == 0 || clock >= _nextTime) { |
tina.legrand@webrtc.org | ee92b66 | 2013-08-27 07:33:51 +0000 | [diff] [blame] | 209 | EXPECT_TRUE(IncomingPacket()); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 210 | if (clock == 0) { |
| 211 | clock = _nextTime; |
| 212 | } |
| 213 | } |
| 214 | if ((clock % 10) == 0) { |
| 215 | if (!PlayoutData()) { |
| 216 | clock++; |
| 217 | continue; |
| 218 | } |
| 219 | } |
| 220 | if (_rtpStream->EndOfFile()) { |
| 221 | counter500Ms--; |
| 222 | } |
| 223 | clock++; |
| 224 | } |
| 225 | } |
| 226 | |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 227 | EncodeDecodeTest::EncodeDecodeTest() = default; |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 228 | |
| 229 | void EncodeDecodeTest::Perform() { |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 230 | const std::map<int, SdpAudioFormat> send_codecs = {{103, {"ISAC", 16000, 1}}, |
| 231 | {104, {"ISAC", 32000, 1}}, |
| 232 | {107, {"L16", 8000, 1}}, |
| 233 | {108, {"L16", 16000, 1}}, |
| 234 | {109, {"L16", 32000, 1}}, |
| 235 | {0, {"PCMU", 8000, 1}}, |
| 236 | {8, {"PCMA", 8000, 1}}, |
| 237 | #ifdef WEBRTC_CODEC_ILBC |
| 238 | {102, {"ILBC", 8000, 1}}, |
| 239 | #endif |
| 240 | {9, {"G722", 8000, 1}}}; |
| 241 | int file_num = 0; |
| 242 | for (const auto& send_codec : send_codecs) { |
| 243 | RTPFile rtpFile; |
| 244 | std::unique_ptr<AudioCodingModule> acm(AudioCodingModule::Create( |
| 245 | AudioCodingModule::Config(CreateBuiltinAudioDecoderFactory()))); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 246 | |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 247 | std::string fileName = webrtc::test::TempFilename( |
| 248 | webrtc::test::OutputPath(), "encode_decode_rtp"); |
| 249 | rtpFile.Open(fileName.c_str(), "wb+"); |
| 250 | rtpFile.WriteHeader(); |
| 251 | Sender sender; |
| 252 | sender.Setup(acm.get(), &rtpFile, "audio_coding/testfile32kHz", 32000, |
| 253 | send_codec.first, send_codec.second); |
| 254 | sender.Run(); |
| 255 | sender.Teardown(); |
| 256 | rtpFile.Close(); |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 257 | |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 258 | rtpFile.Open(fileName.c_str(), "rb"); |
| 259 | rtpFile.ReadHeader(); |
| 260 | Receiver receiver; |
| 261 | receiver.Setup(acm.get(), &rtpFile, "encodeDecode_out", 1, file_num); |
| 262 | receiver.Run(); |
| 263 | receiver.Teardown(); |
| 264 | rtpFile.Close(); |
tina.legrand@webrtc.org | 4517585 | 2012-06-01 09:27:35 +0000 | [diff] [blame] | 265 | |
Fredrik Solenberg | 657b296 | 2018-12-05 10:30:25 +0100 | [diff] [blame] | 266 | file_num++; |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 267 | } |
tina.legrand@webrtc.org | 554ae1a | 2011-12-16 10:09:04 +0000 | [diff] [blame] | 268 | } |
| 269 | |
tina.legrand@webrtc.org | d5726a1 | 2013-05-03 07:34:12 +0000 | [diff] [blame] | 270 | } // namespace webrtc |