summaryrefslogtreecommitdiff
path: root/libavcodec/h264data.h
diff options
context:
space:
mode:
authorAndreas Öman <andreas@lonelycoder.com>2008-11-04 18:31:48 +0000
committerAndreas Öman <andreas@lonelycoder.com>2008-11-04 18:31:48 +0000
commitb09a7c05f6e8914035d97b6d9e887246558585f0 (patch)
tree41b028660b23ad34abfc120fd20dca93a7de568c /libavcodec/h264data.h
parent9f0a705d46547ca0c3edab21f24cdb0fb3237185 (diff)
h264: Implement decoding of picture timing SEI message.
Now correct values are propagated to interlaced_frame, top_field_first and repeat_pict in AVFrame structure. patch by ffdshow tryouts Originally committed as revision 15773 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264data.h')
-rw-r--r--libavcodec/h264data.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h
index f01beeb3b1..fa4bff8e84 100644
--- a/libavcodec/h264data.h
+++ b/libavcodec/h264data.h
@@ -1296,4 +1296,8 @@ static const int8_t cabac_context_init_PB[3][460][2] =
}
};
+static const uint8_t sei_num_clock_ts_table[9]={
+ 1, 1, 1, 2, 2, 3, 3, 2, 3
+};
+
#endif /* AVCODEC_H264DATA_H */