summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2009-02-26 02:30:29 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2009-02-26 02:30:29 +0000
commit26adc8d0860b7f433e7ac45d978572019b0fb18f (patch)
tree49abe40a680b75a9529c7dc8d6f2436eea1703ad /libavcodec
parent59c6178a54c414fd19e064f0077d00b82a1eb812 (diff)
cosmetics: line wrap and indentation after last commit.
Originally committed as revision 17603 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/flacdec.c7
1 files 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;
}