FFmpeg
Loading...
Searching...
No Matches
aacenc.h
Go to the documentation of this file.
1/*
2 * AAC encoder
3 * Copyright (C) 2008 Konstantin Shishkov
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef AVCODEC_AACENC_H
23#define AVCODEC_AACENC_H
24
25#include <stdint.h>
26
28#include "libavutil/float_dsp.h"
30#include "libavutil/tx.h"
31
32#include "avcodec.h"
33#include "put_bits.h"
34
35#include "aac.h"
36#include "aacencdsp.h"
37#include "audio_frame_queue.h"
38#include "psymodel.h"
39
40#include "lpc.h"
41
42#define CLIP_AVOIDANCE_FACTOR 0.95f
43
51
52/**
53 * Predictor State
54 */
55typedef struct PredictorState {
56 float cor0;
57 float cor1;
58 float var0;
59 float var1;
60 float r0;
61 float r1;
62 float k1;
63 float x_est;
65
66typedef struct AACEncOptions {
67 int coder;
68 int pns;
69 int tns;
70 int pce;
73 int nmr_speed; ///< NMR coder speed level: 0 = slowest/best, higher is faster
76
77/**
78 * Individual Channel Stream
79 */
80typedef struct IndividualChannelStream {
81 uint8_t max_sfb; ///< number of scalefactor bands per group
83 uint8_t use_kb_window[2]; ///< If set, use Kaiser-Bessel window, otherwise use a sine window.
84 uint8_t group_len[8];
85 const uint16_t *swb_offset; ///< table of offsets to the lowest spectral coefficient of a scalefactor band, sfb, for a particular window
86 const uint8_t *swb_sizes; ///< table of scalefactor band sizes for a particular window
87 int num_swb; ///< number of scalefactor window bands
88 int num_windows;
89 int tns_max_bands;
90 uint8_t window_clipping[8]; ///< set if a certain window is near clipping
91 float clip_avoidance_factor; ///< set if any window is near clipping to the necessary atennuation factor to avoid it
93
94/**
95 * Temporal Noise Shaping
96 */
97typedef struct TemporalNoiseShaping {
98 int present;
99 int n_filt[8];
100 int length[8][4];
101 int direction[8][4];
102 int order[8][4];
104 float coef[8][4][TNS_MAX_ORDER];
106
107/**
108 * Single Channel Element - used for both SCE and LFE elements.
109 */
110typedef struct SingleChannelElement {
114 enum BandType band_type[128]; ///< band types
115 enum BandType band_alt[128]; ///< alternative band type
116 int sf_idx[128]; ///< scalefactor indices
117 uint8_t zeroes[128]; ///< band is not coded
118 uint8_t can_pns[128]; ///< band is allowed to PNS (informative)
119 float is_ener[128]; ///< Intensity stereo pos
120 float pns_ener[128]; ///< Noise energy values
121 DECLARE_ALIGNED(32, float, pcoeffs)[1024]; ///< coefficients for IMDCT, pristine
122 DECLARE_ALIGNED(32, float, coeffs)[1024]; ///< coefficients for IMDCT, maybe processed
123 DECLARE_ALIGNED(32, float, ret_buf)[2048]; ///< PCM output buffer
126
127/**
128 * channel element - generic struct for SCE/CPE/CCE/LFE
129 */
130typedef struct ChannelElement {
131 // CPE specific
132 int common_window; ///< Set if channels share a common 'IndividualChannelStream' in bitstream.
133 int ms_mode; ///< Signals mid/side stereo flags coding mode
134 uint8_t is_mode; ///< Set if any bands have been encoded using intensity stereo
135 uint8_t ms_mask[128]; ///< Set if mid/side stereo is used for each scalefactor window band
136 uint8_t is_mask[128]; ///< Set if intensity stereo is used
137 // shared
140
141struct AACEncContext;
142
145 SingleChannelElement *sce, const float lambda);
147 int win, int group_len, const float lambda);
148 void (*quantize_and_encode_band)(struct AACEncContext *s, PutBitContext *pb, const float *in, float *out, int size,
149 int scale_idx, int cb, const float lambda, int rtz);
159
161
170
171/** per-band scalefactor candidates above the finest codeable sf (NMR coder) */
172#define NMR_NCAND 96
173
174/**
175 * NMR coder per-band candidate cost curves (~96 KiB) and rate-control carry-over
176 */
177/**
178 * Per-channel trellis state for one solve. A channel pair (CPE) is solved
179 * jointly against a pooled budget: the first channel's setup is stored here
180 * and committed together with the second channel under one shared lambda.
181 */
182typedef struct NMRSlot {
184 int si; ///< curve-bank index (nd/nb slot)
185 int cur_ch; ///< encoder channel index (psy/cache context)
186 int nbnd; ///< coded-band count, 0 = nothing codeable
187 int is8; ///< EIGHT_SHORT frame
188 int bidx[128]; ///< sce band index (w*16+g)
189 int bw[128], bg[128], bst[128]; ///< window group, swb, coef start
190 int blo[128]; ///< finest candidate scalefactor
191 int bnc[128]; ///< number of candidates
192 int chosen[128];
193 int act[128]; ///< active (non-PNS) band coding order
194 int nact;
195 int minsf[128];
196 float maxvals[128];
197 float thr[128]; ///< allocation-law effective threshold
198 float thr_real[128]; ///< real masking threshold (PNS gates)
199 float tnsg[128]; ///< TNS synthesis gain per band for THIS solve (1 = uncovered), M/S-aware (pair max)
200 float pener[128]; ///< band energy (PNS noise target)
201 float pspread[128]; ///< band tonality spread (1 = noise)
202 uint8_t is_pns[128]; ///< band coded as noise
203} NMRSlot;
204
205typedef struct AACNMRCurves {
206 float nd[2][128][NMR_NCAND]; ///< dist / threshold per candidate, per pair slot
207 int nb[2][128][NMR_NCAND]; ///< spectral bits per candidate, per pair slot
208 NMRSlot slot[2]; ///< pair slots (solo solves use slot 0)
209 int pair; ///< current element is a CPE: pool the pair budget
210 int rc_gl; ///< rc_global latched at frame start: the corridor bootstrap must not flip the CPE defer logic between channels of one frame
211 int rc_fill_seeded; ///< reservoir seeded full at stream start (decoder buffer starts full)
212 int pending; ///< slot 0 holds a deferred first channel
213 uint8_t zero_prev[16][128]; ///< per-channel band zero state last frame (zeroing hysteresis)
214 int zero_nw[16]; ///< window count zero_prev was recorded on
215 float thr_prev[16][64]; ///< per-channel long-grid law thresholds of the previous frame
216 uint8_t thr_prev_ok[16]; ///< thr_prev holds a long-frame measurement
217 uint8_t pns_prev[16][128]; ///< per-channel PNS state last frame (decision hysteresis)
218 uint8_t pns_run_on[16][128]; ///< consecutive frames the band has WANTED PNS
219 uint8_t pns_run_off[16][128]; ///< consecutive frames the band has wanted OUT
220 uint8_t smode[16][128]; ///< per-pair previous stereo mode per band, two banks per pair (long/short grid): each grid's memory persists across the other's frames instead of being wiped at window switches
221 uint8_t smode_band[8][128]; ///< last decided stereo mode per band index (side-band tests)
222 uint8_t tns8_prev[16]; ///< short-TNS accepted last frame (per channel): Schmitt state for the accept bar
223 uint8_t sinit[16]; ///< stereo state bank initialized
224 int smode_nw[8]; ///< window count the stored modes were decided on
225 float sema_es[16][128]; ///< smoothed side energy per band (stereo-decision EMA)
226 float sema_em[16][128]; ///< smoothed mid energy per band
227 float sema_img[16][128]; ///< smoothed I/S image-error/mask ratio per band
228 float lam[16]; ///< per-channel operating lambda of the previous frame, 0 = none yet
229 int counted[16]; ///< per-channel bits the trellis accounted for in the last solve
230 float side_ema; ///< running estimate of real-minus-counted bits per frame
231 int side_inited; ///< side_ema holds a measurement
232
233 int64_t rc_frame_num; ///< frame the reservoir was last advanced for
234 float lam_rc; ///< global-lambda rate control: operating lambda, 0 until bootstrapped
235 int rc_fill; ///< virtual bit reservoir fill, + = bits saved vs nominal
236 int frames_since_short; ///< long-block frames since the last short run (the "gap"): large = isolated transient
237 int prev_was_short; ///< previous frame was a short block (for run-start detection)
238 float run_burst; ///< transient bit-burst factor, set at run start and held across the short run
239 float lam_slew; ///< final operating lambda of the previous RC frame (slew-limiter state)
240 float nd_ema; ///< smoothed achieved distortion/real-mask over long-frame coded bands (1 = at threshold; >>1 flags psy-unreliable noise-class content)
241 float press; ///< rate-pressure ramp [0,1]: lambda EMA against anchors that scale up when nd_ema flags noise-class content (psy masks unreliable there, lambda reads inflated)
242 float lam_short_ema; ///< smoothed operating lambda of short frames
243 float lam_long_ema; ///< smoothed operating lambda of long frames
244 float lam_floor; ///< lambda min-tracker (snaps down, +2%/frame up): sustained-strain floor; bursty spikes at a comfortable rate cannot raise it
246
247typedef struct AACPCEInfo {
249 uint8_t num_ele[4]; ///< front, side, back, lfe
250 uint8_t pairing[3][8]; ///< front, side, back
251 uint8_t index[4][8]; ///< front, side, back, lfe
252 uint8_t height[3][8]; ///< front, side, back
253 uint8_t config_map[16]; ///< configs the encoder's channel specific settings
254 uint8_t reorder_map[16]; ///< maps channels from lavc to aac order
255} AACPCEInfo;
256
257/**
258 * AAC encoder context
259 */
260typedef struct AACEncContext {
262 AACEncOptions options; ///< encoding options
264 AVTXContext *mdct1024; ///< long (1024 samples) frame transform context
266 AVTXContext *mdct128; ///< short (128 samples) frame transform context
269 AACPCEInfo pce; ///< PCE data, if needed
270 float *planar_samples[16]; ///< saved preprocessed input
271
272 int profile; ///< copied from avctx
273 int needs_pce; ///< flag for non-standard layout
274 int needs_height_ext; ///< flag for PCE height extension
275 LPCContext lpc; ///< used by TNS
276 int samplerate_index; ///< MPEG-4 samplerate index
277 int channels; ///< channel count
278 int bandwidth; ///< coding bandwidth in Hz, fixed at init; the psy model and the coders' band cutoff agree on it
279 const uint8_t *reorder_map; ///< lavc to aac reorder map
280 const uint8_t *chan_map; ///< channel configuration map
281
282 ChannelElement *cpe; ///< channel elements
285 int cur_channel; ///< current channel for coder context
287 float lambda;
288 int last_frame_pb_count; ///< number of bits for the previous frame
289 float lambda_sum; ///< sum(lambda), for Qvg reporting
290 int lambda_count; ///< count(lambda), for Qvg reporting
291 /* tool-usage stats, reported at close: per-coded-band for PNS (channel bands),
292 * per-coded-pair-band for M/S and I/S (CPE bands) */
293 uint64_t stat_ch_bands, stat_pns; ///< coded channel-bands, of which PNS
294 uint64_t stat_cpe_bands, stat_ms, stat_is; ///< coded CPE pair-bands, of which M/S, I/S
295 uint64_t stat_chans, stat_short; ///< coded channels, of which short-block (transient)
296 uint64_t stat_tns_long, stat_tns_short; ///< TNS-active channels among long / short blocks
297 enum RawDataBlockType cur_type; ///< channel group type cur_channel belongs to
298
300 DECLARE_ALIGNED(32, int, qcoefs)[96]; ///< quantized coefficients
301 DECLARE_ALIGNED(32, float, scoefs)[1024]; ///< scaled coefficients
302
304 AACQuantizeBandCostCacheEntry quantize_band_cost_cache[256][128]; ///< memoization area for quantize_band_cost
305
307 AACNMRCurves *nmr; ///< NMR coder scratch (NULL unless coder == nmr)
308
309 struct {
310 float *samples;
313
315
316
317#endif /* AVCODEC_AACENC_H */
AAC definitions and structures.
WindowSequence
Definition aac.h:63
BandType
Definition aac.h:70
RawDataBlockType
Definition aac.h:43
#define TNS_MAX_ORDER
Definition aac.h:36
#define MAX_PREDICTORS
Definition aac.h:89
const AACCoefficientsEncoder ff_aac_coders[AAC_CODER_NB]
Definition aaccoder.c:827
#define NMR_NCAND
per-band scalefactor candidates above the finest codeable sf (NMR coder)
Definition aacenc.h:172
AACCoder
Definition aacenc.h:44
@ AAC_CODER_FAST
Definition aacenc.h:46
@ AAC_CODER_NMR
Definition aacenc.h:47
@ AAC_CODER_NB
Definition aacenc.h:49
@ AAC_CODER_TWOLOOP
Definition aacenc.h:45
void ff_quantize_band_cost_cache_init(struct AACEncContext *s)
Definition aacenc.c:525
static float win(SuperEqualizerContext *s, float n, int N)
static FILE * out
Libavcodec external API header.
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
long long int64_t
Definition coverity.c:34
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
bitstream writer API
void(* encode_tns_info)(struct AACEncContext *s, SingleChannelElement *sce)
Definition aacenc.h:150
void(* search_for_ms)(struct AACEncContext *s, ChannelElement *cpe)
Definition aacenc.h:156
void(* search_for_quantizers)(AVCodecContext *avctx, struct AACEncContext *s, SingleChannelElement *sce, const float lambda)
Definition aacenc.h:144
void(* mark_pns)(struct AACEncContext *s, AVCodecContext *avctx, SingleChannelElement *sce)
Definition aacenc.h:154
void(* search_for_pns)(struct AACEncContext *s, AVCodecContext *avctx, SingleChannelElement *sce)
Definition aacenc.h:153
void(* encode_window_bands_info)(struct AACEncContext *s, SingleChannelElement *sce, int win, int group_len, const float lambda)
Definition aacenc.h:146
void(* apply_tns_filt)(struct AACEncContext *s, SingleChannelElement *sce)
Definition aacenc.h:151
void(* quantize_and_encode_band)(struct AACEncContext *s, PutBitContext *pb, const float *in, float *out, int size, int scale_idx, int cb, const float lambda, int rtz)
Definition aacenc.h:148
void(* set_special_band_scalefactors)(struct AACEncContext *s, SingleChannelElement *sce)
Definition aacenc.h:152
void(* search_for_tns)(struct AACEncContext *s, SingleChannelElement *sce)
Definition aacenc.h:155
void(* search_for_is)(struct AACEncContext *s, AVCodecContext *avctx, ChannelElement *cpe)
Definition aacenc.h:157
AAC encoder context.
Definition aacenc.h:260
int profile
copied from avctx
Definition aacenc.h:272
AudioFrameQueue afq
Definition aacenc.h:299
AACPCEInfo pce
PCE data, if needed.
Definition aacenc.h:269
uint64_t stat_is
coded CPE pair-bands, of which M/S, I/S
Definition aacenc.h:294
AVTXContext * mdct1024
long (1024 samples) frame transform context
Definition aacenc.h:264
float * planar_samples[16]
saved preprocessed input
Definition aacenc.h:270
FFPsyContext psy
Definition aacenc.h:283
int last_frame_pb_count
number of bits for the previous frame
Definition aacenc.h:288
int needs_height_ext
flag for PCE height extension
Definition aacenc.h:274
float * samples
Definition aacenc.h:310
uint64_t stat_tns_long
Definition aacenc.h:296
int random_state
Definition aacenc.h:286
LPCContext lpc
used by TNS
Definition aacenc.h:275
const uint8_t * chan_map
channel configuration map
Definition aacenc.h:280
uint16_t quantize_band_cost_cache_generation
Definition aacenc.h:303
int qcoefs[96]
quantized coefficients
Definition aacenc.h:300
AACQuantizeBandCostCacheEntry quantize_band_cost_cache[256][128]
memoization area for quantize_band_cost
Definition aacenc.h:304
uint64_t stat_ms
Definition aacenc.h:294
AVFloatDSPContext * fdsp
Definition aacenc.h:268
int bandwidth
coding bandwidth in Hz, fixed at init; the psy model and the coders' band cutoff agree on it
Definition aacenc.h:278
AVTXContext * mdct128
short (128 samples) frame transform context
Definition aacenc.h:266
AACEncDSPContext aacdsp
Definition aacenc.h:306
float lambda_sum
sum(lambda), for Qvg reporting
Definition aacenc.h:289
av_tx_fn mdct1024_fn
Definition aacenc.h:265
AACNMRCurves * nmr
NMR coder scratch (NULL unless coder == nmr)
Definition aacenc.h:307
int channels
channel count
Definition aacenc.h:277
ChannelElement * cpe
channel elements
Definition aacenc.h:282
av_tx_fn mdct128_fn
Definition aacenc.h:267
int needs_pce
flag for non-standard layout
Definition aacenc.h:273
uint64_t stat_ch_bands
Definition aacenc.h:293
uint64_t stat_pns
coded channel-bands, of which PNS
Definition aacenc.h:293
float lambda
Definition aacenc.h:287
int lambda_count
count(lambda), for Qvg reporting
Definition aacenc.h:290
PutBitContext pb
Definition aacenc.h:263
uint64_t stat_tns_short
TNS-active channels among long / short blocks.
Definition aacenc.h:296
int cur_channel
current channel for coder context
Definition aacenc.h:285
float scoefs[1024]
scaled coefficients
Definition aacenc.h:301
const AACCoefficientsEncoder * coder
Definition aacenc.h:284
uint64_t stat_short
coded channels, of which short-block (transient)
Definition aacenc.h:295
AACEncOptions options
encoding options
Definition aacenc.h:262
const uint8_t * reorder_map
lavc to aac reorder map
Definition aacenc.h:279
enum RawDataBlockType cur_type
channel group type cur_channel belongs to
Definition aacenc.h:297
int samplerate_index
MPEG-4 samplerate index.
Definition aacenc.h:276
uint64_t stat_chans
Definition aacenc.h:295
uint64_t stat_cpe_bands
Definition aacenc.h:294
AVClass * av_class
Definition aacenc.h:261
int mid_side
Definition aacenc.h:71
int nmr_speed
NMR coder speed level: 0 = slowest/best, higher is faster.
Definition aacenc.h:73
int intensity_stereo
Definition aacenc.h:72
int allow_71wide
Definition aacenc.h:74
float nd[2][128][NMR_NCAND]
dist / threshold per candidate, per pair slot
Definition aacenc.h:206
int frames_since_short
long-block frames since the last short run (the "gap"): large = isolated transient
Definition aacenc.h:236
float press
rate-pressure ramp [0,1]: lambda EMA against anchors that scale up when nd_ema flags noise-class cont...
Definition aacenc.h:241
int nb[2][128][NMR_NCAND]
spectral bits per candidate, per pair slot
Definition aacenc.h:207
uint8_t smode[16][128]
per-pair previous stereo mode per band, two banks per pair (long/short grid): each grid's memory pers...
Definition aacenc.h:220
float sema_es[16][128]
smoothed side energy per band (stereo-decision EMA)
Definition aacenc.h:225
uint8_t pns_prev[16][128]
per-channel PNS state last frame (decision hysteresis)
Definition aacenc.h:217
int zero_nw[16]
window count zero_prev was recorded on
Definition aacenc.h:214
uint8_t tns8_prev[16]
short-TNS accepted last frame (per channel): Schmitt state for the accept bar
Definition aacenc.h:222
float nd_ema
smoothed achieved distortion/real-mask over long-frame coded bands (1 = at threshold; >>1 flags psy-u...
Definition aacenc.h:240
NMRSlot slot[2]
pair slots (solo solves use slot 0)
Definition aacenc.h:208
float run_burst
transient bit-burst factor, set at run start and held across the short run
Definition aacenc.h:238
int rc_fill
virtual bit reservoir fill, + = bits saved vs nominal
Definition aacenc.h:235
int smode_nw[8]
window count the stored modes were decided on
Definition aacenc.h:224
int rc_gl
rc_global latched at frame start: the corridor bootstrap must not flip the CPE defer logic between ch...
Definition aacenc.h:210
uint8_t zero_prev[16][128]
per-channel band zero state last frame (zeroing hysteresis)
Definition aacenc.h:213
uint8_t smode_band[8][128]
last decided stereo mode per band index (side-band tests)
Definition aacenc.h:221
float lam_short_ema
smoothed operating lambda of short frames
Definition aacenc.h:242
float lam_floor
lambda min-tracker (snaps down, +2%/frame up): sustained-strain floor; bursty spikes at a comfortable...
Definition aacenc.h:244
uint8_t pns_run_off[16][128]
consecutive frames the band has wanted OUT
Definition aacenc.h:219
uint8_t pns_run_on[16][128]
consecutive frames the band has WANTED PNS
Definition aacenc.h:218
int64_t rc_frame_num
frame the reservoir was last advanced for
Definition aacenc.h:233
float lam_long_ema
smoothed operating lambda of long frames
Definition aacenc.h:243
int pending
slot 0 holds a deferred first channel
Definition aacenc.h:212
float sema_img[16][128]
smoothed I/S image-error/mask ratio per band
Definition aacenc.h:227
uint8_t sinit[16]
stereo state bank initialized
Definition aacenc.h:223
uint8_t thr_prev_ok[16]
thr_prev holds a long-frame measurement
Definition aacenc.h:216
int counted[16]
per-channel bits the trellis accounted for in the last solve
Definition aacenc.h:229
float thr_prev[16][64]
per-channel long-grid law thresholds of the previous frame
Definition aacenc.h:215
int prev_was_short
previous frame was a short block (for run-start detection)
Definition aacenc.h:237
int side_inited
side_ema holds a measurement
Definition aacenc.h:231
float lam_slew
final operating lambda of the previous RC frame (slew-limiter state)
Definition aacenc.h:239
float side_ema
running estimate of real-minus-counted bits per frame
Definition aacenc.h:230
float lam_rc
global-lambda rate control: operating lambda, 0 until bootstrapped
Definition aacenc.h:234
float sema_em[16][128]
smoothed mid energy per band
Definition aacenc.h:226
float lam[16]
per-channel operating lambda of the previous frame, 0 = none yet
Definition aacenc.h:228
int rc_fill_seeded
reservoir seeded full at stream start (decoder buffer starts full)
Definition aacenc.h:211
int pair
current element is a CPE: pool the pair budget
Definition aacenc.h:209
uint8_t num_ele[4]
front, side, back, lfe
Definition aacenc.h:249
AVChannelLayout layout
Definition aacenc.h:248
uint8_t index[4][8]
front, side, back, lfe
Definition aacenc.h:251
uint8_t pairing[3][8]
front, side, back
Definition aacenc.h:250
uint8_t config_map[16]
configs the encoder's channel specific settings
Definition aacenc.h:253
uint8_t height[3][8]
front, side, back
Definition aacenc.h:252
uint8_t reorder_map[16]
maps channels from lavc to aac order
Definition aacenc.h:254
An AVChannelLayout holds information about the channel layout of audio data.
Describe the class of an AVClass context structure.
Definition log.h:76
main external API structure.
Definition avcodec.h:443
channel element - generic struct for SCE/CPE/CCE/LFE
Definition aacdec.h:296
uint8_t ms_mask[128]
Set if mid/side stereo is used for each scalefactor window band.
Definition aacdec.h:300
SingleChannelElement ch[2]
Definition aacdec.h:302
uint8_t is_mask[128]
Set if intensity stereo is used.
Definition aacenc.h:136
int ms_mode
Signals mid/side stereo flags coding mode.
Definition aacenc.h:133
int common_window
Set if channels share a common 'IndividualChannelStream' in bitstream.
Definition aacenc.h:132
uint8_t is_mode
Set if any bands have been encoded using intensity stereo.
Definition aacenc.h:134
context used by psychoacoustic model
Definition psymodel.h:89
Individual Channel Stream.
Definition aacdec.h:169
uint8_t max_sfb
number of scalefactor bands per group
Definition aacdec.h:170
int num_swb
number of scalefactor window bands
Definition aacdec.h:178
uint8_t group_len[8]
Definition aacdec.h:175
uint8_t use_kb_window[2]
If set, use Kaiser-Bessel window, otherwise use a sine window.
Definition aacdec.h:172
float clip_avoidance_factor
set if any window is near clipping to the necessary atennuation factor to avoid it
Definition aacenc.h:91
const uint8_t * swb_sizes
table of scalefactor band sizes for a particular window
Definition aacenc.h:86
enum WindowSequence window_sequence[2]
Definition aacdec.h:171
const uint16_t * swb_offset
table of offsets to the lowest spectral coefficient of a scalefactor band, sfb, for a particular wind...
Definition aacdec.h:177
uint8_t window_clipping[8]
set if a certain window is near clipping
Definition aacdec.h:185
NMR coder per-band candidate cost curves (~96 KiB) and rate-control carry-over.
Definition aacenc.h:182
int chosen[128]
Definition aacenc.h:192
float pspread[128]
band tonality spread (1 = noise)
Definition aacenc.h:201
int nact
Definition aacenc.h:194
int minsf[128]
Definition aacenc.h:195
float tnsg[128]
TNS synthesis gain per band for THIS solve (1 = uncovered), M/S-aware (pair max)
Definition aacenc.h:199
int bst[128]
window group, swb, coef start
Definition aacenc.h:189
struct SingleChannelElement * sce
Definition aacenc.h:183
int bnc[128]
number of candidates
Definition aacenc.h:191
float thr_real[128]
real masking threshold (PNS gates)
Definition aacenc.h:198
uint8_t is_pns[128]
band coded as noise
Definition aacenc.h:202
int si
curve-bank index (nd/nb slot)
Definition aacenc.h:184
int bw[128]
Definition aacenc.h:189
float pener[128]
band energy (PNS noise target)
Definition aacenc.h:200
int bg[128]
Definition aacenc.h:189
float thr[128]
allocation-law effective threshold
Definition aacenc.h:197
int bidx[128]
sce band index (w*16+g)
Definition aacenc.h:188
int nbnd
coded-band count, 0 = nothing codeable
Definition aacenc.h:186
int blo[128]
finest candidate scalefactor
Definition aacenc.h:190
int act[128]
active (non-PNS) band coding order
Definition aacenc.h:193
float maxvals[128]
Definition aacenc.h:196
int is8
EIGHT_SHORT frame.
Definition aacenc.h:187
int cur_ch
encoder channel index (psy/cache context)
Definition aacenc.h:185
Predictor State.
Definition aac.h:103
Single Channel Element - used for both SCE and LFE elements.
Definition aacdec.h:217
float pcoeffs[1024]
coefficients for IMDCT, pristine
Definition aacenc.h:121
uint8_t zeroes[128]
band is not coded
Definition aacenc.h:117
struct PredictorState * predictor_state
Definition aacdec.h:231
float coeffs[1024]
coefficients for IMDCT, maybe processed
Definition aacenc.h:122
float is_ener[128]
Intensity stereo pos.
Definition aacenc.h:119
uint8_t can_pns[128]
band is allowed to PNS (informative)
Definition aacenc.h:118
TemporalNoiseShaping tns
Definition aacdec.h:220
float pns_ener[128]
Noise energy values.
Definition aacenc.h:120
enum BandType band_alt[128]
alternative band type
Definition aacenc.h:115
float ret_buf[2048]
PCM output buffer.
Definition aacenc.h:123
enum BandType band_type[128]
band types
Definition aacdec.h:221
IndividualChannelStream ics
Definition aacdec.h:218
int sf_idx[128]
scalefactor indices
Definition aacenc.h:116
Temporal Noise Shaping.
Definition aacdec.h:191
int direction[8][4]
Definition aacdec.h:195
int length[8][4]
Definition aacdec.h:194
int order[8][4]
Definition aacdec.h:196
float coef[8][4][TNS_MAX_ORDER]
Definition aacenc.h:104
int coef_idx[8][4][TNS_MAX_ORDER]
Definition aacenc.h:103
static char buffer[20]
Definition seek.c:32
int size
void(* av_tx_fn)(AVTXContext *s, void *out, void *in, ptrdiff_t stride)
Function pointer to a function to perform the transform.
Definition tx.h:151
static double cb(void *priv, double x, double y)
Definition vf_geq.c:247