summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-10-02 00:47:54 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-10-02 05:44:42 +0200
commit86491c5dbc160a10926aa1cf4fa36864b09dfb31 (patch)
tree20ad5400391310f32b272fe10a26397b09ee739e
parent3e0dbb8a7ed118308cdddac803063b2cd09de37b (diff)
downloadffmpeg-86491c5dbc160a10926aa1cf4fa36864b09dfb31.tar.gz
h264: increase ref_poc size to 32 as it can be per field.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 8c851ef5a81fb0429453c43fdcfc974ce1b6e447)
-rw-r--r--libavcodec/mpegvideo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index 0b233d0a20..1b8483f9d5 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -123,7 +123,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/fields 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 seperate fields