~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavcodec/aacpsy.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler, Jonathan Nieder, Reinhard Tartler
  • Date: 2011-05-13 12:31:33 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20110513123133-zqcsj91sf5489y4s
Tags: 4:0.7~beta2-1
[ Jonathan Nieder ]
* only install doc/APIChanges in *-dev and libav-doc packages
* move note on source package lineage to README.Debian
* install NEWS.Debian in libavcodec-dev
* use dpkg source format 3.0 (quilt)
* allow "debian/rules clean" as unprivileged user

[ Reinhard Tartler ]
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
/***********************************
32
32
 *              TODOs:
33
 
 * thresholds linearization after their modifications for attaining given bitrate
34
33
 * try other bitrate controlling mechanism (maybe use ratecontrol.c?)
35
34
 * control quality for quality-based output
36
35
 **********************************/
41
40
 */
42
41
#define PSY_3GPP_THR_SPREAD_HI   1.5f // spreading factor for low-to-hi threshold spreading  (15 dB/Bark)
43
42
#define PSY_3GPP_THR_SPREAD_LOW  3.0f // spreading factor for hi-to-low threshold spreading  (30 dB/Bark)
 
43
/* spreading factor for low-to-hi energy spreading, long block, > 22kbps/channel (20dB/Bark) */
 
44
#define PSY_3GPP_EN_SPREAD_HI_L1 2.0f
 
45
/* spreading factor for low-to-hi energy spreading, long block, <= 22kbps/channel (15dB/Bark) */
 
46
#define PSY_3GPP_EN_SPREAD_HI_L2 1.5f
 
47
/* spreading factor for low-to-hi energy spreading, short block (15 dB/Bark) */
 
48
#define PSY_3GPP_EN_SPREAD_HI_S  1.5f
 
49
/* spreading factor for hi-to-low energy spreading, long block (30dB/Bark) */
 
50
#define PSY_3GPP_EN_SPREAD_LOW_L 3.0f
 
51
/* spreading factor for hi-to-low energy spreading, short block (20dB/Bark) */
 
52
#define PSY_3GPP_EN_SPREAD_LOW_S 2.0f
44
53
 
45
54
#define PSY_3GPP_RPEMIN      0.01f
46
55
#define PSY_3GPP_RPELEV      2.0f
47
56
 
 
57
#define PSY_3GPP_C1          3.0f           /* log2(8) */
 
58
#define PSY_3GPP_C2          1.3219281f     /* log2(2.5) */
 
59
#define PSY_3GPP_C3          0.55935729f    /* 1 - C2 / C1 */
 
60
 
 
61
#define PSY_SNR_1DB          7.9432821e-1f  /* -1dB */
 
62
#define PSY_SNR_25DB         3.1622776e-3f  /* -25dB */
 
63
 
 
64
#define PSY_3GPP_SAVE_SLOPE_L  -0.46666667f
 
65
#define PSY_3GPP_SAVE_SLOPE_S  -0.36363637f
 
66
#define PSY_3GPP_SAVE_ADD_L    -0.84285712f
 
67
#define PSY_3GPP_SAVE_ADD_S    -0.75f
 
68
#define PSY_3GPP_SPEND_SLOPE_L  0.66666669f
 
69
#define PSY_3GPP_SPEND_SLOPE_S  0.81818181f
 
70
#define PSY_3GPP_SPEND_ADD_L   -0.35f
 
71
#define PSY_3GPP_SPEND_ADD_S   -0.26111111f
 
72
#define PSY_3GPP_CLIP_LO_L      0.2f
 
73
#define PSY_3GPP_CLIP_LO_S      0.2f
 
74
#define PSY_3GPP_CLIP_HI_L      0.95f
 
75
#define PSY_3GPP_CLIP_HI_S      0.75f
 
76
 
 
77
#define PSY_3GPP_AH_THR_LONG    0.5f
 
78
#define PSY_3GPP_AH_THR_SHORT   0.63f
 
79
 
 
80
enum {
 
81
    PSY_3GPP_AH_NONE,
 
82
    PSY_3GPP_AH_INACTIVE,
 
83
    PSY_3GPP_AH_ACTIVE
 
84
};
 
85
 
 
86
#define PSY_3GPP_BITS_TO_PE(bits) ((bits) * 1.18f)
 
87
 
48
88
/* LAME psy model constants */
49
89
#define PSY_LAME_FIR_LEN 21         ///< LAME psy model FIR order
50
90
#define AAC_BLOCK_SIZE_LONG 1024    ///< long block size
60
100
 * information for single band used by 3GPP TS26.403-inspired psychoacoustic model
