shithub: libvpx

Download patch

ref: eed2ce58e3f5738894e9ae26c1958f3cc45cb80a
parent: 6f5189c044cf52171822f6df1ad6ae4a3bcaf2c4
parent: 48140167cdee252ed8ba00bf407e3563364d97dd
author: John Koleszar <jkoleszar@google.com>
date: Fri Mar 4 00:28:38 EST 2011

Merge "Fix counter of fixed keyframe distance"

--- a/vp8/vp8_cx_iface.c
+++ b/vp8/vp8_cx_iface.c
@@ -716,7 +716,7 @@
         if (++ctx->fixed_kf_cntr > ctx->cfg.kf_min_dist)
         {
             flags |= VPX_EFLAG_FORCE_KF;
-            ctx->fixed_kf_cntr = 0;
+            ctx->fixed_kf_cntr = 1;
         }
     }