]> granicus.if.org Git - libx264/commitdiff
Cosmetic: fix C99-ism
authorFiona Glaser <fiona@x264.com>
Thu, 5 Jun 2008 17:32:05 +0000 (11:32 -0600)
committerFiona Glaser <fiona@x264.com>
Thu, 5 Jun 2008 17:32:05 +0000 (11:32 -0600)
encoder/ratecontrol.c

index a049f74a7f4c79b43e2e5de4eb847b6aa95a6138..998371436810d04dc925854ca0968a3e87e8772e 100644 (file)
@@ -1794,6 +1794,7 @@ static int init_pass2( x264_t *h )
         double weight_sum = 0;
         double cplx_sum = 0;
         double weight = 1.0;
+        double gaussian_weight;
         int j;
         /* weighted average of cplx of future frames */
         for(j=1; j<cplxblur*2 && j<rcc->num_entries-i; j++){
@@ -1801,7 +1802,7 @@ static int init_pass2( x264_t *h )
             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
             if(weight < .0001)
                 break;
-            double gaussian_weight = weight * exp(-j*j/200.0);
+            gaussian_weight = weight * exp(-j*j/200.0);
             weight_sum += gaussian_weight;
             cplx_sum += gaussian_weight * (qscale2bits(rcj, 1) - rcj->misc_bits);
         }
@@ -1809,7 +1810,7 @@ static int init_pass2( x264_t *h )
         weight = 1.0;
         for(j=0; j<=cplxblur*2 && j<=i; j++){
             ratecontrol_entry_t *rcj = &rcc->entry[i-j];
-            double gaussian_weight = weight * exp(-j*j/200.0);
+            gaussian_weight = weight * exp(-j*j/200.0);
             weight_sum += gaussian_weight;
             cplx_sum += gaussian_weight * (qscale2bits(rcj, 1) - rcj->misc_bits);
             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );