Remove unused field |output_filename| from TestConfig.

Bug: webrtc:8448
Change-Id: I8bb35f6d66112c6590564815e10cb4ec7b516268
Reviewed-on: https://webrtc-review.googlesource.com/49820
Reviewed-by: Sergey Silkin <ssilkin@webrtc.org>
Commit-Queue: Rasmus Brandt <brandtr@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#21960}
diff --git a/modules/video_coding/codecs/test/test_config.h b/modules/video_coding/codecs/test/test_config.h
index 70cc51c..2ac7bf2 100644
--- a/modules/video_coding/codecs/test/test_config.h
+++ b/modules/video_coding/codecs/test/test_config.h
@@ -46,21 +46,14 @@
   void ConfigureSimulcast();
 
   size_t NumberOfCores() const;
-
   size_t NumberOfTemporalLayers() const;
-
   size_t NumberOfSpatialLayers() const;
-
   size_t NumberOfSimulcastStreams() const;
 
   std::vector<FrameType> FrameTypeForFrame(size_t frame_idx) const;
-
   std::string ToString() const;
-
   std::string CodecName() const;
-
   std::string FilenameWithParams() const;
-
   bool IsAsyncCodec() const;
 
   // Plain name of YUV file to process without file extension.
@@ -69,10 +62,6 @@
   // File to process. This must be a video file in the YUV format.
   std::string input_filename;
 
-  // File to write to during processing for the test. Will be a video file in
-  // the YUV format.
-  std::string output_filename;
-
   // Number of frames to process.
   size_t num_frames = 0;
 
diff --git a/modules/video_coding/codecs/test/videoprocessor_integrationtest_libvpx.cc b/modules/video_coding/codecs/test/videoprocessor_integrationtest_libvpx.cc
index 54b6f6c..aaaae55 100644
--- a/modules/video_coding/codecs/test/videoprocessor_integrationtest_libvpx.cc
+++ b/modules/video_coding/codecs/test/videoprocessor_integrationtest_libvpx.cc
@@ -40,8 +40,6 @@
   VideoProcessorIntegrationTestLibvpx() {
     config_.filename = "foreman_cif";
     config_.input_filename = ResourcePath(config_.filename, "yuv");
-    config_.output_filename =
-        TempFilename(OutputPath(), "videoprocessor_integrationtest_libvpx");
     config_.num_frames = kNumFramesLong;
     // Only allow encoder/decoder to use single core, for predictability.
     config_.use_single_core = true;
diff --git a/modules/video_coding/codecs/test/videoprocessor_integrationtest_mediacodec.cc b/modules/video_coding/codecs/test/videoprocessor_integrationtest_mediacodec.cc
index 44cf1dc..1a6704d 100644
--- a/modules/video_coding/codecs/test/videoprocessor_integrationtest_mediacodec.cc
+++ b/modules/video_coding/codecs/test/videoprocessor_integrationtest_mediacodec.cc
@@ -30,8 +30,6 @@
   VideoProcessorIntegrationTestMediaCodec() {
     config_.filename = "foreman_cif";
     config_.input_filename = ResourcePath(config_.filename, "yuv");
-    config_.output_filename =
-        TempFilename(OutputPath(), "videoprocessor_integrationtest_mediacodec");
     config_.num_frames = kForemanNumFrames;
     config_.hw_encoder = true;
     config_.hw_decoder = true;
diff --git a/modules/video_coding/codecs/test/videoprocessor_integrationtest_openh264.cc b/modules/video_coding/codecs/test/videoprocessor_integrationtest_openh264.cc
index 8475080..e83c22a 100644
--- a/modules/video_coding/codecs/test/videoprocessor_integrationtest_openh264.cc
+++ b/modules/video_coding/codecs/test/videoprocessor_integrationtest_openh264.cc
@@ -37,8 +37,6 @@
   VideoProcessorIntegrationTestOpenH264() {
     config_.filename = "foreman_cif";
     config_.input_filename = ResourcePath(config_.filename, "yuv");
-    config_.output_filename =
-        TempFilename(OutputPath(), "videoprocessor_integrationtest_libvpx");
     config_.num_frames = kNumFrames;
     // Only allow encoder/decoder to use single core, for predictability.
     config_.use_single_core = true;
diff --git a/modules/video_coding/codecs/test/videoprocessor_integrationtest_parameterized.cc b/modules/video_coding/codecs/test/videoprocessor_integrationtest_parameterized.cc
index 0cd6916..0dae975 100644
--- a/modules/video_coding/codecs/test/videoprocessor_integrationtest_parameterized.cc
+++ b/modules/video_coding/codecs/test/videoprocessor_integrationtest_parameterized.cc
@@ -61,8 +61,6 @@
                const std::string& filename) {
     config_.filename = filename;
     config_.input_filename = ResourcePath(filename, "yuv");
-    config_.output_filename =
-        TempFilename(OutputPath(), "plot_videoprocessor_integrationtest");
     config_.use_single_core = kUseSingleCore;
     config_.measure_cpu = kMeasureCpu;
     config_.hw_encoder = hw_codec_;
diff --git a/modules/video_coding/codecs/test/videoprocessor_integrationtest_videotoolbox.cc b/modules/video_coding/codecs/test/videoprocessor_integrationtest_videotoolbox.cc
index 3b94386..fda9cc9 100644
--- a/modules/video_coding/codecs/test/videoprocessor_integrationtest_videotoolbox.cc
+++ b/modules/video_coding/codecs/test/videoprocessor_integrationtest_videotoolbox.cc
@@ -29,8 +29,6 @@
   VideoProcessorIntegrationTestVideoToolbox() {
     config_.filename = "foreman_cif";
     config_.input_filename = ResourcePath(config_.filename, "yuv");
-    config_.output_filename = TempFilename(
-        OutputPath(), "videoprocessor_integrationtest_videotoolbox");
     config_.num_frames = kForemanNumFrames;
     config_.hw_encoder = true;
     config_.hw_decoder = true;