2015-08-21 19:27:38 +01:00
|
|
|
/*
|
|
|
|
|
* AAC encoder TNS
|
|
|
|
|
* Copyright (C) 2015 Rostislav Pehlivanov
|
|
|
|
|
*
|
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
|
*
|
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* AAC encoder temporal noise shaping
|
|
|
|
|
* @author Rostislav Pehlivanov ( atomnuker gmail com )
|
|
|
|
|
*/
|
|
|
|
|
|
2016-01-21 03:32:49 -03:00
|
|
|
#include "libavutil/libm.h"
|
2015-08-21 19:27:38 +01:00
|
|
|
#include "aacenc.h"
|
|
|
|
|
#include "aacenc_tns.h"
|
|
|
|
|
#include "aactab.h"
|
|
|
|
|
#include "aacenc_utils.h"
|
2024-02-29 18:55:13 +01:00
|
|
|
#include "lpc_functions.h"
|
2015-08-21 19:27:38 +01:00
|
|
|
|
2015-10-17 10:59:35 +01:00
|
|
|
/* Could be set to 3 to save an additional bit at the cost of little quality */
|
|
|
|
|
#define TNS_Q_BITS 4
|
|
|
|
|
|
|
|
|
|
/* Coefficient resolution in short windows */
|
2015-12-08 13:21:41 +00:00
|
|
|
#define TNS_Q_BITS_IS8 4
|
2015-10-17 10:59:35 +01:00
|
|
|
|
2015-12-06 13:34:33 +00:00
|
|
|
/* We really need the bits we save here elsewhere */
|
|
|
|
|
#define TNS_ENABLE_COEF_COMPRESSION
|
2015-10-17 10:55:19 +01:00
|
|
|
|
2015-10-17 10:59:35 +01:00
|
|
|
/* TNS will only be used if the LPC gain is within these margins */
|
2015-12-06 13:34:33 +00:00
|
|
|
#define TNS_GAIN_THRESHOLD_LOW 1.4f
|
|
|
|
|
#define TNS_GAIN_THRESHOLD_HIGH 1.16f*TNS_GAIN_THRESHOLD_LOW
|
2015-10-17 10:59:35 +01:00
|
|
|
|
2015-09-12 13:10:28 +01:00
|
|
|
static inline int compress_coeffs(int *coef, int order, int c_bits)
|
|
|
|
|
{
|
2015-10-17 10:55:19 +01:00
|
|
|
int i;
|
2015-09-12 13:10:28 +01:00
|
|
|
const int low_idx = c_bits ? 4 : 2;
|
|
|
|
|
const int shift_val = c_bits ? 8 : 4;
|
|
|
|
|
const int high_idx = c_bits ? 11 : 5;
|
2015-10-17 10:55:19 +01:00
|
|
|
#ifndef TNS_ENABLE_COEF_COMPRESSION
|
|
|
|
|
return 0;
|
|
|
|
|
#endif /* TNS_ENABLE_COEF_COMPRESSION */
|
|
|
|
|
for (i = 0; i < order; i++)
|
|
|
|
|
if (coef[i] >= low_idx && coef[i] <= high_idx)
|
|
|
|
|
return 0;
|
2015-09-12 13:10:28 +01:00
|
|
|
for (i = 0; i < order; i++)
|
2015-10-17 10:55:19 +01:00
|
|
|
coef[i] -= (coef[i] > high_idx) ? shift_val : 0;
|
|
|
|
|
return 1;
|
2015-09-12 13:10:28 +01:00
|
|
|
}
|
|
|
|
|
|
2015-08-21 19:27:38 +01:00
|
|
|
/**
|
|
|
|
|
* Encode TNS data.
|
2015-10-17 10:55:19 +01:00
|
|
|
* Coefficient compression is simply not lossless as it should be
|
|
|
|
|
* on any decoder tested and as such is not active.
|
2015-08-21 19:27:38 +01:00
|
|
|
*/
|
2015-08-22 06:11:23 +01:00
|
|
|
void ff_aac_encode_tns_info(AACEncContext *s, SingleChannelElement *sce)
|
2015-08-21 19:27:38 +01:00
|
|
|
{
|
2015-09-01 06:44:07 +01:00
|
|
|
TemporalNoiseShaping *tns = &sce->tns;
|
2015-12-06 13:34:33 +00:00
|
|
|
int i, w, filt, coef_compress = 0, coef_len;
|
2015-10-17 10:58:06 +01:00
|
|
|
const int is8 = sce->ics.window_sequence[0] == EIGHT_SHORT_SEQUENCE;
|
|
|
|
|
const int c_bits = is8 ? TNS_Q_BITS_IS8 == 4 : TNS_Q_BITS == 4;
|
2015-08-21 19:27:38 +01:00
|
|
|
|
|
|
|
|
if (!sce->tns.present)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < sce->ics.num_windows; i++) {
|
|
|
|
|
put_bits(&s->pb, 2 - is8, sce->tns.n_filt[i]);
|
2015-10-17 10:58:06 +01:00
|
|
|
if (!tns->n_filt[i])
|
|
|
|
|
continue;
|
|
|
|
|
put_bits(&s->pb, 1, c_bits);
|
|
|
|
|
for (filt = 0; filt < tns->n_filt[i]; filt++) {
|
|
|
|
|
put_bits(&s->pb, 6 - 2 * is8, tns->length[i][filt]);
|
|
|
|
|
put_bits(&s->pb, 5 - 2 * is8, tns->order[i][filt]);
|
|
|
|
|
if (!tns->order[i][filt])
|
|
|
|
|
continue;
|
|
|
|
|
put_bits(&s->pb, 1, tns->direction[i][filt]);
|
|
|
|
|
coef_compress = compress_coeffs(tns->coef_idx[i][filt],
|
|
|
|
|
tns->order[i][filt], c_bits);
|
|
|
|
|
put_bits(&s->pb, 1, coef_compress);
|
|
|
|
|
coef_len = c_bits + 3 - coef_compress;
|
|
|
|
|
for (w = 0; w < tns->order[i][filt]; w++)
|
|
|
|
|
put_bits(&s->pb, coef_len, tns->coef_idx[i][filt][w]);
|
2015-08-21 19:27:38 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-29 06:47:31 +01:00
|
|
|
/* Apply TNS filter */
|
2015-09-01 06:44:07 +01:00
|
|
|
void ff_aac_apply_tns(AACEncContext *s, SingleChannelElement *sce)
|
2015-08-21 19:27:38 +01:00
|
|
|
{
|
2015-08-29 06:47:31 +01:00
|
|
|
TemporalNoiseShaping *tns = &sce->tns;
|
2015-09-01 06:44:07 +01:00
|
|
|
IndividualChannelStream *ics = &sce->ics;
|
|
|
|
|
int w, filt, m, i, top, order, bottom, start, end, size, inc;
|
|
|
|
|
const int mmm = FFMIN(ics->tns_max_bands, ics->max_sfb);
|
2015-12-05 19:06:39 +00:00
|
|
|
float lpc[TNS_MAX_ORDER];
|
2015-08-29 06:47:31 +01:00
|
|
|
|
2015-09-01 06:44:07 +01:00
|
|
|
for (w = 0; w < ics->num_windows; w++) {
|
|
|
|
|
bottom = ics->num_swb;
|
2015-08-29 06:47:31 +01:00
|
|
|
for (filt = 0; filt < tns->n_filt[w]; filt++) {
|
|
|
|
|
top = bottom;
|
|
|
|
|
bottom = FFMAX(0, top - tns->length[w][filt]);
|
|
|
|
|
order = tns->order[w][filt];
|
2015-09-01 06:44:07 +01:00
|
|
|
if (order == 0)
|
2015-08-29 06:47:31 +01:00
|
|
|
continue;
|
|
|
|
|
|
2015-09-01 06:44:07 +01:00
|
|
|
// tns_decode_coef
|
2024-12-21 20:43:53 +11:00
|
|
|
compute_lpc_coefs(tns->coef[w][filt], 0, order, lpc, 0, 0, 0, NULL);
|
2015-09-01 06:44:07 +01:00
|
|
|
|
|
|
|
|
start = ics->swb_offset[FFMIN(bottom, mmm)];
|
|
|
|
|
end = ics->swb_offset[FFMIN( top, mmm)];
|
2015-08-29 06:47:31 +01:00
|
|
|
if ((size = end - start) <= 0)
|
|
|
|
|
continue;
|
|
|
|
|
if (tns->direction[w][filt]) {
|
|
|
|
|
inc = -1;
|
|
|
|
|
start = end - 1;
|
|
|
|
|
} else {
|
|
|
|
|
inc = 1;
|
|
|
|
|
}
|
|
|
|
|
start += w * 128;
|
|
|
|
|
|
2015-12-05 19:06:39 +00:00
|
|
|
/* AR filter */
|
|
|
|
|
for (m = 0; m < size; m++, start += inc) {
|
|
|
|
|
for (i = 1; i <= FFMIN(m, order); i++) {
|
|
|
|
|
sce->coeffs[start] += lpc[i-1]*sce->pcoeffs[start - i*inc];
|
2015-10-17 10:50:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
2015-08-21 19:27:38 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-12 13:04:27 +01:00
|
|
|
/*
|
|
|
|
|
* c_bits - 1 if 4 bit coefficients, 0 if 3 bit coefficients
|
|
|
|
|
*/
|
|
|
|
|
static inline void quantize_coefs(double *coef, int *idx, float *lpc, int order,
|
|
|
|
|
int c_bits)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2024-02-29 21:51:59 +01:00
|
|
|
const float *quant_arr = ff_tns_tmp2_map[c_bits];
|
2015-09-12 13:04:27 +01:00
|
|
|
for (i = 0; i < order; i++) {
|
2015-12-06 13:34:33 +00:00
|
|
|
idx[i] = quant_array_idx(coef[i], quant_arr, c_bits ? 16 : 8);
|
2015-09-12 13:04:27 +01:00
|
|
|
lpc[i] = quant_arr[idx[i]];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 3 bits per coefficient with 8 short windows
|
|
|
|
|
*/
|
2015-08-22 06:11:23 +01:00
|
|
|
void ff_aac_search_for_tns(AACEncContext *s, SingleChannelElement *sce)
|
2015-08-21 19:27:38 +01:00
|
|
|
{
|
|
|
|
|
TemporalNoiseShaping *tns = &sce->tns;
|
2016-01-17 13:14:24 -03:00
|
|
|
int w, g, count = 0;
|
2015-12-06 13:34:33 +00:00
|
|
|
double gain, coefs[MAX_LPC_ORDER];
|
2015-09-01 06:44:07 +01:00
|
|
|
const int mmm = FFMIN(sce->ics.tns_max_bands, sce->ics.max_sfb);
|
2015-08-21 19:27:38 +01:00
|
|
|
const int is8 = sce->ics.window_sequence[0] == EIGHT_SHORT_SEQUENCE;
|
2015-10-17 10:59:35 +01:00
|
|
|
const int c_bits = is8 ? TNS_Q_BITS_IS8 == 4 : TNS_Q_BITS == 4;
|
2015-12-06 13:34:33 +00:00
|
|
|
const int sfb_start = av_clip(tns_min_sfb[is8][s->samplerate_index], 0, mmm);
|
|
|
|
|
const int sfb_end = av_clip(sce->ics.num_swb, 0, mmm);
|
aacenc: remove support for AAC Main profile
The Main profile of AAC is... terrible.
It enables the use of delta coding across coefficients of two frames
to try to increase compression, and it enabled one more pole for TNS
filters.
What the AAC authors failed to take into account were basic
mathematics, as MDCT leakage (e.g. the spread of each frequency when
represented in a discrete spectrum) is significant in most audio codecs.
This leads to huge variations between each frame, basically rendering
prediction completely pointless.
In fact, enabling AAC-Main prediction does not, in general, even recoup
the metadata losses from signalling the profile and prediction properties
in the first place. So you lose efficiency by using AAC Main.
The rumor is that it was put in the AAC spec for patent reasons, though
patent-wise, it has about as much use as a patent for a bicycle designed
for use by snakes.
The only other thing AAC Main changes is it permits 3-pole TNS filters.
When AAC's bands are absolutely tiny, except for very high frequency bands,
where you're likely to use PNS instead.
Just get rid of it.
2025-02-08 04:42:54 +01:00
|
|
|
const int order = is8 ? 7 : 12;
|
2015-10-17 10:59:35 +01:00
|
|
|
const int slant = sce->ics.window_sequence[0] == LONG_STOP_SEQUENCE ? 1 :
|
|
|
|
|
sce->ics.window_sequence[0] == LONG_START_SEQUENCE ? 0 : 2;
|
2016-01-21 03:32:49 -03:00
|
|
|
const int sfb_len = sfb_end - sfb_start;
|
|
|
|
|
const int coef_len = sce->ics.swb_offset[sfb_end] - sce->ics.swb_offset[sfb_start];
|
2025-02-08 04:35:31 +01:00
|
|
|
const int n_filt = is8 ? 1 : order != TNS_MAX_ORDER ? 2 : 3;
|
2016-01-21 03:32:49 -03:00
|
|
|
|
|
|
|
|
if (coef_len <= 0 || sfb_len <= 0) {
|
|
|
|
|
sce->tns.present = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-09-01 06:44:07 +01:00
|
|
|
|
2015-08-29 19:01:59 +01:00
|
|
|
for (w = 0; w < sce->ics.num_windows; w++) {
|
2025-02-08 04:35:31 +01:00
|
|
|
float en[4] = {0.0f, 0.0f, 0.0f, 0.0f};
|
2024-05-12 08:53:41 +00:00
|
|
|
int oc_start = 0;
|
2016-01-21 03:32:49 -03:00
|
|
|
int coef_start = sce->ics.swb_offset[sfb_start];
|
2015-09-01 06:44:07 +01:00
|
|
|
|
2025-02-08 04:35:31 +01:00
|
|
|
if (n_filt == 2) {
|
|
|
|
|
for (g = sfb_start; g < sce->ics.num_swb && g <= sfb_end; g++) {
|
|
|
|
|
FFPsyBand *band = &s->psy.ch[s->cur_channel].psy_bands[w*16+g];
|
|
|
|
|
if (g > sfb_start + (sfb_len/2))
|
|
|
|
|
en[1] += band->energy; /* End */
|
|
|
|
|
else
|
|
|
|
|
en[0] += band->energy; /* Start */
|
|
|
|
|
}
|
|
|
|
|
en[2] = en[0];
|
|
|
|
|
} else {
|
|
|
|
|
for (g = sfb_start; g < sce->ics.num_swb && g <= sfb_end; g++) {
|
|
|
|
|
FFPsyBand *band = &s->psy.ch[s->cur_channel].psy_bands[w*16+g];
|
|
|
|
|
if (g > sfb_start + (sfb_len/2) + (sfb_len/4))
|
|
|
|
|
en[2] += band->energy; /* End */
|
|
|
|
|
else if (g > sfb_start + (sfb_len/2) - (sfb_len/4))
|
|
|
|
|
en[1] += band->energy; /* Middle */
|
|
|
|
|
else
|
|
|
|
|
en[0] += band->energy; /* Start */
|
|
|
|
|
}
|
|
|
|
|
en[3] = en[0];
|
2015-08-21 19:27:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* LPC */
|
2016-01-16 23:02:41 -03:00
|
|
|
gain = ff_lpc_calc_ref_coefs_f(&s->lpc, &sce->coeffs[w*128 + coef_start],
|
2015-09-01 06:44:07 +01:00
|
|
|
coef_len, order, coefs);
|
|
|
|
|
|
2016-01-21 03:32:49 -03:00
|
|
|
if (!order || !isfinite(gain) || gain < TNS_GAIN_THRESHOLD_LOW || gain > TNS_GAIN_THRESHOLD_HIGH)
|
2015-10-17 10:59:35 +01:00
|
|
|
continue;
|
2015-12-06 13:34:33 +00:00
|
|
|
|
2025-02-08 04:35:31 +01:00
|
|
|
tns->n_filt[w] = n_filt;
|
2015-12-06 13:34:33 +00:00
|
|
|
for (g = 0; g < tns->n_filt[w]; g++) {
|
2025-02-08 04:35:31 +01:00
|
|
|
tns->direction[w][g] = slant != 2 ? slant : en[g] < en[g + 1];
|
2024-05-12 08:53:41 +00:00
|
|
|
tns->order[w][g] = order/tns->n_filt[w];
|
|
|
|
|
tns->length[w][g] = sfb_len/tns->n_filt[w];
|
2015-12-06 13:34:33 +00:00
|
|
|
quantize_coefs(&coefs[oc_start], tns->coef_idx[w][g], tns->coef[w][g],
|
|
|
|
|
tns->order[w][g], c_bits);
|
|
|
|
|
oc_start += tns->order[w][g];
|
2015-08-21 19:27:38 +01:00
|
|
|
}
|
2015-12-06 13:34:33 +00:00
|
|
|
count++;
|
2015-08-21 19:27:38 +01:00
|
|
|
}
|
|
|
|
|
sce->tns.present = !!count;
|
|
|
|
|
}
|