Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Side by Side Diff: webrtc/modules/audio_coding/test/opus_test.cc

Issue 2388153004: Stop using old AudioCodingModule::RegisterReceiveCodec overloads (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 WebRtcOpus_DecoderInit(opus_stereo_decoder_); 87 WebRtcOpus_DecoderInit(opus_stereo_decoder_);
88 88
89 ASSERT_TRUE(acm_receiver_.get() != NULL); 89 ASSERT_TRUE(acm_receiver_.get() != NULL);
90 EXPECT_EQ(0, acm_receiver_->InitializeReceiver()); 90 EXPECT_EQ(0, acm_receiver_->InitializeReceiver());
91 91
92 // Register Opus stereo as receiving codec. 92 // Register Opus stereo as receiving codec.
93 CodecInst opus_codec_param; 93 CodecInst opus_codec_param;
94 int codec_id = acm_receiver_->Codec("opus", 48000, 2); 94 int codec_id = acm_receiver_->Codec("opus", 48000, 2);
95 EXPECT_EQ(0, acm_receiver_->Codec(codec_id, &opus_codec_param)); 95 EXPECT_EQ(0, acm_receiver_->Codec(codec_id, &opus_codec_param));
96 payload_type_ = opus_codec_param.pltype; 96 payload_type_ = opus_codec_param.pltype;
97 EXPECT_EQ(0, acm_receiver_->RegisterReceiveCodec(opus_codec_param)); 97 EXPECT_EQ(true,
98 acm_receiver_->RegisterReceiveCodec(
99 opus_codec_param.pltype, CodecInstToSdp(opus_codec_param)));
98 100
99 // Create and connect the channel. 101 // Create and connect the channel.
100 channel_a2b_ = new TestPackStereo; 102 channel_a2b_ = new TestPackStereo;
101 channel_a2b_->RegisterReceiverACM(acm_receiver_.get()); 103 channel_a2b_->RegisterReceiverACM(acm_receiver_.get());
102 104
103 // 105 //
104 // Test Stereo. 106 // Test Stereo.
105 // 107 //
106 108
107 channel_a2b_->set_codec_mode(kStereo); 109 channel_a2b_->set_codec_mode(kStereo);
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 // 154 //
153 // Test Mono. 155 // Test Mono.
154 // 156 //
155 channel_a2b_->set_codec_mode(kMono); 157 channel_a2b_->set_codec_mode(kMono);
156 audio_channels = 1; 158 audio_channels = 1;
157 test_cntr++; 159 test_cntr++;
158 OpenOutFile(test_cntr); 160 OpenOutFile(test_cntr);
159 161
160 // Register Opus mono as receiving codec. 162 // Register Opus mono as receiving codec.
161 opus_codec_param.channels = 1; 163 opus_codec_param.channels = 1;
162 EXPECT_EQ(0, acm_receiver_->RegisterReceiveCodec(opus_codec_param)); 164 EXPECT_EQ(true,
165 acm_receiver_->RegisterReceiveCodec(
166 opus_codec_param.pltype, CodecInstToSdp(opus_codec_param)));
163 167
164 // Run Opus with 2.5 ms frame size. 168 // Run Opus with 2.5 ms frame size.
165 Run(channel_a2b_, audio_channels, 32000, 120); 169 Run(channel_a2b_, audio_channels, 32000, 120);
166 170
167 // Run Opus with 5 ms frame size. 171 // Run Opus with 5 ms frame size.
168 Run(channel_a2b_, audio_channels, 32000, 240); 172 Run(channel_a2b_, audio_channels, 32000, 240);
169 173
170 // Run Opus with 10 ms frame size. 174 // Run Opus with 10 ms frame size.
171 Run(channel_a2b_, audio_channels, 32000, 480); 175 Run(channel_a2b_, audio_channels, 32000, 480);
172 176
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 out_file_.Open(file_name, 48000, "wb"); 381 out_file_.Open(file_name, 48000, "wb");
378 file_stream.str(""); 382 file_stream.str("");
379 file_name = file_stream.str(); 383 file_name = file_stream.str();
380 file_stream << webrtc::test::OutputPath() << "opusstandalone_out_" 384 file_stream << webrtc::test::OutputPath() << "opusstandalone_out_"
381 << test_number << ".pcm"; 385 << test_number << ".pcm";
382 file_name = file_stream.str(); 386 file_name = file_stream.str();
383 out_file_standalone_.Open(file_name, 48000, "wb"); 387 out_file_standalone_.Open(file_name, 48000, "wb");
384 } 388 }
385 389
386 } // namespace webrtc 390 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698