diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-07-21 22:19:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-07-21 22:19:06 +0000 |
commit | c32867b5b604b9d39c72014a380aafedb8681f40 (patch) | |
tree | 4de37c59be31741e3fe88b4af96c2b17408fd2fb /libavcodec/h264.h | |
parent | b7d49373d23ad56af5e7db89ced78bdc972328f9 (diff) | |
download | ffmpeg-c32867b5b604b9d39c72014a380aafedb8681f40.tar.gz |
Loop filtering with multiple slice types fix.
Fixes at least:
CABAST3_Sony_E.jsv
CABASTBR3_Sony_A.jsv
CABASTBR3_Sony_B.jsv
Originally committed as revision 14331 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 edc7e5289c..dc18d20c38 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -337,7 +337,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[2][48+2]; ///< reference to frame number lists, used in the loop filter, the first 2 are for -2,-1 + int ref2frm[16][2][48+2]; ///< 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; |