Remove VideoProcessor interface.

BUG=webrtc:6634

Review-Url: https://codereview.webrtc.org/2994613002
Cr-Commit-Position: refs/heads/master@{#19256}
This commit is contained in:
brandtr
2017-08-07 08:12:33 -07:00
committed by Commit Bot
parent 73c0eb5014
commit c409552052
5 changed files with 61 additions and 78 deletions

View File

@ -506,12 +506,10 @@ int main(int argc, char* argv[]) {
if (FLAGS_disable_fixed_random_seed) {
packet_manipulator.InitializeRandomSeed(time(NULL));
}
webrtc::test::VideoProcessor* processor =
new webrtc::test::VideoProcessorImpl(
encoder, decoder, &frame_reader, &frame_writer, &packet_manipulator,
config, &stats, nullptr /* source_frame_writer */,
nullptr /* encoded_frame_writer */,
nullptr /* decoded_frame_writer */);
webrtc::test::VideoProcessor* processor = new webrtc::test::VideoProcessor(
encoder, decoder, &frame_reader, &frame_writer, &packet_manipulator,
config, &stats, nullptr /* source_frame_writer */,
nullptr /* encoded_frame_writer */, nullptr /* decoded_frame_writer */);
processor->Init();
int frame_number = 0;