[FFmpeg-cvslog] cosmetics: indentation

Justin Ruggles git at videolan.org
Wed Mar 23 03:03:42 CET 2011


ffmpeg | branch: master | Justin Ruggles <justin.ruggles at gmail.com> | Tue Mar 22 14:14:41 2011 -0400| [40728b5169f23a6420b3d9758f485fd2cd99050d] | committer: Justin Ruggles

cosmetics: indentation

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=40728b5169f23a6420b3d9758f485fd2cd99050d
---

 libavcodec/ac3dec.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index f196251..a9a67ce 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -1312,12 +1312,12 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
     const uint8_t *channel_map;
     const float *output[AC3_MAX_CHANNELS];
 
-        /* copy input buffer to decoder context to avoid reading past the end
-           of the buffer, which can be caused by a damaged input stream. */
+    /* copy input buffer to decoder context to avoid reading past the end
+       of the buffer, which can be caused by a damaged input stream. */
         memcpy(s->input_buffer, buf, FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE));
     buf = s->input_buffer;
     /* initialize the GetBitContext with the start of valid AC-3 Frame */
-        init_get_bits(&s->gbc, buf, buf_size * 8);
+    init_get_bits(&s->gbc, buf, buf_size * 8);
 
     /* parse the syncinfo */
     *data_size = 0;




More information about the ffmpeg-cvslog mailing list