Merge "Fix formatting in internal stats for vp8 and vp9"

This commit is contained in:
Yaowu Xu
2016-09-01 23:55:23 +00:00
committed by Gerrit Code Review
2 changed files with 7 additions and 5 deletions

View File

@@ -2072,11 +2072,11 @@ void vp8_remove_compressor(VP8_COMP **ptr) {
fprintf(f,
"Bitrate\tAVGPsnr\tGLBPsnr\tAVPsnrP\t"
"GLPsnrP\tVPXSSIM\t Time(us) Rc-Err "
"GLPsnrP\tVPXSSIM\tTime(us)\tRc-Err\t"
"Abs Err\n");
fprintf(f,
"%7.3f\t%7.3f\t%7.3f\t%7.3f\t%7.3f\t"
"%7.3f\t%8.0f %7.2f %7.2f\n",
"%7.3f\t%8.0f\t%7.2f\t%7.2f\n",
dr, cpi->total / cpi->count, total_psnr,
cpi->totalp / cpi->count, total_psnr2, total_ssim,
total_encode_time, rate_err, fabs(rate_err));

View File

@@ -1984,9 +1984,11 @@ void vp9_remove_compressor(VP9_COMP *cpi) {
SNPRINT2(results, "\t%7.3f", consistency);
SNPRINT2(results, "\t%7.3f", cpi->worst_consistency);
}
fprintf(f, "%s\t Time Rc-Err Abs Err\n", headings);
fprintf(f, "%s\t%8.0f %7.2f %7.2f\n", results, total_encode_time,
rate_err, fabs(rate_err));
SNPRINT(headings, "\tTime\tRcErr\tAbsErr");
SNPRINT2(results, "\t%7.3f", total_encode_time);
SNPRINT2(results, "\t%7.3f", rate_err);
SNPRINT2(results, "\t%7.3f", fabs(rate_err));
}
fclose(f);