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

Side by Side Diff: webrtc/modules/audio_coding/neteq/decoder_database_unittest.cc

Issue 1868143002: Convert CNG into C++ and remove it from AudioDecoder (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Converted WebRtcCng to C++ Created 4 years, 8 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) 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 EXPECT_TRUE(changed); 226 EXPECT_TRUE(changed);
227 decoder = db.GetActiveDecoder(); 227 decoder = db.GetActiveDecoder();
228 ASSERT_FALSE(decoder == NULL); // Should get a decoder here. 228 ASSERT_FALSE(decoder == NULL); // Should get a decoder here.
229 229
230 // Remove the active decoder, and verify that the active becomes NULL. 230 // Remove the active decoder, and verify that the active becomes NULL.
231 EXPECT_EQ(DecoderDatabase::kOK, db.Remove(103)); 231 EXPECT_EQ(DecoderDatabase::kOK, db.Remove(103));
232 EXPECT_EQ(NULL, db.GetActiveDecoder()); 232 EXPECT_EQ(NULL, db.GetActiveDecoder());
233 233
234 // Set active CNG codec. 234 // Set active CNG codec.
235 EXPECT_EQ(DecoderDatabase::kOK, db.SetActiveCngDecoder(13)); 235 EXPECT_EQ(DecoderDatabase::kOK, db.SetActiveCngDecoder(13));
236 decoder = db.GetActiveCngDecoder(); 236 ComfortNoiseDecoder* cng = db.GetActiveCngDecoder();
237 ASSERT_FALSE(decoder == NULL); // Should get a decoder here. 237 ASSERT_FALSE(cng == NULL); // Should get a decoder here.
238 238
239 // Remove the active CNG decoder, and verify that the active becomes NULL. 239 // Remove the active CNG decoder, and verify that the active becomes NULL.
240 EXPECT_EQ(DecoderDatabase::kOK, db.Remove(13)); 240 EXPECT_EQ(DecoderDatabase::kOK, db.Remove(13));
241 EXPECT_EQ(NULL, db.GetActiveCngDecoder()); 241 EXPECT_EQ(NULL, db.GetActiveCngDecoder());
242 242
243 // Try to set non-existing codecs as active. 243 // Try to set non-existing codecs as active.
244 EXPECT_EQ(DecoderDatabase::kDecoderNotFound, 244 EXPECT_EQ(DecoderDatabase::kDecoderNotFound,
245 db.SetActiveDecoder(17, &changed)); 245 db.SetActiveDecoder(17, &changed));
246 EXPECT_EQ(DecoderDatabase::kDecoderNotFound, 246 EXPECT_EQ(DecoderDatabase::kDecoderNotFound,
247 db.SetActiveCngDecoder(17)); 247 db.SetActiveCngDecoder(17));
248 } 248 }
249 } // namespace webrtc 249 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698