diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-10-04 01:08:48 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-10-04 01:08:48 +0000 |
commit | 2791c608835fa869ede8582a60df35076b4b297b (patch) | |
tree | ef7816c0c9999b237f4c816b18b5d403ac43195c | |
parent | 3ee4f5e4fae8c468d316f3b3a0fbbb42c730e600 (diff) | |
download | ffmpeg-2791c608835fa869ede8582a60df35076b4b297b.tar.gz |
Fix indention of NAL type enum.
Originally committed as revision 15538 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 8f33233d83..85c29b651b 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -88,20 +88,20 @@ /* 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_AUXILIARY_SLICE=19 + 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_AUXILIARY_SLICE=19 }; /** |