cosmetics: line wrap and indentation after last commit.
authorJustin Ruggles <justin.ruggles@gmail.com>
Thu, 26 Feb 2009 02:30:29 +0000 (02:30 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Thu, 26 Feb 2009 02:30:29 +0000 (02:30 +0000)
Originally committed as revision 17603 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/flacdec.c

index 42310b2..b3592f4 100644 (file)
@@ -141,10 +141,9 @@ static av_cold int flac_decode_init(AVCodecContext *avctx)
     if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo))
         return -1;
 
-        /* initialize based on the demuxer-supplied streamdata header */
-            ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s,
-                                     streaminfo);
-            allocate_buffers(s);
+    /* initialize based on the demuxer-supplied streamdata header */
+    ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s, streaminfo);
+    allocate_buffers(s);
 
     return 0;
 }