| Index: webrtc/modules/video_coding/codecs/test/videoprocessor_unittest.cc
|
| diff --git a/webrtc/modules/video_coding/codecs/test/videoprocessor_unittest.cc b/webrtc/modules/video_coding/codecs/test/videoprocessor_unittest.cc
|
| index efc60c10d7b3f19fafacfaee8eafa4352c2173f6..9846fbcfdef20535e46e80efe5c3f3fe94ddc8e6 100644
|
| --- a/webrtc/modules/video_coding/codecs/test/videoprocessor_unittest.cc
|
| +++ b/webrtc/modules/video_coding/codecs/test/videoprocessor_unittest.cc
|
| @@ -69,9 +69,7 @@
|
| ExpectInit();
|
| VideoProcessorImpl video_processor(
|
| &encoder_mock_, &decoder_mock_, &frame_reader_mock_, &frame_writer_mock_,
|
| - &packet_manipulator_mock_, config_, &stats_,
|
| - nullptr /* source_frame_writer */, nullptr /* encoded_frame_writer */,
|
| - nullptr /* decoded_frame_writer */);
|
| + &packet_manipulator_mock_, config_, &stats_);
|
| ASSERT_TRUE(video_processor.Init());
|
| }
|
|
|
| @@ -84,9 +82,7 @@
|
| // be more than initialized...
|
| VideoProcessorImpl video_processor(
|
| &encoder_mock_, &decoder_mock_, &frame_reader_mock_, &frame_writer_mock_,
|
| - &packet_manipulator_mock_, config_, &stats_,
|
| - nullptr /* source_frame_writer */, nullptr /* encoded_frame_writer */,
|
| - nullptr /* decoded_frame_writer */);
|
| + &packet_manipulator_mock_, config_, &stats_);
|
| ASSERT_TRUE(video_processor.Init());
|
| video_processor.ProcessFrame(0);
|
| }
|
|
|