ref: 897870497024e4b6cbed4a6a7c1feeab438508f6
parent: 3db06394e7672f7a0667dc08a81ca638fc37b61d
parent: d556d435f3a1fff8e38783540933fba92da222f5
author: Sarah Parker <sarahparker@google.com>
date: Tue Oct 4 14:56:14 EDT 2016
Merge "Remove rate deviation metric from vp8"
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -2041,7 +2041,7 @@
fprintf(f,
"Layer\tBitrate\tAVGPsnr\tGLBPsnr\tAVPsnrP\t"
- "GLPsnrP\tVPXSSIM\t\n");
+ "GLPsnrP\tVPXSSIM\n");
for (i = 0; i < (int)cpi->oxcf.number_of_layers; ++i) {
double dr =
(double)cpi->bytes_in_layer[i] * 8.0 / 1000.0 / time_encoded;
@@ -2073,14 +2073,12 @@
fprintf(f,
"Bitrate\tAVGPsnr\tGLBPsnr\tAVPsnrP\t"
- "GLPsnrP\tVPXSSIM\tTime(us)\tRc-Err\t"
- "Abs Err\n");
+ "GLPsnrP\tVPXSSIM\n");
fprintf(f,
"%7.3f\t%7.3f\t%7.3f\t%7.3f\t%7.3f\t"
- "%7.3f\t%8.0f\t%7.2f\t%7.2f\n",
+ "%7.3f\n",
dr, cpi->total / cpi->count, total_psnr,
- cpi->totalp / cpi->count, total_psnr2, total_ssim,
- total_encode_time, rate_err, fabs(rate_err));
+ cpi->totalp / cpi->count, total_psnr2, total_ssim);
}
}
fclose(f);