From: Michael Niedermayer Date: Sat, 24 Aug 2002 13:24:43 +0000 (+0000) Subject: error concealment needs the mbintra_table so it should allways be allocated X-Git-Tag: v0.5~17407 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7806197db2ffb9024d0550ab02b28fe9963e8d4b;p=platform%2Fupstream%2Flibav.git error concealment needs the mbintra_table so it should allways be allocated Originally committed as revision 861 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 9352b96..04b4e39 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -262,10 +262,6 @@ int MPV_common_init(MpegEncContext *s) /* cbp values */ CHECKED_ALLOCZ(s->coded_block, y_size); - - /* which mb is a intra block */ - CHECKED_ALLOCZ(s->mbintra_table, s->mb_num); - memset(s->mbintra_table, 1, s->mb_num); /* divx501 bitstream reorder buffer */ CHECKED_ALLOCZ(s->bitstream_buffer, BITSTREAM_BUFFER_SIZE); @@ -276,6 +272,10 @@ int MPV_common_init(MpegEncContext *s) } CHECKED_ALLOCZ(s->qscale_table , s->mb_num * sizeof(UINT8)) + /* which mb is a intra block */ + CHECKED_ALLOCZ(s->mbintra_table, s->mb_num); + memset(s->mbintra_table, 1, s->mb_num); + /* default structure is frame */ s->picture_structure = PICT_FRAME;