Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1497)

Unified Diff: webrtc/tools/frame_analyzer/video_quality_analysis.cc

Issue 2912933002: Change from stderr to output, add new line and replace return with break. (Closed)
Patch Set: use break instead and add new line Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/frame_analyzer/video_quality_analysis.cc
diff --git a/webrtc/tools/frame_analyzer/video_quality_analysis.cc b/webrtc/tools/frame_analyzer/video_quality_analysis.cc
index 66ca469ecd587ac0e1ac98d4dc6c0b3325b6c249..c8aa71af8e66e7673d08de098d7509ec6f8619af 100644
--- a/webrtc/tools/frame_analyzer/video_quality_analysis.cc
+++ b/webrtc/tools/frame_analyzer/video_quality_analysis.cc
@@ -460,10 +460,10 @@ void PrintMaxRepeatedAndSkippedFrames(FILE* output,
}
continue;
}
- fprintf(stderr,
- "Found barcode %d in test video, which is not in reference video",
+ fprintf(output,
+ "Found barcode %d in test video, which is not in reference video\n",
it_test->first);
- return;
+ break;
}
fprintf(output, "RESULT Max_repeated: %s= %d\n", label.c_str(),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698