FFmpeg
Loading...
Searching...
No Matches
sbr.h
Go to the documentation of this file.
1/*
2 * Spectral Band Replication definitions and structures
3 * Copyright (c) 2008-2009 Robert Swain ( rob opendot cl )
4 * Copyright (c) 2010 Alex Converse <alex.converse@gmail.com>
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23/**
24 * @file
25 * Spectral Band Replication definitions and structures
26 * @author Robert Swain ( rob opendot cl )
27 */
28
29#ifndef AVCODEC_SBR_H
30#define AVCODEC_SBR_H
31
32#include <stdint.h>
33
35#include "libavutil/tx.h"
36
37#include "aacps.h"
38#include "sbrdsp.h"
39
40/**
41 * Spectral Band Replication header - spectrum parameters that invoke a reset if they differ from the previous header.
42 */
43typedef struct SpectrumParameters {
45 uint8_t bs_stop_freq;
47
48 /**
49 * @name Variables associated with bs_header_extra_1
50 * @{
51 */
55 /** @} */
57
58#define SBR_SYNTHESIS_BUF_SIZE ((1280-128)*2)
59
60/**
61 * Spectral Band Replication per channel data
62 */
63typedef struct SBRData {
64 /**
65 * @name Main bitstream data variables
66 * @{
67 */
71 uint8_t bs_freq_res[9];
73 uint8_t bs_df_env[9];
74 uint8_t bs_df_noise[2];
75 uint8_t bs_invf_mode[2][5];
76 uint8_t bs_add_harmonic[48];
77 unsigned bs_amp_res;
78 /** @} */
79
80 /**
81 * @name State variables
82 * @{
83 */
87 ///l_APrev and l_A
88 int e_a[2];
89 ///Chirp factors
91 ///QMF values of the original signal
92 INTFLOAT W[2][32][32][2];
93 ///QMF output of the HF adjustor
94 int Ypos;
95 DECLARE_ALIGNED(16, INTFLOAT, Y)[2][38][64][2];
98 uint8_t s_indexmapped[9][48];
99 ///Envelope scalefactors
100 uint8_t env_facs_q[9][48];
102 ///Noise scalefactors
103 uint8_t noise_facs_q[3][5];
105 ///Envelope time borders
106 uint8_t t_env[9];
107 ///Envelope time border of the last envelope of the previous frame
109 ///Noise time borders
110 uint8_t t_q[3];
111 unsigned f_indexnoise;
112 unsigned f_indexsine;
113 //inter_tes (USAC)
114 uint8_t temp_shape[6];
115 uint8_t temp_shape_mode[6];
116 /** @} */
117} SBRData;
118
120
121/**
122 * aacsbr functions pointers
123 */
124typedef struct AACSBRContext {
126 INTFLOAT X_low[32][40][2], const INTFLOAT W[2][32][32][2],
127 int buf_idx, int numTimeSlots);
128 void (*sbr_hf_assemble)(INTFLOAT Y1[38][64][2],
129 const INTFLOAT X_high[64][40][2],
130 SpectralBandReplication *sbr, SBRData *ch_data,
131 const int e_a[2]);
133 const INTFLOAT Y0[38][64][2], const INTFLOAT Y1[38][64][2],
134 const INTFLOAT X_low[32][40][2], int ch, int numTimeSlots);
136 INTFLOAT (*alpha0)[2], INTFLOAT (*alpha1)[2],
137 const INTFLOAT X_low[32][40][2], int k0);
139
140/**
141 * Spectral Band Replication
142 */
145 int start;
148 int usac;
149 int inter_tes; // USAC-only
150 int reset;
153 int bs_sbr_preprocessing; // USAC-only
154 /**
155 * @name Variables associated with bs_header_extra_2
156 * @{
157 */
162 /** @} */
163 unsigned bs_coupling;
164 AAC_SIGNE k[5]; ///< k0, k1, k2
165 ///kx', and kx respectively, kx is the first QMF subband where SBR is used.
166 ///kx' is its value from the previous frame
168 ///M' and M respectively, M is the number of QMF subbands that use SBR.
171 ///The number of frequency bands in f_master
175 ///N_Low and N_High respectively, the number of frequency bands for low and high resolution
177 ///Number of noise floor bands
179 ///Number of limiter bands
181 ///The master QMF frequency grouping
182 uint16_t f_master[49];
183 ///Frequency borders for low resolution SBR
184 uint16_t f_tablelow[25];
185 ///Frequency borders for high resolution SBR
186 uint16_t f_tablehigh[49];
187 ///Frequency borders for noise floors
188 uint16_t f_tablenoise[6];
189 ///Frequency borders for the limiter
190 uint16_t f_tablelim[30];
194 ///QMF low frequency input to the HF generator
196 ///QMF output of the HF generator
198 ///QMF values of the reconstructed signal
199 DECLARE_ALIGNED(16, INTFLOAT, X)[2][2][38][64];
200 ///Zeroth coefficient used to filter the subband signals
202 ///First coefficient used to filter the subband signals
204 ///Dequantized envelope scalefactors, remapped
206 ///Dequantized noise scalefactors, remapped
208 ///Sinusoidal presence, remapped
209 uint8_t s_mapped[8][48];
210 ///Estimated envelope
212 ///Amplitude adjusted noise scalefactors
214 ///Sinusoidal levels
224};
225
226#endif /* AVCODEC_SBR_H */
float AAC_FLOAT
unsigned AAC_SIGNE
#define INTFLOAT
#define X
Definition f_ebur128.c:157
#define W(a, i, v)
Definition jpegls.h:119
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
#define SBR_SYNTHESIS_BUF_SIZE
Definition sbr.h:58
aacsbr functions pointers
Definition sbr.h:124
int(* sbr_lf_gen)(SpectralBandReplication *sbr, INTFLOAT X_low[32][40][2], const INTFLOAT W[2][32][32][2], int buf_idx, int numTimeSlots)
Definition sbr.h:125
int(* sbr_x_gen)(SpectralBandReplication *sbr, INTFLOAT X[2][38][64], const INTFLOAT Y0[38][64][2], const INTFLOAT Y1[38][64][2], const INTFLOAT X_low[32][40][2], int ch, int numTimeSlots)
Definition sbr.h:132
void(* sbr_hf_inverse_filter)(SBRDSPContext *dsp, INTFLOAT(*alpha0)[2], INTFLOAT(*alpha1)[2], const INTFLOAT X_low[32][40][2], int k0)
Definition sbr.h:135
void(* sbr_hf_assemble)(INTFLOAT Y1[38][64][2], const INTFLOAT X_high[64][40][2], SpectralBandReplication *sbr, SBRData *ch_data, const int e_a[2])
Definition sbr.h:128
Spectral Band Replication per channel data.
Definition sbr.h:63
AAC_FLOAT env_facs[9][48]
Definition sbr.h:101
INTFLOAT bw_array[5]
Chirp factors.
Definition sbr.h:90
uint8_t t_q[3]
Noise time borders.
Definition sbr.h:110
AAC_SIGNE bs_num_env
Definition sbr.h:70
uint8_t s_indexmapped[9][48]
Definition sbr.h:98
unsigned bs_amp_res
Definition sbr.h:77
uint8_t temp_shape_mode[6]
Definition sbr.h:115
unsigned bs_add_harmonic_flag
Definition sbr.h:69
uint8_t noise_facs_q[3][5]
Noise scalefactors.
Definition sbr.h:103
uint8_t bs_df_env[9]
Definition sbr.h:73
AAC_SIGNE bs_num_noise
Definition sbr.h:72
int e_a[2]
l_APrev and l_A
Definition sbr.h:88
unsigned f_indexnoise
Definition sbr.h:111
int Ypos
QMF output of the HF adjustor.
Definition sbr.h:94
unsigned bs_frame_class
Definition sbr.h:68
INTFLOAT Y[2][38][64][2]
Definition sbr.h:95
uint8_t bs_df_noise[2]
Definition sbr.h:74
INTFLOAT analysis_filterbank_samples[1312]
Definition sbr.h:85
uint8_t bs_freq_res[9]
Definition sbr.h:71
uint8_t t_env_num_env_old
Envelope time border of the last envelope of the previous frame.
Definition sbr.h:108
uint8_t env_facs_q[9][48]
Envelope scalefactors.
Definition sbr.h:100
AAC_FLOAT q_temp[42][48]
Definition sbr.h:97
uint8_t bs_invf_mode[2][5]
Definition sbr.h:75
uint8_t temp_shape[6]
Definition sbr.h:114
AAC_FLOAT g_temp[42][48]
Definition sbr.h:96
AAC_FLOAT noise_facs[3][5]
Definition sbr.h:104
int synthesis_filterbank_samples_offset
Definition sbr.h:86
unsigned f_indexsine
Definition sbr.h:112
uint8_t bs_add_harmonic[48]
Definition sbr.h:76
INTFLOAT synthesis_filterbank_samples[SBR_SYNTHESIS_BUF_SIZE]
Definition sbr.h:84
uint8_t t_env[9]
Envelope time borders.
Definition sbr.h:106
INTFLOAT W[2][32][32][2]
QMF values of the original signal.
Definition sbr.h:92
Spectral Band Replication.
Definition sbr.h:143
uint16_t f_tablehigh[49]
Frequency borders for high resolution SBR.
Definition sbr.h:186
INTFLOAT alpha1[64][2]
First coefficient used to filter the subband signals.
Definition sbr.h:203
uint8_t patch_num_subbands[6]
Definition sbr.h:192
SpectrumParameters spectrum_params
Definition sbr.h:151
unsigned bs_interpol_freq
Definition sbr.h:160
av_tx_fn mdct_ana_fn
Definition sbr.h:219
AAC_SIGNE m[2]
M' and M respectively, M is the number of QMF subbands that use SBR.
Definition sbr.h:169
unsigned bs_limiter_bands
Definition sbr.h:158
AACSBRContext c
Definition sbr.h:223
unsigned bs_coupling
Definition sbr.h:163
AAC_FLOAT s_m[8][48]
Sinusoidal levels.
Definition sbr.h:215
AVTXContext * mdct
Definition sbr.h:220
uint16_t f_tablenoise[6]
Frequency borders for noise floors.
Definition sbr.h:188
unsigned bs_smoothing_mode
Definition sbr.h:161
unsigned bs_limiter_gains
Definition sbr.h:159
AAC_SIGNE kx[2]
kx', and kx respectively, kx is the first QMF subband where SBR is used.
Definition sbr.h:167
uint16_t f_tablelow[25]
Frequency borders for low resolution SBR.
Definition sbr.h:184
INTFLOAT X[2][2][38][64]
QMF values of the reconstructed signal.
Definition sbr.h:199
AAC_FLOAT gain[8][48]
Definition sbr.h:216
INTFLOAT alpha0[64][2]
Zeroth coefficient used to filter the subband signals.
Definition sbr.h:201
uint8_t s_mapped[8][48]
Sinusoidal presence, remapped.
Definition sbr.h:209
AAC_FLOAT e_origmapped[8][48]
Dequantized envelope scalefactors, remapped.
Definition sbr.h:205
AAC_SIGNE n_q
Number of noise floor bands.
Definition sbr.h:178
AAC_SIGNE k[5]
k0, k1, k2
Definition sbr.h:164
AAC_FLOAT q_m[8][48]
Amplitude adjusted noise scalefactors.
Definition sbr.h:213
AAC_SIGNE n_lim
Number of limiter bands.
Definition sbr.h:180
uint16_t f_tablelim[30]
Frequency borders for the limiter.
Definition sbr.h:190
INTFLOAT X_low[32][40][2]
QMF low frequency input to the HF generator.
Definition sbr.h:195
INTFLOAT X_high[64][40][2]
QMF output of the HF generator.
Definition sbr.h:197
AVTXContext * mdct_ana
Definition sbr.h:218
AAC_SIGNE n_master
The number of frequency bands in f_master.
Definition sbr.h:172
AAC_SIGNE num_patches
Definition sbr.h:191
unsigned kx_and_m_pushed
Definition sbr.h:170
uint8_t patch_start_subband[6]
Definition sbr.h:193
AAC_FLOAT q_mapped[8][48]
Dequantized noise scalefactors, remapped.
Definition sbr.h:207
uint16_t f_master[49]
The master QMF frequency grouping.
Definition sbr.h:182
AAC_FLOAT e_curr[8][48]
Estimated envelope.
Definition sbr.h:211
SBRData data[2]
Definition sbr.h:173
INTFLOAT qmf_filter_scratch[5][64]
Definition sbr.h:217
SBRDSPContext dsp
Definition sbr.h:222
AAC_SIGNE n[2]
N_Low and N_High respectively, the number of frequency bands for low and high resolution.
Definition sbr.h:176
Spectral Band Replication header - spectrum parameters that invoke a reset if they differ from the pr...
Definition sbr.h:43
uint8_t bs_noise_bands
Definition sbr.h:54
uint8_t bs_stop_freq
Definition sbr.h:45
uint8_t bs_alter_scale
Definition sbr.h:53
uint8_t bs_start_freq
Definition sbr.h:44
uint8_t bs_xover_band
Definition sbr.h:46
uint8_t bs_freq_scale
Definition sbr.h:52
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