shithub: libvpx

Download patch

ref: 53d8e9dc97651e157e594b1f195f342dea4b53cb
parent: 4e149bb447b1868f42bf17530f618dfa0e84ffe5
author: Fritz Koenig <frkoenig@google.com>
date: Tue Jan 25 10:41:41 EST 2011

Fix for incorrect variable declaration.

Commit 336aa0b7da8a35ba57400ce92fc016fc7fb35233 incorrectly
declared current_pos as and int, when it should have been
a FIRSTPASS_STATS pointer.

Change-Id: I0a51c7a86ebba8546c95dd5d9d1c1143d4613e40

--- 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;