61
101
 */
62
102
typedef struct AacPsyBand{
63
 
    float energy;    ///< band energy
64
 
    float thr;       ///< energy threshold
65
 
    float thr_quiet; ///< threshold in quiet
 
103
    float energy;       ///< band energy
 
104
    float thr;          ///< energy threshold
 
105
    float thr_quiet;    ///< threshold in quiet
 
106
    float nz_lines;     ///< number of non-zero spectral lines
 
107
    float active_lines; ///< number of active spectral lines
 
108
    float pe;           ///< perceptual entropy
 
109
    float pe_const;     ///< constant part of the PE calculation
 
110
    float norm_fac;     ///< normalization factor for linearization
 
111
    int   avoid_holes;  ///< hole avoidance flag
66
112
}AacPsyBand;
67
113
 
68
114
/**
97
143
 * 3GPP TS26.403-inspired psychoacoustic model specific data
98
144
 */
99
145
typedef struct AacPsyContext{
 
146
    int chan_bitrate;     ///< bitrate per channel
 
147
    int frame_bits;       ///< average bits per frame
 
148
    int fill_level;       ///< bit reservoir fill level
 
149
    struct {
 
150
        float min;        ///< minimum allowed PE for bit factor calculation
 
151
        float max;        ///< maximum allowed PE for bit factor calculation
 
152
        float previous;   ///< allowed PE of the previous frame
 
153
        float correction; ///< PE correction factor
 
154
    } pe;
100
155
    AacPsyCoeffs psy_coef[2][64];
101
156
    AacPsyChannel *ch;
102
157
}AacPsyContext;
235
290
    AacPsyContext *pctx;
236
291
    float bark;
237
292
    int i, j, g, start;
238
 
    float prev, minscale, minath;
 
293
    float prev, minscale, minath, minsnr, pe_min;
 
294
    const int chan_bitrate = ctx->avctx->bit_rate / ctx->avctx->channels;
 
295
    const int bandwidth    = ctx->avctx->cutoff ? ctx->avctx->cutoff : ctx->avctx->sample_rate / 2;
 
296
    const float num_bark   = calc_bark((float)bandwidth);
239
297
 
240
298
    ctx->model_priv_data = av_mallocz(sizeof(AacPsyContext));
241
299
    pctx = (AacPsyContext*) ctx->model_priv_data;
242
300
 
 
301
    pctx->chan_bitrate = chan_bitrate;
 
302
    pctx->frame_bits   = chan_bitrate * AAC_BLOCK_SIZE_LONG / ctx->avctx->sample_rate;
 
303
    pctx->pe.min       =  8.0f * AAC_BLOCK_SIZE_LONG * bandwidth / (ctx->avctx->sample_rate * 2.0f);
 
304
    pctx->pe.max       = 12.0f * AAC_BLOCK_SIZE_LONG * bandwidth / (ctx->avctx->sample_rate * 2.0f);
 
305
    ctx->bitres.size   = 6144 - pctx->frame_bits;
 
306
    ctx->bitres.size  -= ctx->bitres.size % 8;
 
307
    pctx->fill_level   = ctx->bitres.size;
243
308
    minath = ath(3410, ATH_ADD);
