]> git.sesse.net Git - x264/commitdiff
Correctly update the intra row predictor in B-frames
authorAnton Mitrofanov <BugMaster@narod.ru>
Tue, 22 Sep 2015 16:05:52 +0000 (19:05 +0300)
committerHenrik Gramner <henrik@gramner.com>
Sun, 11 Oct 2015 16:44:54 +0000 (18:44 +0200)
It was previously used but never updated from it's initialization value.

encoder/ratecontrol.c

index 78051ccc29502f4211f8f927c7160833fe1ed37e..c692691ec6dacf475f45ebd8d55ea1964a4ddbe0 100644 (file)
@@ -1586,7 +1586,7 @@ int x264_ratecontrol_mb( x264_t *h, int bits )
     h->fdec->f_row_qscale[y] = qscale;
 
     update_predictor( &rc->row_pred[0], qscale, h->fdec->i_row_satd[y], h->fdec->i_row_bits[y] );
-    if( h->sh.i_type == SLICE_TYPE_P && rc->qpm < h->fref[0][0]->f_row_qp[y] )
+    if( h->sh.i_type != SLICE_TYPE_I && rc->qpm < h->fref[0][0]->f_row_qp[y] )
         update_predictor( &rc->row_pred[1], qscale, h->fdec->i_row_satds[0][0][y], h->fdec->i_row_bits[y] );
 
     /* update ratecontrol per-mbpair in MBAFF */