]> git.sesse.net Git - x264/commitdiff
Fix crash with VBV + forced QP
authorAnton Mitrofanov <BugMaster@narod.ru>
Mon, 30 May 2011 20:13:22 +0000 (00:13 +0400)
committerFiona Glaser <fiona@x264.com>
Mon, 13 Jun 2011 02:48:45 +0000 (19:48 -0700)
encoder/ratecontrol.c

index 5fff35688fb373bbcca2e77546735bf9f073cbec..43763c3db9554e2fcde283a1f68bf055158bdcde 100644 (file)
@@ -1256,11 +1256,7 @@ void x264_ratecontrol_start( x264_t *h, int i_force_qp, int overhead )
     if( h->sh.i_type != SLICE_TYPE_B )
         rc->bframes = h->fenc->i_bframes;
 
-    if( i_force_qp != X264_QP_AUTO )
-    {
-        q = i_force_qp - 1;
-    }
-    else if( rc->b_abr )
+    if( rc->b_abr )
     {
         q = qscale2qp( rate_estimate_qscale( h ) );
     }
@@ -1284,6 +1280,8 @@ void x264_ratecontrol_start( x264_t *h, int i_force_qp, int overhead )
                 q -= 6*log2f( zone->f_bitrate_factor );
         }
     }
+    if( i_force_qp != X264_QP_AUTO )
+        q = i_force_qp - 1;
 
     q = x264_clip3f( q, h->param.rc.i_qp_min, h->param.rc.i_qp_max );