]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/psymodel.c
Use reget_buffer instead of get_buffer. Fixes issue1367.
[ffmpeg] / libavcodec / psymodel.c
index 17c1a41f4b02c7f5983144b3079cc2d9df0bb9aa..b337bfd5093df341fd425413e8ddf6079e353296 100644 (file)
@@ -84,7 +84,9 @@ av_cold struct FFPsyPreprocessContext* ff_psy_preprocess_init(AVCodecContext *av
     ctx        = av_mallocz(sizeof(FFPsyPreprocessContext));
     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);
     else
         cutoff_coeff = avctx->bit_rate / (4.0f * avctx->sample_rate * avctx->channels);