244
309
    for (j = 0; j < 2; j++) {
245
310
        AacPsyCoeffs *coeffs = pctx->psy_coef[j];
246
311
        const uint8_t *band_sizes = ctx->bands[j];
247
312
        float line_to_frequency = ctx->avctx->sample_rate / (j ? 256.f : 2048.0f);
 
313
        float avg_chan_bits = chan_bitrate / ctx->avctx->sample_rate * (j ? 128.0f : 1024.0f);
 
314
        /* reference encoder uses 2.4% here instead of 60% like the spec says */
 
315
        float bark_pe = 0.024f * PSY_3GPP_BITS_TO_PE(avg_chan_bits) / num_bark;
 
316
        float en_spread_low = j ? PSY_3GPP_EN_SPREAD_LOW_S : PSY_3GPP_EN_SPREAD_LOW_L;
 
317
        /* High energy spreading for long blocks <= 22kbps/channel and short blocks are the same. */
 
318
        float en_spread_hi  = (j || (chan_bitrate <= 22.0f)) ? PSY_3GPP_EN_SPREAD_HI_S : PSY_3GPP_EN_SPREAD_HI_L1;
 
319
 
248
320
        i = 0;
249
321
        prev = 0.0;
250
322
        for (g = 0; g < ctx->num_bands[j]; g++) {
258
330
            float bark_width = coeffs[g+1].barks - coeffs->barks;
259
331
            coeff->spread_low[0] = pow(10.0, -bark_width * PSY_3GPP_THR_SPREAD_LOW);
260
332
            coeff->spread_hi [0] = pow(10.0, -bark_width * PSY_3GPP_THR_SPREAD_HI);
 
333
            coeff->spread_low[1] = pow(10.0, -bark_width * en_spread_low);
 
334
            coeff->spread_hi [1] = pow(10.0, -bark_width * en_spread_hi);
 
335
            pe_min = bark_pe * bark_width;
 
336
            minsnr = pow(2.0f, pe_min / band_sizes[g]) - 1.5f;
 
337
            coeff->min_snr = av_clipf(1.0f / minsnr, PSY_SNR_25DB, PSY_SNR_1DB);
261
338
        }
262
339
        start = 0;
263
340
        for (g = 0; g < ctx->num_bands[j]; g++) {
385
462
    return wi;
386
463
}
387
464
 
 
465
/* 5.6.1.2 "Calculation of Bit Demand" */
 
466
static int calc_bit_demand(AacPsyContext *ctx, float pe, int bits, int size,
 
467
                           int short_window)
 
468
{
 
469
    const float bitsave_slope  = short_window ? PSY_3GPP_SAVE_SLOPE_S  : PSY_3GPP_SAVE_SLOPE_L;
 
470
    const float bitsave_add    = short_window ? PSY_3GPP_SAVE_ADD_S    : PSY_3GPP_SAVE_ADD_L;
 
471
    const float bitspend_slope = short_window ? PSY_3GPP_SPEND_SLOPE_S : PSY_3GPP_SPEND_SLOPE_L;
 
472
    const float bitspend_add   = short_window ? PSY_3GPP_SPEND_ADD_S   : PSY_3GPP_SPEND_ADD_L;
 
473
    const float clip_low       = short_window ? PSY_3GPP_CLIP_LO_S     : PSY_3GPP_CLIP_LO_L;
 
474
    const float clip_high      = short_window ? PSY_3GPP_CLIP_HI_S     : PSY_3GPP_CLIP_HI_L;
 
475
    float clipped_pe, bit_save, bit_spend, bit_factor, fill_level;
 
476
 
 
477
    ctx->fill_level += ctx->frame_bits - bits;
 
478
    ctx->fill_level  = av_clip(ctx->fill_level, 0, size);
 
479
    fill_level = av_clipf((float)ctx->fill_level / size, clip_low, clip_high);
 
480
    clipped_pe = av_clipf(pe, ctx->pe.min, ctx->pe.max);
 
481
    bit_save   = (fill_level + bitsave_add) * bitsave_slope;
 
482
    assert(bit_save <= 0.3f && bit_save >= -0.05000001f);
 
483
    bit_spend  = (fill_level + bitspend_add) * bitspend_slope;
 
484
    assert(bit_spend <= 0.5f && bit_spend >= -0.1f);
 
485
    /* The bit factor graph in the spec is obviously incorrect.
 
486
     *      bit_spend + ((bit_spend - bit_spend))...
 
487
     * The reference encoder subtracts everything from 1, but also seems incorrect.
 
488
     *      1 - bit_save + ((bit_spend + bit_save))...
 
489
     * Hopefully below is correct.
 
490
     */
 
491
    bit_factor = 1.0f - bit_save + ((bit_spend - bit_save) / (ctx->pe.max - ctx->pe.min)) * (clipped_pe - ctx->pe.min);
 
492
    /* NOTE: The reference encoder attempts to center pe max/min around the current pe. */
 
493
    ctx->pe.max = FFMAX(pe, ctx->pe.max);
 
494
    ctx->pe.min = FFMIN(pe, ctx->pe.min);
 
495
 
 
496
    return FFMIN(ctx->frame_bits * bit_factor, ctx->frame_bits + size - bits);
 
497
}
 
498
 
 
499
static float calc_pe_3gpp(AacPsyBand *band)
 
500
{
 
501
    float pe, a;
 
502
 
 
503
    band->pe           = 0.0f;
 
504
    band->pe_const     = 0.0f;
 
505
    band->active_lines = 0.0f;
 
506
    if (band->energy > band->thr) {
 
507
        a  = log2f(band->energy);
 
508
        pe = a - log2f(band->thr);
 
509
        band->active_lines = band->nz_lines;
 
510
        if (pe < PSY_3GPP_C1) {
 
511
            pe = pe * PSY_3GPP_C3 + PSY_3GPP_C2;
 
512
            a  = a  * PSY_3GPP_C3 + PSY_3GPP_C2;
 
513
            band->active_lines *= PSY_3GPP_C3;
 
514
        }
 
515
        band->pe       = pe * band->nz_lines;
 
516
        band->pe_const = a  * band->nz_lines;
 
517
    }
 
518
 
 
519
    return band->pe;
 
520
}
 
521
 
 
522
static float calc_reduction_3gpp(float a, float desired_pe, float pe,
 
523
                                 float active_lines)
 
524
{
 
525
    float thr_avg, reduction;
 
526
 
 
527
    thr_avg   = powf(2.0f, (a - pe) / (4.0f * active_lines));
 
528
    reduction = powf(2.0f, (a - desired_pe) / (4.0f * active_lines)) - thr_avg;
 
529
 
 
530
    return FFMAX(reduction, 0.0f);
 
531
}
 
532
 
 
533
static float calc_reduced_thr_3gpp(AacPsyBand *band, float min_snr,
 
534
                                   float reduction)
 
535
{
 
536
    float thr = band->thr;
 
537
 
 
538
    if (band->energy > thr) {
 
539
        thr = powf(thr, 0.25f) + reduction;
 
540
        thr = powf(thr, 4.0f);
 
541
 
 
542
        /* This deviates from the 3GPP spec to match the reference encoder.
 
543
         * It performs min(thr_reduced, max(thr, energy/min_snr)) only for bands
 
544
         * that have hole avoidance on (active or inactive). It always reduces the
 
545
         * threshold of bands with hole avoidance off.
 
546
         */
 
547
        if (thr > band->energy * min_snr && band->avoid_holes != PSY_3GPP_AH_NONE) {
 
548
            thr = FFMAX(band->thr, band->energy * min_snr);
 
549
            band->avoid_holes = PSY_3GPP_AH_ACTIVE;
 
550
        }
 
551
    }
 
552
 
 
553
    return thr;
 
554
}
 
555
 
388
556
/**
389
557
 * Calculate band thresholds as suggested in 3GPP TS26.403
390
558
 */
395
563
    AacPsyChannel *pch  = &pctx->ch[channel];
396
564
    int start = 0;
397
565
    int i, w, g;
398
 
    const int      num_bands  = ctx->num_bands[wi->num_windows == 8];
399
 
    const uint8_t *band_sizes = ctx->bands[wi->num_windows == 8];
400
 
    AacPsyCoeffs  *coeffs     = pctx->psy_coef[wi->num_windows == 8];
 
566
    float desired_bits, desired_pe, delta_pe, reduction, spread_en[128] = {0};
 
567
    float a = 0.0f, active_lines = 0.0f, norm_fac = 0.0f;
 
568
    float pe = pctx->chan_bitrate > 32000 ? 0.0f : FFMAX(50.0f, 100.0f - pctx->chan_bitrate * 100.0f / 32000.0f);
 
569
    const int      num_bands   = ctx->num_bands[wi->num_windows == 8];
 
570
    const uint8_t *band_sizes  = ctx->bands[wi->num_windows == 8];
 
571
    AacPsyCoeffs  *coeffs      = pctx->psy_coef[wi->num_windows == 8];
 
572
    const float avoid_hole_thr = wi->num_windows == 8 ? PSY_3GPP_AH_THR_SHORT : PSY_3GPP_AH_THR_LONG;
401
573
 
402
574
    //calculate energies, initial thresholds and related values - 5.4.2 "Threshold Calculation"
403
575
    for (w = 0; w < wi->num_windows*16; w += 16) {
404
576
        for (g = 0; g < num_bands; g++) {
405
577
            AacPsyBand *band = &pch->band[w+g];
 
578
 
 
579
            float form_factor = 0.0f;
406
580
            band->energy = 0.0f;
407
 
            for (i = 0; i < band_sizes[g]; i++)
 
581
            for (i = 0; i < band_sizes[g]; i++) {
408
582
                band->energy += coefs[start+i] * coefs[start+i];
409
 
            band->thr     = band->energy * 0.001258925f;
410
 
            start        += band_sizes[g];
 
583
                form_factor  += sqrtf(fabs(coefs[start+i]));
 
584
            }
 
585
            band->thr      = band->energy * 0.001258925f;
 
586
            band->nz_lines = form_factor / powf(band->energy / band_sizes[g], 0.25f);
 
587
 
 
588
            start += band_sizes[g];
411
589
        }
412
590
    }
413
591
    //modify thresholds and energies - spread, threshold in quiet, pre-echo control
414
592
    for (w = 0; w < wi->num_windows*16; w += 16) {
415
593
        AacPsyBand *bands = &pch->band[w];
 
594
 
416
595
        //5.4.2.3 "Spreading" & 5.4.3 "Spreaded Energy Calculation"
417
 
        for (g = 1; g < num_bands; g++)
418
 
            bands[g].thr = FFMAX(bands[g].thr, bands[g-1].thr * coeffs[g].spread_hi[0]);
419
 
        for (g = num_bands - 2; g >= 0; g--)
420
 
            bands[g].thr = FFMAX(bands[g].thr, bands[g+1].thr * coeffs[g].spread_low[0]);
 
596
        spread_en[0] = bands[0].energy;
 
597
        for (g = 1; g < num_bands; g++) {
 
598
            bands[g].thr   = FFMAX(bands[g].thr,    bands[g-1].thr * coeffs[g].spread_hi[0]);
 
599
            spread_en[w+g] = FFMAX(bands[g].energy, spread_en[w+g-1] * coeffs[g].spread_hi[1]);
 
600
        }
 
601
        for (g = num_bands - 2; g >= 0; g--) {
 
602
            bands[g].thr   = FFMAX(bands[g].thr,   bands[g+1].thr * coeffs[g].spread_low[0]);
 
603
            spread_en[w+g] = FFMAX(spread_en[w+g], spread_en[w+g+1] * coeffs[g].spread_low[1]);
 
604
        }
421
605
        //5.4.2.4 "Threshold in quiet"
422
606
        for (g = 0; g < num_bands; g++) {
423
607
            AacPsyBand *band = &bands[g];
 
608
 
424
609
            band->thr_quiet = band->thr = FFMAX(band->thr, coeffs[g].ath);
425
610
            //5.4.2.5 "Pre-echo control"
426
611
            if (!(wi->window_type[0] == LONG_STOP_SEQUENCE || (wi->window_type[1] == LONG_START_SEQUENCE && !w)))
427
612
                band->thr = FFMAX(PSY_3GPP_RPEMIN*band->thr, FFMIN(band->thr,
428
613
                                  PSY_3GPP_RPELEV*pch->prev_band[w+g].thr_quiet));
 
614
 
 
615
            /* 5.6.1.3.1 "Prepatory steps of the perceptual entropy calculation" */
 
616
            pe += calc_pe_3gpp(band);
 
617
            a  += band->pe_const;
 
618
            active_lines += band->active_lines;
 
619
 
 
620
            /* 5.6.1.3.3 "Selection of the bands for avoidance of holes" */
 
621
            if (spread_en[w+g] * avoid_hole_thr > band->energy || coeffs[g].min_snr > 1.0f)
 
622
                band->avoid_holes = PSY_3GPP_AH_NONE;
 
623
            else
 
624
                band->avoid_holes = PSY_3GPP_AH_INACTIVE;
 
625
        }
 
626
    }
 
627
 
 
628
    /* 5.6.1.3.2 "Calculation of the desired perceptual entropy" */
 
629
    ctx->pe[channel] = pe;
 
630
    desired_bits = calc_bit_demand(pctx, pe, ctx->bitres.bits, ctx->bitres.size, wi->num_windows == 8);
 
631
    desired_pe = PSY_3GPP_BITS_TO_PE(desired_bits);
 
632
    /* NOTE: PE correction is kept simple. During initial testing it had very
 
633
     *       little effect on the final bitrate. Probably a good idea to come
 
634
     *       back and do more testing later.
 
635
     */
 
636
    if (ctx->bitres.bits > 0)
 
637
        desired_pe *= av_clipf(pctx->pe.previous / PSY_3GPP_BITS_TO_PE(ctx->bitres.bits),
 
638
                               0.85f, 1.15f);
 
639
    pctx->pe.previous = PSY_3GPP_BITS_TO_PE(desired_bits);
 
640
 
 
641
    if (desired_pe < pe) {
 
642
        /* 5.6.1.3.4 "First Estimation of the reduction value" */
 
643
        for (w = 0; w < wi->num_windows*16; w += 16) {
 
644
            reduction = calc_reduction_3gpp(a, desired_pe, pe, active_lines);
 
645
            pe = 0.0f;
 
646
            a  = 0.0f;
 
647
            active_lines = 0.0f;
 
648
            for (g = 0; g < num_bands; g++) {
 
649
                AacPsyBand *band = &pch->band[w+g];
 
650
 
 
651
                band->thr = calc_reduced_thr_3gpp(band, coeffs[g].min_snr, reduction);
 
652
                /* recalculate PE */
 
653
                pe += calc_pe_3gpp(band);
 
654
                a  += band->pe_const;
 
655
                active_lines += band->active_lines;
 
656
            }
 
657
        }
 
658
 
 
659
        /* 5.6.1.3.5 "Second Estimation of the reduction value" */
 
660
        for (i = 0; i < 2; i++) {
 
661
            float pe_no_ah = 0.0f, desired_pe_no_ah;
 
662
            active_lines = a = 0.0f;
 
663
            for (w = 0; w < wi->num_windows*16; w += 16) {
 
664
                for (g = 0; g < num_bands; g++) {
 
665
                    AacPsyBand *band = &pch->band[w+g];
 
666
 
 
667
                    if (band->avoid_holes != PSY_3GPP_AH_ACTIVE) {
 
668
                        pe_no_ah += band->pe;
 
669
                        a        += band->pe_const;
 
670
                        active_lines += band->active_lines;
 
671
                    }
 
672
                }
 
673
            }
 
674
            desired_pe_no_ah = FFMAX(desired_pe - (pe - pe_no_ah), 0.0f);
 
675
            if (active_lines > 0.0f)
 
676
                reduction += calc_reduction_3gpp(a, desired_pe_no_ah, pe_no_ah, active_lines);
 
677
 
 
678
            pe = 0.0f;
 
679
            for (w = 0; w < wi->num_windows*16; w += 16) {
 
680
                for (g = 0; g < num_bands; g++) {
 
681
                    AacPsyBand *band = &pch->band[w+g];
 
682
 
 
683
                    if (active_lines > 0.0f)
 
684
                        band->thr = calc_reduced_thr_3gpp(band, coeffs[g].min_snr, reduction);
 
685
                    pe += calc_pe_3gpp(band);
 
686
                    band->norm_fac = band->active_lines / band->thr;
 
687
                    norm_fac += band->norm_fac;
 
688
                }
 
689
            }
 
690
            delta_pe = desired_pe - pe;
 
691
            if (fabs(delta_pe) > 0.05f * desired_pe)
 
692
                break;
 
693
        }
 
694
 
 
695
        if (pe < 1.15f * desired_pe) {
 
696
            /* 6.6.1.3.6 "Final threshold modification by linearization" */
 
697
            norm_fac = 1.0f / norm_fac;
 
698
            for (w = 0; w < wi->num_windows*16; w += 16) {
 
699
                for (g = 0; g < num_bands; g++) {
 
700
                    AacPsyBand *band = &pch->band[w+g];
 
701
 
 
702
                    if (band->active_lines > 0.5f) {
 
703
                        float delta_sfb_pe = band->norm_fac * norm_fac * delta_pe;
 
704
                        float thr = band->thr;
 
705
 
 
706
                        thr *= powf(2.0f, delta_sfb_pe / band->active_lines);
 
707
                        if (thr > coeffs[g].min_snr * band->energy && band->avoid_holes == PSY_3GPP_AH_INACTIVE)
 
708
                            thr = FFMAX(band->thr, coeffs[g].min_snr * band->energy);
 
709
                        band->thr = thr;
 
710
                    }
 
711
                }
 
712
            }
 
713
        } else {
 
714
            /* 5.6.1.3.7 "Further perceptual entropy reduction" */
 
715
            g = num_bands;
 
716
            while (pe > desired_pe && g--) {
 
717
                for (w = 0; w < wi->num_windows*16; w+= 16) {
 
718
                    AacPsyBand *band = &pch->band[w+g];
 
719
                    if (band->avoid_holes != PSY_3GPP_AH_NONE && coeffs[g].min_snr < PSY_SNR_1DB) {
 
720
                        coeffs[g].min_snr = PSY_SNR_1DB;
 
721
                        band->thr = band->energy * PSY_SNR_1DB;
 
722
                        pe += band->active_lines * 1.5f - band->pe;
 
723
                    }
 
724
                }
 
725
            }
 
726
            /* TODO: allow more holes (unused without mid/side) */
429
727
        }
430
728
    }
431
729