From 99d61d340ce9b3fee4924c6719d9bf40f1766d42 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 8 Jul 2009 21:16:06 +0000 Subject: cosmetics: prettyprinting, K&R style, break overly long lines Originally committed as revision 19377 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/psymodel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/psymodel.c') diff --git a/libavcodec/psymodel.c b/libavcodec/psymodel.c index 4d6a0ecd07..048f270467 100644 --- a/libavcodec/psymodel.c +++ b/libavcodec/psymodel.c @@ -81,7 +81,7 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av FFPsyPreprocessContext *ctx; int i; float cutoff_coeff; - ctx = av_mallocz(sizeof(FFPsyPreprocessContext)); + ctx = av_mallocz(sizeof(FFPsyPreprocessContext)); ctx->avctx = avctx; if (avctx->flags & CODEC_FLAG_QSCALE) @@ -90,7 +90,7 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av cutoff_coeff = avctx->bit_rate / (4.0f * avctx->sample_rate * avctx->channels); ctx->fcoeffs = ff_iir_filter_init_coeffs(FF_FILTER_TYPE_BUTTERWORTH, FF_FILTER_MODE_LOWPASS, - FILT_ORDER, cutoff_coeff, 0.0, 0.0); + 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++) -- cgit v1.2.3