1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-11 14:30:22 +02:00

cosmetics: indentation and spacing

This commit is contained in:
Justin Ruggles
2011-01-27 14:21:26 +00:00
committed by Mans Rullgard
parent 9d06d7bce3
commit b5ec638343
5 changed files with 18 additions and 19 deletions

View File

@ -195,7 +195,7 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
dsputil_init(&s->dsp, avctx); dsputil_init(&s->dsp, avctx);
av_lfg_init(&s->dith_state, 0); av_lfg_init(&s->dith_state, 0);
/* set bias values for float to int16 conversion */ /* set scale value for float to int16 conversion */
s->mul_bias = 32767.0f; s->mul_bias = 32767.0f;
/* allow downmixing to stereo or mono */ /* allow downmixing to stereo or mono */

View File

@ -1846,7 +1846,6 @@ static av_cold int dca_decode_init(AVCodecContext * avctx)
avctx->channels = avctx->request_channels; avctx->channels = avctx->request_channels;
} }
return 0; return 0;
} }