OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 channel_(new Channel), | 66 channel_(new Channel), |
67 monitor_(new ActivityMonitor) { | 67 monitor_(new ActivityMonitor) { |
68 EXPECT_EQ(0, acm_send_->RegisterTransportCallback(channel_.get())); | 68 EXPECT_EQ(0, acm_send_->RegisterTransportCallback(channel_.get())); |
69 channel_->RegisterReceiverACM(acm_receive_.get()); | 69 channel_->RegisterReceiverACM(acm_receive_.get()); |
70 EXPECT_EQ(0, acm_send_->RegisterVADCallback(monitor_.get())); | 70 EXPECT_EQ(0, acm_send_->RegisterVADCallback(monitor_.get())); |
71 } | 71 } |
72 | 72 |
73 void TestVadDtx::RegisterCodec(CodecInst codec_param) { | 73 void TestVadDtx::RegisterCodec(CodecInst codec_param) { |
74 // Set the codec for sending and receiving. | 74 // Set the codec for sending and receiving. |
75 EXPECT_EQ(0, acm_send_->RegisterSendCodec(codec_param)); | 75 EXPECT_EQ(0, acm_send_->RegisterSendCodec(codec_param)); |
76 EXPECT_EQ(0, acm_receive_->RegisterReceiveCodec(codec_param)); | 76 EXPECT_EQ(true, acm_receive_->RegisterReceiveCodec( |
| 77 codec_param.pltype, CodecInstToSdp(codec_param))); |
77 channel_->SetIsStereo(codec_param.channels > 1); | 78 channel_->SetIsStereo(codec_param.channels > 1); |
78 } | 79 } |
79 | 80 |
80 // Encoding a file and see if the numbers that various packets occur follow | 81 // Encoding a file and see if the numbers that various packets occur follow |
81 // the expectation. | 82 // the expectation. |
82 void TestVadDtx::Run(std::string in_filename, int frequency, int channels, | 83 void TestVadDtx::Run(std::string in_filename, int frequency, int channels, |
83 std::string out_filename, bool append, | 84 std::string out_filename, bool append, |
84 const int* expects) { | 85 const int* expects) { |
85 monitor_->ResetStatistics(); | 86 monitor_->ResetStatistics(); |
86 | 87 |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 | 269 |
269 EXPECT_EQ(0, acm_send_->EnableOpusDtx()); | 270 EXPECT_EQ(0, acm_send_->EnableOpusDtx()); |
270 | 271 |
271 expects[kEmptyFrame] = 1; | 272 expects[kEmptyFrame] = 1; |
272 Run(webrtc::test::ResourcePath("audio_coding/teststereo32kHz", "pcm"), | 273 Run(webrtc::test::ResourcePath("audio_coding/teststereo32kHz", "pcm"), |
273 32000, 2, out_filename, true, expects); | 274 32000, 2, out_filename, true, expects); |
274 #endif | 275 #endif |
275 } | 276 } |
276 | 277 |
277 } // namespace webrtc | 278 } // namespace webrtc |
OLD | NEW |