diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-01-20 20:37:24 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-01-20 20:37:24 +0000 |
commit | f943e1383d7e2730c668ab28c2f1b181a944919e (patch) | |
tree | bed3d21871d86e4bf2173bb5e6689d31c550f4cb /libavcodec/mpegvideo.h | |
parent | d0162d09d0ab0f5d6e7ed2834367cccefce69738 (diff) | |
download | ffmpeg-f943e1383d7e2730c668ab28c2f1b181a944919e.tar.gz |
trying to fix mb skip bug in mpeg1/2 if slices are not used
Originally committed as revision 1482 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 9a1fea3de6..8408507071 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -229,6 +229,8 @@ typedef struct MpegEncContext { UINT8 *coded_block; /* used for coded block pattern prediction (msmpeg4v3, wmv1)*/ INT16 (*ac_val[3])[16]; /* used for for mpeg4 AC prediction, all 3 arrays must be continuous */ int ac_pred; + uint8_t *prev_pict_types; /* previous picture types in bitstream order, used for mb skip */ +#define PREV_PICT_TYPES_BUFFER_SIZE 256 int mb_skiped; /* MUST BE SET only during DECODING */ UINT8 *mbskip_table; /* used to avoid copy if macroblock skipped (for black regions for example) and used for b-frame encoding & decoding (contains skip table of next P Frame) */ |