Delete video_quality_measurement.

We don't use it and we don't plan on using it.

BUG=none

Review-Url: https://codereview.webrtc.org/3005993002
Cr-Commit-Position: refs/heads/master@{#19655}
This commit is contained in:
brandtr
2017-09-04 04:52:31 -07:00
committed by Commit Bot
parent ebd4f7988e
commit 83e887cdcb
4 changed files with 0 additions and 610 deletions

View File

@ -53,17 +53,6 @@ const char* ExcludeFrameTypesToStr(ExcludeFrameTypes e);
// Test configuration for a test run.
struct TestConfig {
// Name of the test. This is purely metadata and does not affect the test.
std::string name;
// More detailed description of the test. This is purely metadata and does
// not affect the test.
std::string description;
// Number of this test. Useful if multiple runs of the same test with
// different configurations shall be managed.
int test_number = 0;
// Plain name of YUV file to process without file extension.
std::string filename;
@ -74,10 +63,6 @@ struct TestConfig {
// in the YUV format.
std::string output_filename;
// Path to the directory where encoded files will be put
// (absolute or relative to the executable).
std::string output_dir = "out";
// Configurations related to networking.
NetworkingConfig networking_config;
@ -85,10 +70,6 @@ struct TestConfig {
// from packet loss.
ExcludeFrameTypes exclude_frame_types = kExcludeOnlyFirstKeyFrame;
// The length of a single frame of the input video file. Calculated out of the
// width and height according to the video format specification (i.e. YUV).
size_t frame_length_in_bytes = 0;
// Force the encoder and decoder to use a single core for processing.
// Using a single core is necessary to get a deterministic behavior for the
// encoded frames - using multiple cores will produce different encoded frames

View File

@ -120,9 +120,6 @@ void VideoProcessorIntegrationTest::SetCodecSettings(TestConfig* config,
RTC_NOTREACHED();
break;
}
config->frame_length_in_bytes =
CalcBufferSize(VideoType::kI420, width, height);
}
void VideoProcessorIntegrationTest::SetRateProfile(