Commit 556adbe4 authored by alexc's avatar alexc

Use cutoff frequency to adjust bandwidth in the generic psymodel preprocess.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19429 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1da168fa
...@@ -84,7 +84,9 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av ...@@ -84,7 +84,9 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av
ctx = av_mallocz(sizeof(FFPsyPreprocessContext)); ctx = av_mallocz(sizeof(FFPsyPreprocessContext));
ctx->avctx = avctx; ctx->avctx = avctx;
if (avctx->flags & CODEC_FLAG_QSCALE) if (avctx->cutoff > 0)
cutoff_coeff = 2.0 * avctx->cutoff / avctx->sample_rate;
else if (avctx->flags & CODEC_FLAG_QSCALE)
cutoff_coeff = 1.0f / av_clip(1 + avctx->global_quality / FF_QUALITY_SCALE, 1, 8); cutoff_coeff = 1.0f / av_clip(1 + avctx->global_quality / FF_QUALITY_SCALE, 1, 8);
else else
cutoff_coeff = avctx->bit_rate / (4.0f * avctx->sample_rate * avctx->channels); cutoff_coeff = avctx->bit_rate / (4.0f * avctx->sample_rate * avctx->channels);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment