summaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2012-03-13 15:21:07 -0700
committerRonald S. Bultje <rsbultje@gmail.com>2012-03-14 13:24:45 -0700
commit48cbe4b092113eae0b3e5d6a08b59027f913a884 (patch)
treec152863993cca353ed44d92a8615bf4705dfef87 /libavcodec/mpegvideo.h
parent86020073dbb9a3a9d1fbb76345b2ca29ba1f13d2 (diff)
downloadffmpeg-streaming-48cbe4b092113eae0b3e5d6a08b59027f913a884.zip
ffmpeg-streaming-48cbe4b092113eae0b3e5d6a08b59027f913a884.tar.gz
h264: increase reference poc list from 16 to 32.
Interlaced images can have 32 references (16 per field), so limiting the array size to 16 leads to invalid writes. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index 9d9d870..8f788a7 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -126,7 +126,7 @@ typedef struct Picture{
int pic_id; /**< h264 pic_num (short -> no wrap version of pic_num,
pic_num & max_pic_num; long -> long_pic_num) */
int long_ref; ///< 1->long term reference 0->short term reference
- int ref_poc[2][2][16]; ///< h264 POCs of the frames used as reference (FIXME need per slice)
+ int ref_poc[2][2][32]; ///< h264 POCs of the frames used as reference (FIXME need per slice)
int ref_count[2][2]; ///< number of entries in ref_poc (FIXME need per slice)
int mbaff; ///< h264 1 -> MBAFF frame 0-> not MBAFF
int field_picture; ///< whether or not the picture was encoded in separate fields
OpenPOWER on IntegriCloud