comparison h264.h @ 8762:4f1567ce75c4 libavcodec

Replace hard-coded SEI type constants with symbolic names Patch by Ivan Schreter ( schreter gmx net )
author superdump
date Sun, 08 Feb 2009 20:28:12 +0000
parents 477d1abdd22b
children e91ea98d868a
comparison
equal deleted inserted replaced
8761:2a43b46067c4 8762:4f1567ce75c4
108 NAL_END_STREAM, 108 NAL_END_STREAM,
109 NAL_FILLER_DATA, 109 NAL_FILLER_DATA,
110 NAL_SPS_EXT, 110 NAL_SPS_EXT,
111 NAL_AUXILIARY_SLICE=19 111 NAL_AUXILIARY_SLICE=19
112 }; 112 };
113
114 /**
115 * SEI message types
116 */
117 typedef enum {
118 SEI_TYPE_PIC_TIMING = 1, ///< picture timing
119 SEI_TYPE_USER_DATA_UNREGISTERED = 5, ///< unregistered user data
120 SEI_TYPE_RECOVERY_POINT = 6 ///< recovery point (frame # to decoder sync)
121 } SEI_Type;
113 122
114 /** 123 /**
115 * pic_struct in picture timing SEI message 124 * pic_struct in picture timing SEI message
116 */ 125 */
117 typedef enum { 126 typedef enum {