diff --git a/modules/video_coding/codecs/test/test_config.h b/modules/video_coding/codecs/test/test_config.h index 70cc51c222..2ac7bf23e8 100644 --- a/modules/video_coding/codecs/test/test_config.h +++ b/modules/video_coding/codecs/test/test_config.h @@ -46,21 +46,14 @@ struct TestConfig { void ConfigureSimulcast(); size_t NumberOfCores() const; - size_t NumberOfTemporalLayers() const; - size_t NumberOfSpatialLayers() const; - size_t NumberOfSimulcastStreams() const; std::vector 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 @@ struct TestConfig { // 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 54b6f6cda5..aaaae55860 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 @@ class VideoProcessorIntegrationTestLibvpx 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 44cf1dc749..1a6704d36c 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 @@ class VideoProcessorIntegrationTestMediaCodec 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 8475080ad7..e83c22a0c1 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 @@ class VideoProcessorIntegrationTestOpenH264 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 0cd6916bcb..0dae975a80 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 @@ class VideoProcessorIntegrationTestParameterized 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 3b94386ea8..fda9cc9f36 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 @@ class VideoProcessorIntegrationTestVideoToolbox 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;