projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19b4c62
)
Use cutoff frequency to adjust bandwidth in the generic psymodel preprocess.
author
Alex Converse
<alex.converse@gmail.com>
Tue, 14 Jul 2009 05:22:23 +0000
(
05:22
+0000)
committer
Alex Converse
<alex.converse@gmail.com>
Tue, 14 Jul 2009 05:22:23 +0000
(
05:22
+0000)
Originally committed as revision 19429 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/psymodel.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/psymodel.c
b/libavcodec/psymodel.c
index
17c1a41
..
b337bfd
100644
(file)
--- a/
libavcodec/psymodel.c
+++ b/
libavcodec/psymodel.c
@@
-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);