From: Dmitry Kovalev Date: Tue, 3 Jun 2014 21:07:47 +0000 (-0700) Subject: Removing unused ssim_weighted_pred_err field from FIRSTPASS_STATS. X-Git-Tag: v1.4.0~1411^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eaeda536a40da1ed7737f96bdc8e9a7d926cecdf;p=libvpx Removing unused ssim_weighted_pred_err field from FIRSTPASS_STATS. Change-Id: Ia8c7e3905ac21732cb6b8099eaf8df72c7e36b73 --- diff --git a/vp9/encoder/vp9_firstpass.c b/vp9/encoder/vp9_firstpass.c index d008c63d0..0cf380195 100644 --- a/vp9/encoder/vp9_firstpass.c +++ b/vp9/encoder/vp9_firstpass.c @@ -137,14 +137,13 @@ static void output_stats(FIRSTPASS_STATS *stats, FILE *fpfile; fpfile = fopen("firstpass.stt", "a"); - fprintf(fpfile, "%12.0f %12.0f %12.0f %12.0f %12.0f %12.4f %12.4f" + fprintf(fpfile, "%12.0f %12.0f %12.0f %12.0f %12.4f %12.4f" "%12.4f %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f" "%12.0f %12.0f %12.4f %12.0f %12.0f %12.4f\n", stats->frame, stats->intra_error, stats->coded_error, stats->sr_coded_error, - stats->ssim_weighted_pred_err, stats->pcnt_inter, stats->pcnt_motion, stats->pcnt_second_ref, diff --git a/vp9/encoder/vp9_firstpass.h b/vp9/encoder/vp9_firstpass.h index 309638c1e..82065213e 100644 --- a/vp9/encoder/vp9_firstpass.h +++ b/vp9/encoder/vp9_firstpass.h @@ -22,7 +22,6 @@ typedef struct { double intra_error; double coded_error; double sr_coded_error; - double ssim_weighted_pred_err; double pcnt_inter; double pcnt_motion; double pcnt_second_ref;