diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2005-03-04 12:47:38 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2005-03-04 12:47:38 +0000 |
commit | 2f944356bf51a397aa7ba596d13763e30b4f5823 (patch) | |
tree | 17b897658a9a772374c9f6a7934635afe4836367 /libavcodec/mpegvideo.h | |
parent | 2f1e1ed3ddc80e3d0f62f4c2ac57b972365b30df (diff) | |
download | ffmpeg-2f944356bf51a397aa7ba596d13763e30b4f5823.tar.gz |
H.264: decode arbitrary frame orders and allow B-frames as references.
Originally committed as revision 4003 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 920d8c7061..a1c459e979 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -173,6 +173,8 @@ typedef struct Picture{ int frame_num; ///< h264 frame_num int pic_id; ///< h264 pic_num or long_term_pic_idx int long_ref; ///< 1->long term reference 0->short term reference + int ref_poc[2][16]; ///< h264 POCs of the frames used as reference + int ref_count[2]; ///< number of entries in ref_poc int mb_var_sum; ///< sum of MB variance for current frame int mc_mb_var_sum; ///< motion compensated MB variance for current frame |