shithub: libvpx

Download patch

ref: fc43938d5e1c965052e623758b03c75444fa3c9f
parent: 903ba1a1ab934c468153a3a97f1f337e20afdeae
parent: 1699d6bd53a81d8844d297f98ec752ff8551ffff
author: Deb Mukherjee <[email protected]>
date: Tue Jan 14 08:57:17 EST 2014

Merge "Minor fix on an assert"

--- a/vp9/encoder/vp9_onyx_if.c
+++ b/vp9/encoder/vp9_onyx_if.c
@@ -3420,7 +3420,7 @@
 #endif
       frames_to_arf = cpi->rc.frames_till_gf_update_due;
 
-    assert(frames_to_arf < cpi->rc.frames_to_key);
+    assert(frames_to_arf <= cpi->rc.frames_to_key);
 
     if ((cpi->source = vp9_lookahead_peek(cpi->lookahead, frames_to_arf))) {
 #if CONFIG_MULTIPLE_ARF
--- a/vp9/encoder/vp9_ratectrl.c
+++ b/vp9/encoder/vp9_ratectrl.c
@@ -965,5 +965,5 @@
 
 void vp9_rc_postencode_update_drop_frame(VP9_COMP *cpi) {
   cpi->rc.frames_since_key++;
-  // cpi->rc.frames_to_key--;
+  cpi->rc.frames_to_key--;
 }