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/ac3dec.c | |
parent | 9d06d7bce3babb82ed650c13ed13a57f6f626a71 (diff) | |
download | ffmpeg-b5ec6383432c907bed175f20e39af1a99dc75cfb.tar.gz |
cosmetics: indentation and spacing
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 2f9bc261bd..ab738771b5 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -195,8 +195,8 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx) dsputil_init(&s->dsp, avctx); av_lfg_init(&s->dith_state, 0); - /* set bias values for float to int16 conversion */ - s->mul_bias = 32767.0f; + /* set scale value for float to int16 conversion */ + s->mul_bias = 32767.0f; /* allow downmixing to stereo or mono */ if (avctx->channels > 0 && avctx->request_channels > 0 && |