comparison h264data.h @ 7988:a7dfe657968d libavcodec

Move nal unit types enum and EXTENDED_SAR #define from h264data.h to h264.h.
author michael
date Fri, 03 Oct 2008 13:30:19 +0000
parents c4a4495715dd
children e61f76efc9f3
comparison
equal deleted inserted replaced
7987:bf12bb0efb68 7988:a7dfe657968d
31 31
32 #include <stdint.h> 32 #include <stdint.h>
33 #include "libavutil/rational.h" 33 #include "libavutil/rational.h"
34 #include "mpegvideo.h" 34 #include "mpegvideo.h"
35 35
36
37 #define EXTENDED_SAR 255
38
39 /* NAL unit types */
40 enum {
41 NAL_SLICE=1,
42 NAL_DPA,
43 NAL_DPB,
44 NAL_DPC,
45 NAL_IDR_SLICE,
46 NAL_SEI,
47 NAL_SPS,
48 NAL_PPS,
49 NAL_AUD,
50 NAL_END_SEQUENCE,
51 NAL_END_STREAM,
52 NAL_FILLER_DATA,
53 NAL_SPS_EXT,
54 NAL_AUXILIARY_SLICE=19
55 };
56 36
57 static const AVRational pixel_aspect[17]={ 37 static const AVRational pixel_aspect[17]={
58 {0, 1}, 38 {0, 1},
59 {1, 1}, 39 {1, 1},
60 {12, 11}, 40 {12, 11},