[SCM] libav/experimental: different fix, s->mbintra_table used only if h263_pred set. - patch by Michael Niedermayer <michaelni at gmx.at>

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


The following commit has been merged in the experimental branch:
commit 5b3438c6301c27c290227b1f8560afe1e495e47d
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Fri Jan 11 22:07:12 2002 +0000

    different fix, s->mbintra_table used only if h263_pred set. - patch by Michael Niedermayer <michaelni at gmx.at>
    
    Originally committed as revision 257 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index e55be7b..5c8ca42 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -180,13 +180,13 @@ int MPV_common_init(MpegEncContext *s)
         s->coded_block = av_mallocz(y_size);
         if (!s->coded_block)
             goto fail;
-    }
 
         /* which mb is a intra block */
         s->mbintra_table = av_mallocz(s->mb_width * s->mb_height);
         if (!s->mbintra_table)
             goto fail;
         memset(s->mbintra_table, 1, s->mb_width * s->mb_height);
+    }
     /* default structure is frame */
     s->picture_structure = PICT_FRAME;
 
@@ -209,7 +209,7 @@ int MPV_common_init(MpegEncContext *s)
     if (s->coded_block)
         free(s->coded_block);
     if (s->mbintra_table)
-        { free(s->mbintra_table);s->mbintra_table=NULL; }
+        free(s->mbintra_table);
     if (s->mbskip_table)
         free(s->mbskip_table);
     for(i=0;i<3;i++) {
@@ -234,7 +234,7 @@ void MPV_common_end(MpegEncContext *s)
         free(s->dc_val[0]);
         free(s->ac_val[0]);
         free(s->coded_block);
-        { free(s->mbintra_table);s->mbintra_table=NULL; }
+        free(s->mbintra_table);
     }
     if (s->mbskip_table)
         free(s->mbskip_table);
@@ -748,7 +748,7 @@ void MPV_decode_mb(MpegEncContext *s, DCTELEM block[6][64])
             s->last_dc[2] = 128 << s->intra_dc_precision;
         }
     }
-    else
+    else if (s->h263_pred)
         s->mbintra_table[mb_x + mb_y*s->mb_width]=1;
 
     /* update motion predictor */

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list