summaryrefslogtreecommitdiffstats
path: root/libavcodec/aacpsy.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-29 19:49:22 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-29 22:02:46 +0200
commit72dabdfc58064fcb249f26fc7afca2221f18a832 (patch)
treee37f5b9b18ecfd3181c19d2ad43b13ecaab6c0bc /libavcodec/aacpsy.c
parent981d97f69789bdbf7a0cb325a70befeaeeb4d9e3 (diff)
downloadffmpeg-streaming-72dabdfc58064fcb249f26fc7afca2221f18a832.zip
ffmpeg-streaming-72dabdfc58064fcb249f26fc7afca2221f18a832.tar.gz
aacenc: new default cutoff
Improves subjective quality Formula and testing by: kamedo2 <fujisakihir90@yahoo.co.jp> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aacpsy.c')
-rw-r--r--libavcodec/aacpsy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsy.c b/libavcodec/aacpsy.c
index 585a249..a9a8988 100644
--- a/libavcodec/aacpsy.c
+++ b/libavcodec/aacpsy.c
@@ -292,7 +292,7 @@ static av_cold int psy_3gpp_init(FFPsyContext *ctx) {
int i, j, g, start;
float prev, minscale, minath, minsnr, pe_min;
const int chan_bitrate = ctx->avctx->bit_rate / ctx->avctx->channels;
- const int bandwidth = ctx->avctx->cutoff ? ctx->avctx->cutoff : ctx->avctx->sample_rate / 2;
+ const int bandwidth = ctx->avctx->cutoff ? ctx->avctx->cutoff : AAC_CUTOFF(ctx->avctx);
const float num_bark = calc_bark((float)bandwidth);
ctx->model_priv_data = av_mallocz(sizeof(AacPsyContext));
OpenPOWER on IntegriCloud