shithub: libvpx

Download patch

ref: 2caa36aa4fce2bb7e3f8e43624cab94b78bc8950
parent: 907e98fbb5d66133e57dd3b499d3d7d77420a7ce
parent: 53d8e9dc97651e157e594b1f195f342dea4b53cb
author: Paul Wilkins <paulwilkins@google.com>
date: Tue Jan 25 20:53:53 EST 2011

Merge "Fix for incorrect variable declaration."

--- a/vp8/encoder/firstpass.c
+++ b/vp8/encoder/firstpass.c
@@ -2423,7 +2423,7 @@
     if (cpi->oxcf.auto_key
         && cpi->frames_to_key > (int)cpi->key_frame_frequency )
     {
-        int current_pos = cpi->stats_in;
+        FIRSTPASS_STATS *current_pos = cpi->stats_in;
         FIRSTPASS_STATS tmp_frame;
 
         cpi->frames_to_key /= 2;
--