From 2791c608835fa869ede8582a60df35076b4b297b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 4 Oct 2008 01:08:48 +0000 Subject: [PATCH] Fix indention of NAL type enum. Originally committed as revision 15538 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264.h | 28 ++++++++++++++-------------- 1 file 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 }; /**