Sync PSNRs order with VP9 Change-Id: I4eb1800c3fca7ea76d0e44dd44f2a3edbf209518
diff --git a/av1/encoder/encoder.c b/av1/encoder/encoder.c index 707ec22..a55d33e 100644 --- a/av1/encoder/encoder.c +++ b/av1/encoder/encoder.c
@@ -3214,21 +3214,21 @@ const double total_ssim = 100 * pow(cpi->summed_quality / cpi->summed_weights, 8.0); snprintf(headings, sizeof(headings), - "Bitrate\tAVGPsnr\tGLBPsnr\tAVPsnrY\tGLPsnrP\t" + "Bitrate\tAVGPsnr\tGLBPsnr\tAVPsnrP\tGLPsnrP\t" "AOMSSIM\tVPSSIMP\tFASTSIM\tPSNRHVS\t" "WstPsnr\tWstSsim\tWstFast\tWstHVS\t" - "APsnrCb\tAPsnrCr"); + "AVPsrnY\tAPsnrCb\tAPsnrCr"); snprintf(results, sizeof(results), "%7.2f\t%7.3f\t%7.3f\t%7.3f\t%7.3f\t" "%7.3f\t%7.3f\t%7.3f\t%7.3f\t" "%7.3f\t%7.3f\t%7.3f\t%7.3f\t" - "%7.3f\t%7.3f", + "%7.3f\t%7.3f\t%7.3f", dr, cpi->psnr.stat[ALL] / cpi->count, total_psnr, - cpi->psnr.stat[Y] / cpi->count, total_psnr, total_ssim, + cpi->psnr.stat[ALL] / cpi->count, total_psnr, total_ssim, total_ssim, cpi->fastssim.stat[ALL] / cpi->count, cpi->psnrhvs.stat[ALL] / cpi->count, cpi->psnr.worst, cpi->worst_ssim, cpi->fastssim.worst, cpi->psnrhvs.worst, - cpi->psnr.stat[U] / cpi->count, + cpi->psnr.stat[Y] / cpi->count, cpi->psnr.stat[U] / cpi->count, cpi->psnr.stat[V] / cpi->count); if (cpi->b_calculate_blockiness) {