Fix indention of NAL type enum.
authorMichael Niedermayer <michaelni@gmx.at>
Sat, 4 Oct 2008 01:08:48 +0000 (01:08 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sat, 4 Oct 2008 01:08:48 +0000 (01:08 +0000)
Originally committed as revision 15538 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/h264.h

index 8f33233..85c29b6 100644 (file)
 
 /* 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
 };
 
 /**