]> granicus.if.org Git - libvpx/commitdiff
Removing unused ssim_weighted_pred_err field from FIRSTPASS_STATS.
authorDmitry Kovalev <dkovalev@google.com>
Tue, 3 Jun 2014 21:07:47 +0000 (14:07 -0700)
committerDmitry Kovalev <dkovalev@google.com>
Thu, 12 Jun 2014 18:28:54 +0000 (11:28 -0700)
Change-Id: Ia8c7e3905ac21732cb6b8099eaf8df72c7e36b73

vp9/encoder/vp9_firstpass.c
vp9/encoder/vp9_firstpass.h

index d008c63d0b31f7745fff7d8536df59586eaf56d0..0cf380195df2499d8b7cdf615ef300b6904c82c3 100644 (file)
@@ -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,
index 309638c1e47156f9c3f462f500cec39fcdf65e7b..82065213e1c3419b480a132560852233b840ce70 100644 (file)
@@ -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;