Fix format string in video_quality_analysis.cc.
Fixes compilation errors on Android and Linux32 targets. TBR=kjellander@webrtc.org BUG= Review URL: https://webrtc-codereview.appspot.com/2196005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4717 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
182d025d94
commit
319c98d663
@ -281,8 +281,8 @@ void PrintMaxRepeatedAndSkippedFrames(const std::string& label,
|
||||
void PrintAnalysisResults(const std::string& label, ResultsContainer* results) {
|
||||
std::vector<AnalysisResult>::iterator iter;
|
||||
|
||||
fprintf(stdout, "RESULT Unique_frames_count: %s= %ld\n", label.c_str(),
|
||||
results->frames.size());
|
||||
fprintf(stdout, "RESULT Unique_frames_count: %s= %u\n", label.c_str(),
|
||||
static_cast<unsigned int>(results->frames.size()));
|
||||
|
||||
if (results->frames.size() > 0u) {
|
||||
fprintf(stdout, "RESULT PSNR: %s= [", label.c_str());
|
||||
|
Loading…
x
Reference in New Issue
Block a user