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

Unified Diff: media/filters/frame_processor_unittest.cc

Issue 2343543002: MSE: Replace crossfade splicing overlap trimming. (Closed)
Patch Set: Merge and feedback. Created 4 years, 1 month 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
« no previous file with comments | « media/filters/chunk_demuxer_unittest.cc ('k') | media/filters/source_buffer_state_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/frame_processor_unittest.cc
diff --git a/media/filters/frame_processor_unittest.cc b/media/filters/frame_processor_unittest.cc
index 2919a065283433921bb826329bc39e36f699cf98..e8d0989992ec2c229ebef8c30b2ff5b772156f10 100644
--- a/media/filters/frame_processor_unittest.cc
+++ b/media/filters/frame_processor_unittest.cc
@@ -302,7 +302,7 @@ class FrameProcessorTest : public testing::TestWithParam<bool> {
switch (type) {
case DemuxerStream::AUDIO: {
ASSERT_FALSE(audio_);
- audio_.reset(new ChunkDemuxerStream(DemuxerStream::AUDIO, true, "1"));
+ audio_.reset(new ChunkDemuxerStream(DemuxerStream::AUDIO, "1"));
AudioDecoderConfig decoder_config(kCodecVorbis, kSampleFormatPlanarF32,
CHANNEL_LAYOUT_STEREO, 1000,
EmptyExtraData(), Unencrypted());
@@ -312,7 +312,7 @@ class FrameProcessorTest : public testing::TestWithParam<bool> {
}
case DemuxerStream::VIDEO: {
ASSERT_FALSE(video_);
- video_.reset(new ChunkDemuxerStream(DemuxerStream::VIDEO, true, "2"));
+ video_.reset(new ChunkDemuxerStream(DemuxerStream::VIDEO, "2"));
ASSERT_TRUE(video_->UpdateVideoConfig(TestVideoConfig::Normal(),
new MediaLog()));
break;
« no previous file with comments | « media/filters/chunk_demuxer_unittest.cc ('k') | media/filters/source_buffer_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698