Commit f50d9377 authored by Nathan Caldwell's avatar Nathan Caldwell Committed by Martin Storsjö

aacenc: Fix whitespace after last commit.

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 62582a69
......@@ -575,6 +575,7 @@ static void psy_3gpp_analyze(FFPsyContext *ctx, int channel,
for (w = 0; w < wi->num_windows*16; w += 16) {
for (g = 0; g < num_bands; g++) {
AacPsyBand *band = &pch->band[w+g];
float form_factor = 0.0f;
band->energy = 0.0f;
for (i = 0; i < band_sizes[g]; i++) {
......@@ -590,6 +591,7 @@ static void psy_3gpp_analyze(FFPsyContext *ctx, int channel,
//modify thresholds and energies - spread, threshold in quiet, pre-echo control
for (w = 0; w < wi->num_windows*16; w += 16) {
AacPsyBand *bands = &pch->band[w];
//5.4.2.3 "Spreading" & 5.4.3 "Spreaded Energy Calculation"
spread_en[0] = bands[0].energy;
for (g = 1; g < num_bands; g++) {
......@@ -603,6 +605,7 @@ static void psy_3gpp_analyze(FFPsyContext *ctx, int channel,
//5.4.2.4 "Threshold in quiet"
for (g = 0; g < num_bands; g++) {
AacPsyBand *band = &bands[g];
band->thr_quiet = band->thr = FFMAX(band->thr, coeffs[g].ath);
//5.4.2.5 "Pre-echo control"
if (!(wi->window_type[0] == LONG_STOP_SEQUENCE || (wi->window_type[1] == LONG_START_SEQUENCE && !w)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment