diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-09-11 18:59:15 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-09-11 18:59:15 +0100 |
commit | 8180b113e1147bc55a11e2828fba7a6d521e2e86 (patch) | |
tree | e0fd29301c473b42e1f3953e9015f80f16bb589f /libavcodec/aaccoder.c | |
parent | abef6383fb7f9e565fe8879225183a8adf4164d8 (diff) | |
download | ffmpeg-8180b113e1147bc55a11e2828fba7a6d521e2e86.tar.gz |
aaccoder: respect cutoff when marking bands as PNS
Makes more sense as users usually set the -cutoff option
to low pass filter the signal. The encoder will still over
shoot slightly when encoding normal coefficients however
that's normal.
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/aaccoder.c')
-rw-r--r-- | libavcodec/aaccoder.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/aaccoder.c b/libavcodec/aaccoder.c index dd2e62f44d..524987df0b 100644 --- a/libavcodec/aaccoder.c +++ b/libavcodec/aaccoder.c @@ -51,9 +51,6 @@ /** Frequency in Hz for lower limit of noise substitution **/ #define NOISE_LOW_LIMIT 4000 -/** Pointless to substitute very high short lived inaudiable frequencies **/ -#define NOISE_HIGH_LIMIT 18120 - /* Parameter of f(x) = a*(lambda/100), defines the maximum fourier spread * beyond which no PNS is used (since the SFBs contain tone rather than noise) */ #define NOISE_SPREAD_THRESHOLD 0.5073f @@ -886,7 +883,7 @@ static void search_for_pns(AACEncContext *s, AVCodecContext *avctx, SingleChanne const int start = sce->ics.swb_offset[w*16+g]; const float freq = start*freq_mult; const float freq_boost = FFMAX(0.88f*freq/NOISE_LOW_LIMIT, 1.0f); - if (freq < NOISE_LOW_LIMIT) + if (freq < NOISE_LOW_LIMIT || avctx->cutoff && freq >= avctx->cutoff) continue; for (w2 = 0; w2 < sce->ics.group_len[w]; w2++) { band = &s->psy.ch[s->cur_channel].psy_bands[(w+w2)*16+g]; @@ -899,7 +896,7 @@ static void search_for_pns(AACEncContext *s, AVCodecContext *avctx, SingleChanne dist_thresh = FFMIN(2.5f*NOISE_LOW_LIMIT/freq, 1.27f); if (sce->zeroes[w*16+g] || spread < spread_threshold || - sfb_energy > threshold*thr_mult*freq_boost || !sfb_energy) { + sfb_energy > threshold*thr_mult*freq_boost) { sce->pns_ener[w*16+g] = sfb_energy; continue; } |