summaryrefslogtreecommitdiff
path: root/libavcodec/psymodel.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-01-20 18:28:17 +0000
committerMichael Niedermayer <michaelni@gmx.at>2011-01-21 20:36:01 +0100
commit99c2111b12c40a72e312668f0ea0ddccf9d2b604 (patch)
treed91a7ca2dbff7e20c82d01ddc7b00862e207d3ed /libavcodec/psymodel.c
parent20d1f6fec1aa2a33c4cf8162e72ca88ead3d389d (diff)
downloadffmpeg-99c2111b12c40a72e312668f0ea0ddccf9d2b604.tar.gz
cosmetics: vertical alignment and line wrap
Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 75b98610a7ce7acf34f583a04aaccd8c619947fe)
Diffstat (limited to 'libavcodec/psymodel.c')
-rw-r--r--libavcodec/psymodel.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/psymodel.c b/libavcodec/psymodel.c
index fb869e7d44..8bd5b8bdd8 100644
--- a/libavcodec/psymodel.c
+++ b/libavcodec/psymodel.c
@@ -88,8 +88,9 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av
cutoff_coeff = 2.0 * avctx->cutoff / avctx->sample_rate;
if (cutoff_coeff)
- ctx->fcoeffs = ff_iir_filter_init_coeffs(avctx, FF_FILTER_TYPE_BUTTERWORTH, FF_FILTER_MODE_LOWPASS,
- FILT_ORDER, cutoff_coeff, 0.0, 0.0);
+ ctx->fcoeffs = ff_iir_filter_init_coeffs(avctx, FF_FILTER_TYPE_BUTTERWORTH,
+ FF_FILTER_MODE_LOWPASS, FILT_ORDER,
+ cutoff_coeff, 0.0, 0.0);
if (ctx->fcoeffs) {
ctx->fstate = av_mallocz(sizeof(ctx->fstate[0]) * avctx->channels);
for (i = 0; i < avctx->channels; i++)