You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

379 lines
13KB

  1. /*
  2. * AAC definitions and structures
  3. * Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
  4. * Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov 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. * @file
  24. * AAC definitions and structures
  25. * @author Oded Shimon ( ods15 ods15 dyndns org )
  26. * @author Maxim Gavrilov ( maxim.gavrilov gmail com )
  27. */
  28. #ifndef AVCODEC_AAC_H
  29. #define AVCODEC_AAC_H
  30. #include "aac_defines.h"
  31. #include "libavutil/float_dsp.h"
  32. #include "libavutil/fixed_dsp.h"
  33. #include "libavutil/mem_internal.h"
  34. #include "avcodec.h"
  35. #if !USE_FIXED
  36. #include "mdct15.h"
  37. #endif
  38. #include "fft.h"
  39. #include "mpeg4audio.h"
  40. #include "sbr.h"
  41. #include <stdint.h>
  42. #define MAX_CHANNELS 64
  43. #define MAX_ELEM_ID 16
  44. #define TNS_MAX_ORDER 20
  45. #define MAX_LTP_LONG_SFB 40
  46. #define CLIP_AVOIDANCE_FACTOR 0.95f
  47. enum RawDataBlockType {
  48. TYPE_SCE,
  49. TYPE_CPE,
  50. TYPE_CCE,
  51. TYPE_LFE,
  52. TYPE_DSE,
  53. TYPE_PCE,
  54. TYPE_FIL,
  55. TYPE_END,
  56. };
  57. enum ExtensionPayloadID {
  58. EXT_FILL,
  59. EXT_FILL_DATA,
  60. EXT_DATA_ELEMENT,
  61. EXT_DYNAMIC_RANGE = 0xb,
  62. EXT_SBR_DATA = 0xd,
  63. EXT_SBR_DATA_CRC = 0xe,
  64. };
  65. enum WindowSequence {
  66. ONLY_LONG_SEQUENCE,
  67. LONG_START_SEQUENCE,
  68. EIGHT_SHORT_SEQUENCE,
  69. LONG_STOP_SEQUENCE,
  70. };
  71. enum BandType {
  72. ZERO_BT = 0, ///< Scalefactors and spectral data are all zero.
  73. FIRST_PAIR_BT = 5, ///< This and later band types encode two values (rather than four) with one code word.
  74. ESC_BT = 11, ///< Spectral data are coded with an escape sequence.
  75. RESERVED_BT = 12, ///< Band types following are encoded differently from others.
  76. NOISE_BT = 13, ///< Spectral data are scaled white noise not coded in the bitstream.
  77. INTENSITY_BT2 = 14, ///< Scalefactor data are intensity stereo positions (out of phase).
  78. INTENSITY_BT = 15, ///< Scalefactor data are intensity stereo positions (in phase).
  79. };
  80. #define IS_CODEBOOK_UNSIGNED(x) (((x) - 1) & 10)
  81. enum ChannelPosition {
  82. AAC_CHANNEL_OFF = 0,
  83. AAC_CHANNEL_FRONT = 1,
  84. AAC_CHANNEL_SIDE = 2,
  85. AAC_CHANNEL_BACK = 3,
  86. AAC_CHANNEL_LFE = 4,
  87. AAC_CHANNEL_CC = 5,
  88. };
  89. /**
  90. * The point during decoding at which channel coupling is applied.
  91. */
  92. enum CouplingPoint {
  93. BEFORE_TNS,
  94. BETWEEN_TNS_AND_IMDCT,
  95. AFTER_IMDCT = 3,
  96. };
  97. /**
  98. * Output configuration status
  99. */
  100. enum OCStatus {
  101. OC_NONE, ///< Output unconfigured
  102. OC_TRIAL_PCE, ///< Output configuration under trial specified by an inband PCE
  103. OC_TRIAL_FRAME, ///< Output configuration under trial specified by a frame header
  104. OC_GLOBAL_HDR, ///< Output configuration set in a global header but not yet locked
  105. OC_LOCKED, ///< Output configuration locked in place
  106. };
  107. typedef struct OutputConfiguration {
  108. MPEG4AudioConfig m4ac;
  109. uint8_t layout_map[MAX_ELEM_ID*4][3];
  110. int layout_map_tags;
  111. int channels;
  112. uint64_t channel_layout;
  113. enum OCStatus status;
  114. } OutputConfiguration;
  115. /**
  116. * Predictor State
  117. */
  118. typedef struct PredictorState {
  119. AAC_FLOAT cor0;
  120. AAC_FLOAT cor1;
  121. AAC_FLOAT var0;
  122. AAC_FLOAT var1;
  123. AAC_FLOAT r0;
  124. AAC_FLOAT r1;
  125. AAC_FLOAT k1;
  126. AAC_FLOAT x_est;
  127. } PredictorState;
  128. #define MAX_PREDICTORS 672
  129. #define SCALE_DIV_512 36 ///< scalefactor difference that corresponds to scale difference in 512 times
  130. #define SCALE_ONE_POS 140 ///< scalefactor index that corresponds to scale=1.0
  131. #define SCALE_MAX_POS 255 ///< scalefactor index maximum value
  132. #define SCALE_MAX_DIFF 60 ///< maximum scalefactor difference allowed by standard
  133. #define SCALE_DIFF_ZERO 60 ///< codebook index corresponding to zero scalefactor indices difference
  134. #define POW_SF2_ZERO 200 ///< ff_aac_pow2sf_tab index corresponding to pow(2, 0);
  135. #define NOISE_PRE 256 ///< preamble for NOISE_BT, put in bitstream with the first noise band
  136. #define NOISE_PRE_BITS 9 ///< length of preamble
  137. #define NOISE_OFFSET 90 ///< subtracted from global gain, used as offset for the preamble
  138. /**
  139. * Long Term Prediction
  140. */
  141. typedef struct LongTermPrediction {
  142. int8_t present;
  143. int16_t lag;
  144. int coef_idx;
  145. INTFLOAT coef;
  146. int8_t used[MAX_LTP_LONG_SFB];
  147. } LongTermPrediction;
  148. /**
  149. * Individual Channel Stream
  150. */
  151. typedef struct IndividualChannelStream {
  152. uint8_t max_sfb; ///< number of scalefactor bands per group
  153. enum WindowSequence window_sequence[2];
  154. uint8_t use_kb_window[2]; ///< If set, use Kaiser-Bessel window, otherwise use a sine window.
  155. int num_window_groups;
  156. uint8_t group_len[8];
  157. LongTermPrediction ltp;
  158. const uint16_t *swb_offset; ///< table of offsets to the lowest spectral coefficient of a scalefactor band, sfb, for a particular window
  159. const uint8_t *swb_sizes; ///< table of scalefactor band sizes for a particular window
  160. int num_swb; ///< number of scalefactor window bands
  161. int num_windows;
  162. int tns_max_bands;
  163. int predictor_present;
  164. int predictor_initialized;
  165. int predictor_reset_group;
  166. int predictor_reset_count[31]; ///< used by encoder to count prediction resets
  167. uint8_t prediction_used[41];
  168. uint8_t window_clipping[8]; ///< set if a certain window is near clipping
  169. float clip_avoidance_factor; ///< set if any window is near clipping to the necessary atennuation factor to avoid it
  170. } IndividualChannelStream;
  171. /**
  172. * Temporal Noise Shaping
  173. */
  174. typedef struct TemporalNoiseShaping {
  175. int present;
  176. int n_filt[8];
  177. int length[8][4];
  178. int direction[8][4];
  179. int order[8][4];
  180. int coef_idx[8][4][TNS_MAX_ORDER];
  181. INTFLOAT coef[8][4][TNS_MAX_ORDER];
  182. } TemporalNoiseShaping;
  183. /**
  184. * Dynamic Range Control - decoded from the bitstream but not processed further.
  185. */
  186. typedef struct DynamicRangeControl {
  187. int pce_instance_tag; ///< Indicates with which program the DRC info is associated.
  188. int dyn_rng_sgn[17]; ///< DRC sign information; 0 - positive, 1 - negative
  189. int dyn_rng_ctl[17]; ///< DRC magnitude information
  190. int exclude_mask[MAX_CHANNELS]; ///< Channels to be excluded from DRC processing.
  191. int band_incr; ///< Number of DRC bands greater than 1 having DRC info.
  192. int interpolation_scheme; ///< Indicates the interpolation scheme used in the SBR QMF domain.
  193. int band_top[17]; ///< Indicates the top of the i-th DRC band in units of 4 spectral lines.
  194. int prog_ref_level; /**< A reference level for the long-term program audio level for all
  195. * channels combined.
  196. */
  197. } DynamicRangeControl;
  198. typedef struct Pulse {
  199. int num_pulse;
  200. int start;
  201. int pos[4];
  202. int amp[4];
  203. } Pulse;
  204. /**
  205. * coupling parameters
  206. */
  207. typedef struct ChannelCoupling {
  208. enum CouplingPoint coupling_point; ///< The point during decoding at which coupling is applied.
  209. int num_coupled; ///< number of target elements
  210. enum RawDataBlockType type[8]; ///< Type of channel element to be coupled - SCE or CPE.
  211. int id_select[8]; ///< element id
  212. int ch_select[8]; /**< [0] shared list of gains; [1] list of gains for right channel;
  213. * [2] list of gains for left channel; [3] lists of gains for both channels
  214. */
  215. INTFLOAT gain[16][120];
  216. } ChannelCoupling;
  217. /**
  218. * Single Channel Element - used for both SCE and LFE elements.
  219. */
  220. typedef struct SingleChannelElement {
  221. IndividualChannelStream ics;
  222. TemporalNoiseShaping tns;
  223. Pulse pulse;
  224. enum BandType band_type[128]; ///< band types
  225. enum BandType band_alt[128]; ///< alternative band type (used by encoder)
  226. int band_type_run_end[120]; ///< band type run end points
  227. INTFLOAT sf[120]; ///< scalefactors
  228. int sf_idx[128]; ///< scalefactor indices (used by encoder)
  229. uint8_t zeroes[128]; ///< band is not coded (used by encoder)
  230. uint8_t can_pns[128]; ///< band is allowed to PNS (informative)
  231. float is_ener[128]; ///< Intensity stereo pos (used by encoder)
  232. float pns_ener[128]; ///< Noise energy values (used by encoder)
  233. DECLARE_ALIGNED(32, INTFLOAT, pcoeffs)[1024]; ///< coefficients for IMDCT, pristine
  234. DECLARE_ALIGNED(32, INTFLOAT, coeffs)[1024]; ///< coefficients for IMDCT, maybe processed
  235. DECLARE_ALIGNED(32, INTFLOAT, saved)[1536]; ///< overlap
  236. DECLARE_ALIGNED(32, INTFLOAT, ret_buf)[2048]; ///< PCM output buffer
  237. DECLARE_ALIGNED(16, INTFLOAT, ltp_state)[3072]; ///< time signal for LTP
  238. DECLARE_ALIGNED(32, AAC_FLOAT, lcoeffs)[1024]; ///< MDCT of LTP coefficients (used by encoder)
  239. DECLARE_ALIGNED(32, AAC_FLOAT, prcoeffs)[1024]; ///< Main prediction coefs (used by encoder)
  240. PredictorState predictor_state[MAX_PREDICTORS];
  241. INTFLOAT *ret; ///< PCM output
  242. } SingleChannelElement;
  243. /**
  244. * channel element - generic struct for SCE/CPE/CCE/LFE
  245. */
  246. typedef struct ChannelElement {
  247. int present;
  248. // CPE specific
  249. int common_window; ///< Set if channels share a common 'IndividualChannelStream' in bitstream.
  250. int ms_mode; ///< Signals mid/side stereo flags coding mode (used by encoder)
  251. uint8_t is_mode; ///< Set if any bands have been encoded using intensity stereo (used by encoder)
  252. uint8_t ms_mask[128]; ///< Set if mid/side stereo is used for each scalefactor window band
  253. uint8_t is_mask[128]; ///< Set if intensity stereo is used (used by encoder)
  254. // shared
  255. SingleChannelElement ch[2];
  256. // CCE specific
  257. ChannelCoupling coup;
  258. SpectralBandReplication sbr;
  259. } ChannelElement;
  260. /**
  261. * main AAC context
  262. */
  263. struct AACContext {
  264. AVClass *class;
  265. AVCodecContext *avctx;
  266. AVFrame *frame;
  267. int is_saved; ///< Set if elements have stored overlap from previous frame.
  268. DynamicRangeControl che_drc;
  269. /**
  270. * @name Channel element related data
  271. * @{
  272. */
  273. ChannelElement *che[4][MAX_ELEM_ID];
  274. ChannelElement *tag_che_map[4][MAX_ELEM_ID];
  275. int tags_mapped;
  276. int warned_remapping_once;
  277. /** @} */
  278. /**
  279. * @name temporary aligned temporary buffers
  280. * (We do not want to have these on the stack.)
  281. * @{
  282. */
  283. DECLARE_ALIGNED(32, INTFLOAT, buf_mdct)[1024];
  284. /** @} */
  285. /**
  286. * @name Computed / set up during initialization
  287. * @{
  288. */
  289. FFTContext mdct;
  290. FFTContext mdct_small;
  291. FFTContext mdct_ld;
  292. FFTContext mdct_ltp;
  293. #if USE_FIXED
  294. AVFixedDSPContext *fdsp;
  295. #else
  296. MDCT15Context *mdct120;
  297. MDCT15Context *mdct480;
  298. MDCT15Context *mdct960;
  299. AVFloatDSPContext *fdsp;
  300. #endif /* USE_FIXED */
  301. int random_state;
  302. /** @} */
  303. /**
  304. * @name Members used for output
  305. * @{
  306. */
  307. SingleChannelElement *output_element[MAX_CHANNELS]; ///< Points to each SingleChannelElement
  308. /** @} */
  309. /**
  310. * @name Japanese DTV specific extension
  311. * @{
  312. */
  313. int force_dmono_mode;///< 0->not dmono, 1->use first channel, 2->use second channel
  314. int dmono_mode; ///< 0->not dmono, 1->use first channel, 2->use second channel
  315. /** @} */
  316. DECLARE_ALIGNED(32, INTFLOAT, temp)[128];
  317. OutputConfiguration oc[2];
  318. int warned_num_aac_frames;
  319. int warned_960_sbr;
  320. unsigned warned_71_wide;
  321. int warned_gain_control;
  322. /* aacdec functions pointers */
  323. void (*imdct_and_windowing)(AACContext *ac, SingleChannelElement *sce);
  324. void (*apply_ltp)(AACContext *ac, SingleChannelElement *sce);
  325. void (*apply_tns)(INTFLOAT coef[1024], TemporalNoiseShaping *tns,
  326. IndividualChannelStream *ics, int decode);
  327. void (*windowing_and_mdct_ltp)(AACContext *ac, INTFLOAT *out,
  328. INTFLOAT *in, IndividualChannelStream *ics);
  329. void (*update_ltp)(AACContext *ac, SingleChannelElement *sce);
  330. void (*vector_pow43)(int *coefs, int len);
  331. void (*subband_scale)(int *dst, int *src, int scale, int offset, int len, void *log_context);
  332. };
  333. void ff_aacdec_init_mips(AACContext *c);
  334. #endif /* AVCODEC_AAC_H */