[SCM] libav/experimental: qprd with b frames fix

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:38:23 UTC 2013


The following commit has been merged in the experimental branch:
commit ad0d17f1f812ac551c8831162eb0745f054a6f6c
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Thu Nov 13 23:45:25 2003 +0000

    qprd with b frames fix
    
    Originally committed as revision 2518 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index e11b411..f02b094 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -3840,6 +3840,7 @@ static void encode_picture(MpegEncContext *s, int picture_number)
                         const int last_qp= backup_s.qscale;
                         int dquant, dir, qp, dc[6];
                         DCTELEM ac[6][16];
+                        const int mvdir= (best_s.mv_dir&MV_DIR_BACKWARD) ? 1 : 0;
                         
                         assert(backup_s.dquant == 0);
 
@@ -3853,7 +3854,7 @@ static void encode_picture(MpegEncContext *s, int picture_number)
                         s->mv[1][0][1] = best_s.mv[1][0][1];
                         
                         dir= s->pict_type == B_TYPE ? 2 : 1;
-                        if(last_qp + dir >= s->avctx->qmax) dir= -dir;
+                        if(last_qp + dir > s->avctx->qmax) dir= -dir;
                         for(dquant= dir; dquant<=2 && dquant>=-2; dquant += dir){
                             qp= last_qp + dquant;
                             if(qp < s->avctx->qmin || qp > s->avctx->qmax)
@@ -3867,7 +3868,7 @@ static void encode_picture(MpegEncContext *s, int picture_number)
                             }
 
                             encode_mb_hq(s, &backup_s, &best_s, MB_TYPE_INTER /* wrong but unused */, pb, pb2, tex_pb, 
-                                         &dmin, &next_block, s->mv[0][0][0], s->mv[0][0][1]);
+                                         &dmin, &next_block, s->mv[mvdir][0][0], s->mv[mvdir][0][1]);
                             if(best_s.qscale != qp){
                                 if(s->mb_intra){
                                     for(i=0; i<6; i++){

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list