diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-08-10 02:38:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-08-10 02:38:51 +0000 |
commit | d50cdd82de2ce4084d0a73f199da6281e9c5b8a9 (patch) | |
tree | 16155d1cc0d93a20769580e5c679441e86e8f5c8 /libavcodec/h264.h | |
parent | d9d9a8c028102b64b81ce4cf7ad6014cc7be62ad (diff) | |
download | ffmpeg-d50cdd82de2ce4084d0a73f199da6281e9c5b8a9.tar.gz |
Use the correct reference tables for interlaced MBAFF MBs in the loop filter.
Fixes at least
CAMP_MOT_MBAFF_L30
CAMP_MOT_MBAFF_L31
FRExt/FREXT01_JVC_D
Originally committed as revision 14680 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 93e7856f62..1f1cb1c5d6 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -346,7 +346,7 @@ typedef struct H264Context{ Picture ref_list[2][48]; /**< 0..15: frame refs, 16..47: mbaff field refs. Reordered version of default_ref_list according to picture reordering in slice header */ - int ref2frm[16][2][48+2]; ///< reference to frame number lists, used in the loop filter, the first 2 are for -2,-1 + int ref2frm[16][2][64]; ///< reference to frame number lists, used in the loop filter, the first 2 are for -2,-1 Picture *delayed_pic[MAX_DELAYED_PIC_COUNT+2]; //FIXME size? int outputed_poc; |