From 26adc8d0860b7f433e7ac45d978572019b0fb18f Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Thu, 26 Feb 2009 02:30:29 +0000 Subject: [PATCH] cosmetics: line wrap and indentation after last commit. Originally committed as revision 17603 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/flacdec.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index 42310b24a0..b3592f4183 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -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; }