X-Git-Url: http://git.videolan.org/?p=ffmpeg.git;a=blobdiff_plain;f=libavcodec%2Fh264.h;h=6aa30b9185e7833b25b9ce075eaf0926ea56a389;hp=a828bf9e57186ffcdd71fdb503a16ebdc41ddfab;hb=b141c7b37eb52aca41ac83738f159b63b9c09d5c;hpb=0cffd6fff59f192120dc93aa6c3cb8180f5506e3 diff --git a/libavcodec/h264.h b/libavcodec/h264.h index a828bf9e57..6aa30b9185 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -99,19 +99,19 @@ /* NAL unit types */ enum { - NAL_SLICE = 1, - NAL_DPA, - NAL_DPB, - NAL_DPC, - NAL_IDR_SLICE, - NAL_SEI, - NAL_SPS, - NAL_PPS, - NAL_AUD, - NAL_END_SEQUENCE, - NAL_END_STREAM, - NAL_FILLER_DATA, - NAL_SPS_EXT, + NAL_SLICE = 1, + NAL_DPA = 2, + NAL_DPB = 3, + NAL_DPC = 4, + NAL_IDR_SLICE = 5, + NAL_SEI = 6, + NAL_SPS = 7, + NAL_PPS = 8, + NAL_AUD = 9, + NAL_END_SEQUENCE = 10, + NAL_END_STREAM = 11, + NAL_FILLER_DATA = 12, + NAL_SPS_EXT = 13, NAL_AUXILIARY_SLICE = 19, NAL_FF_IGNORE = 0xff0f001, };