Chromium Code Reviews| Index: webrtc/tools/frame_analyzer/frame_analyzer.cc |
| diff --git a/webrtc/tools/frame_analyzer/frame_analyzer.cc b/webrtc/tools/frame_analyzer/frame_analyzer.cc |
| index 80201093272112d48398610342bdd64fbb363b64..62aa5b866af190dfb9124e7f64182ab8b32c5148 100644 |
| --- a/webrtc/tools/frame_analyzer/frame_analyzer.cc |
| +++ b/webrtc/tools/frame_analyzer/frame_analyzer.cc |
| @@ -41,8 +41,12 @@ |
| */ |
| int main(int argc, char** argv) { |
| std::string program_name = argv[0]; |
| - std::string usage = "Compares the output video with the initially sent video." |
| - "\nExample usage:\n" + program_name + " --stats_file=stats.txt " |
| + // TODO(mandermo) fix comment |
|
phoglund
2016/12/08 09:55:44
...yes :)
mandermo
2016/12/08 18:08:30
Done.
phoglund
2016/12/12 12:46:20
... Also remove the TODO
mandermo
2016/12/21 16:42:06
Done.
|
| + std::string usage = |
| + "Compares the output video with the initially sent video." |
| + "\nExample usage:\n" + |
| + program_name + |
| + " --stats_file=stats.txt " |
| "--reference_file=ref.yuv --test_file=test.yuv --width=320 --height=240\n" |
| "Command line flags:\n" |
| " - width(int): The width of the reference and test files. Default: -1\n" |
| @@ -66,7 +70,8 @@ int main(int argc, char** argv) { |
| parser.SetFlag("width", "-1"); |
| parser.SetFlag("height", "-1"); |
| parser.SetFlag("label", "MY_TEST"); |
| - parser.SetFlag("stats_file", "stats.txt"); |
| + parser.SetFlag("stats_file_ref", "stats_ref.txt"); |
| + parser.SetFlag("stats_file_test", "stats_test.txt"); |
| parser.SetFlag("reference_file", "ref.yuv"); |
| parser.SetFlag("test_file", "test.yuv"); |
| parser.SetFlag("help", "false"); |
| @@ -90,11 +95,13 @@ int main(int argc, char** argv) { |
| webrtc::test::RunAnalysis(parser.GetFlag("reference_file").c_str(), |
| parser.GetFlag("test_file").c_str(), |
| - parser.GetFlag("stats_file").c_str(), width, height, |
| - &results); |
| + parser.GetFlag("stats_file_ref").c_str(), |
| + parser.GetFlag("stats_file_test").c_str(), width, |
| + height, &results); |
| std::string label = parser.GetFlag("label"); |
| webrtc::test::PrintAnalysisResults(label, &results); |
| - webrtc::test::PrintMaxRepeatedAndSkippedFrames(label, |
| - parser.GetFlag("stats_file")); |
| + webrtc::test::PrintMaxRepeatedAndSkippedFrames( |
| + label, parser.GetFlag("stats_file_ref"), |
| + parser.GetFlag("stats_file_test")); |
| } |