summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorIvan Schreter <schreter@gmx.net>2009-03-04 19:37:19 +0000
committerIvan Schreter <schreter@gmx.net>2009-03-04 19:37:19 +0000
commit70e01da3bf81db51135065dd7d7d19e611e9fd2d (patch)
tree405d2ed3a0d4c156b0ee3c96d31ad07a4ab94909 /libavcodec/h264.h
parenta284d0309301a271f5114ccb83d2c31d19399a71 (diff)
Add support for ct_type to correctly detect interlaced flag
Originally committed as revision 17811 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 587f1e3f1c..fc9cef5d36 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -504,6 +504,13 @@ typedef struct H264Context{
SEI_PicStructType sei_pic_struct;
/**
+ * Bit set of clock types for fields/frames in picture timing SEI message.
+ * For each found ct_type, appropriate bit is set (e.g., bit 1 for
+ * interlaced).
+ */
+ int sei_ct_type;
+
+ /**
* dpb_output_delay in picture timing SEI message, see H.264 C.2.2
*/
int sei_dpb_output_delay;