diff options
author | Ivan Schreter <schreter@gmx.net> | 2009-02-08 20:28:12 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2009-02-08 20:28:12 +0000 |
commit | dd02ea118bf89f94090902e3ef2287abdaf3e3b1 (patch) | |
tree | bbdb3208431d74735d6973774fc04b1015b3f44b /libavcodec/h264.h | |
parent | eb8a25c89556f7d0049feebf00aa224fc0793887 (diff) | |
download | ffmpeg-dd02ea118bf89f94090902e3ef2287abdaf3e3b1.tar.gz |
Replace hard-coded SEI type constants with symbolic names
Patch by Ivan Schreter ( schreter gmx net )
Originally committed as revision 17064 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index e4e070aab6..ed9e854bd5 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -112,6 +112,15 @@ enum { }; /** + * SEI message types + */ +typedef enum { + SEI_TYPE_PIC_TIMING = 1, ///< picture timing + SEI_TYPE_USER_DATA_UNREGISTERED = 5, ///< unregistered user data + SEI_TYPE_RECOVERY_POINT = 6 ///< recovery point (frame # to decoder sync) +} SEI_Type; + +/** * pic_struct in picture timing SEI message */ typedef enum { |