summaryrefslogtreecommitdiff
path: root/libavcodec/psymodel.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-07-08 21:16:06 +0000
committerDiego Biurrun <diego@biurrun.de>2009-07-08 21:16:06 +0000
commit99d61d340ce9b3fee4924c6719d9bf40f1766d42 (patch)
treedefced68fcf0ada0688691a1e27f7f0402264329 /libavcodec/psymodel.c
parentfd257dc4c0ee751ecf15830b91d28c15276fe93b (diff)
cosmetics: prettyprinting, K&R style, break overly long lines
Originally committed as revision 19377 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/psymodel.c')
-rw-r--r--libavcodec/psymodel.c4
1 files changed, 2 insertions, 2 deletions
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++)