diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-01-27 14:21:26 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-28 00:21:46 +0000 |
commit | b5ec6383432c907bed175f20e39af1a99dc75cfb (patch) | |
tree | f0ceb676ffaec2f3399846835cbd8bb856387087 /libavcodec/aacdec.c | |
parent | 9d06d7bce3babb82ed650c13ed13a57f6f626a71 (diff) | |
download | ffmpeg-b5ec6383432c907bed175f20e39af1a99dc75cfb.tar.gz |
cosmetics: indentation and spacing
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index fddec17fcc..2d5fb540a9 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -568,8 +568,8 @@ static av_cold int aac_decode_init(AVCodecContext *avctx) // -1024 - Compensate wrong IMDCT method. // 60 - Required to scale values to the correct range [-32768,32767] // for float to int16 conversion. (1 << (60 / 4)) == 32768 - ac->sf_scale = 1. / -1024.; - ac->sf_offset = 60; + ac->sf_scale = 1. / -1024.; + ac->sf_offset = 60; ff_aac_tableinit(); |