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

Unified Diff: webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame_unittest.cc

Issue 2342443005: Moved Opus-specific payload splitting into AudioDecoderOpus. (Closed)
Patch Set: Some small fixes. Created 4 years, 3 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/codecs/legacy_encoded_audio_frame_unittest.cc
diff --git a/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame_unittest.cc b/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame_unittest.cc
index 2a4d9ed9f2522eb586bfc158491a2d649dd63b11..9a075639afc16c5d4a871f3a186a37232251ee9f 100644
--- a/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame_unittest.cc
+++ b/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame_unittest.cc
@@ -123,7 +123,7 @@ TEST_P(SplitBySamplesTest, PayloadSizes) {
const auto results = LegacyEncodedAudioFrame::SplitBySamples(
nullptr,
generate_payload(expected_split.payload_size_ms * bytes_per_ms_),
- kBaseTimestamp, true, bytes_per_ms_, samples_per_ms_);
+ kBaseTimestamp, bytes_per_ms_, samples_per_ms_);
EXPECT_EQ(expected_split.num_frames, results.size());
uint32_t expected_timestamp = kBaseTimestamp;

Powered by Google App Engine
This is Rietveld 408576698