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

Unified Diff: webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc

Issue 1764583003: Renamed new EncodeInternal to EncodeImpl to ensure proper backwards compatibility. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Clarified doc comments in AudioEncoder. Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc
diff --git a/webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc b/webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc
index bc68f155bb725fc928f441460d99c7bd513229eb..8cc59d615183c69dab13e986785ff013b8751384 100644
--- a/webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc
+++ b/webrtc/modules/audio_coding/acm2/rent_a_codec_unittest.cc
@@ -122,14 +122,14 @@ TEST(RentACodecTest, ExternalEncoder) {
::testing::InSequence s;
info.encoded_timestamp = 0;
EXPECT_CALL(external_encoder,
- EncodeInternal(0, rtc::ArrayView<const int16_t>(audio),
+ EncodeImpl(0, rtc::ArrayView<const int16_t>(audio),
&encoded))
.WillOnce(Return(info));
EXPECT_CALL(external_encoder, Mark("A"));
EXPECT_CALL(external_encoder, Mark("B"));
info.encoded_timestamp = 2;
EXPECT_CALL(external_encoder,
- EncodeInternal(2, rtc::ArrayView<const int16_t>(audio),
+ EncodeImpl(2, rtc::ArrayView<const int16_t>(audio),
&encoded))
.WillOnce(Return(info));
EXPECT_CALL(external_encoder, Die());

Powered by Google App Engine
This is Rietveld 408576698