diff options
author | Claudio Freire <klaussfreire@gmail.com> | 2015-10-11 18:06:02 -0300 |
---|---|---|
committer | Claudio Freire <klaussfreire@gmail.com> | 2015-10-11 18:06:02 -0300 |
commit | 323d37521d66233c8d9405dba902100ef146b5ec (patch) | |
tree | ccf1aa8873af1bc7bc680b3cd58867e4eb23d4ee /libavcodec/psymodel.c | |
parent | 01ecb7172b684f1c4b3e748f95c5a9a494ca36ec (diff) | |
download | ffmpeg-323d37521d66233c8d9405dba902100ef146b5ec.tar.gz |
AAC encoder: cosmetics from last commit
Reindent
Diffstat (limited to 'libavcodec/psymodel.c')
-rw-r--r-- | libavcodec/psymodel.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libavcodec/psymodel.c b/libavcodec/psymodel.c index f7bca6890c..76221243cb 100644 --- a/libavcodec/psymodel.c +++ b/libavcodec/psymodel.c @@ -111,18 +111,18 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av /* AAC has its own LP method */ if (avctx->codec_id != AV_CODEC_ID_AAC) { - if (avctx->cutoff > 0) - cutoff_coeff = 2.0 * avctx->cutoff / avctx->sample_rate; - - if (cutoff_coeff && cutoff_coeff < 0.98) - 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++) - ctx->fstate[i] = ff_iir_filter_init_state(FILT_ORDER); - } + if (avctx->cutoff > 0) + cutoff_coeff = 2.0 * avctx->cutoff / avctx->sample_rate; + + if (cutoff_coeff && cutoff_coeff < 0.98) + 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++) + ctx->fstate[i] = ff_iir_filter_init_state(FILT_ORDER); + } } ff_iir_filter_init(&ctx->fiir); |