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.

296 lines
9.9KB

  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 libavcodec/aac.h
  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 "avcodec.h"
  31. #include "dsputil.h"
  32. #include "fft.h"
  33. #include "mpeg4audio.h"
  34. #include "sbr.h"
  35. #include <stdint.h>
  36. #define AAC_INIT_VLC_STATIC(num, size) \
  37. INIT_VLC_STATIC(&vlc_spectral[num], 8, ff_aac_spectral_sizes[num], \
  38. ff_aac_spectral_bits[num], sizeof( ff_aac_spectral_bits[num][0]), sizeof( ff_aac_spectral_bits[num][0]), \
  39. ff_aac_spectral_codes[num], sizeof(ff_aac_spectral_codes[num][0]), sizeof(ff_aac_spectral_codes[num][0]), \
  40. size);
  41. #define MAX_CHANNELS 64
  42. #define MAX_ELEM_ID 16
  43. #define TNS_MAX_ORDER 20
  44. enum RawDataBlockType {
  45. TYPE_SCE,
  46. TYPE_CPE,
  47. TYPE_CCE,
  48. TYPE_LFE,
  49. TYPE_DSE,
  50. TYPE_PCE,
  51. TYPE_FIL,
  52. TYPE_END,
  53. };
  54. enum ExtensionPayloadID {
  55. EXT_FILL,
  56. EXT_FILL_DATA,
  57. EXT_DATA_ELEMENT,
  58. EXT_DYNAMIC_RANGE = 0xb,
  59. EXT_SBR_DATA = 0xd,
  60. EXT_SBR_DATA_CRC = 0xe,
  61. };
  62. enum WindowSequence {
  63. ONLY_LONG_SEQUENCE,
  64. LONG_START_SEQUENCE,
  65. EIGHT_SHORT_SEQUENCE,
  66. LONG_STOP_SEQUENCE,
  67. };
  68. enum BandType {
  69. ZERO_BT = 0, ///< Scalefactors and spectral data are all zero.
  70. FIRST_PAIR_BT = 5, ///< This and later band types encode two values (rather than four) with one code word.
  71. ESC_BT = 11, ///< Spectral data are coded with an escape sequence.
  72. NOISE_BT = 13, ///< Spectral data are scaled white noise not coded in the bitstream.
  73. INTENSITY_BT2 = 14, ///< Scalefactor data are intensity stereo positions.
  74. INTENSITY_BT = 15, ///< Scalefactor data are intensity stereo positions.
  75. };
  76. #define IS_CODEBOOK_UNSIGNED(x) ((x - 1) & 10)
  77. enum ChannelPosition {
  78. AAC_CHANNEL_FRONT = 1,
  79. AAC_CHANNEL_SIDE = 2,
  80. AAC_CHANNEL_BACK = 3,
  81. AAC_CHANNEL_LFE = 4,
  82. AAC_CHANNEL_CC = 5,
  83. };
  84. /**
  85. * The point during decoding at which channel coupling is applied.
  86. */
  87. enum CouplingPoint {
  88. BEFORE_TNS,
  89. BETWEEN_TNS_AND_IMDCT,
  90. AFTER_IMDCT = 3,
  91. };
  92. /**
  93. * Output configuration status
  94. */
  95. enum OCStatus {
  96. OC_NONE, //< Output unconfigured
  97. OC_TRIAL_PCE, //< Output configuration under trial specified by an inband PCE
  98. OC_TRIAL_FRAME, //< Output configuration under trial specified by a frame header
  99. OC_GLOBAL_HDR, //< Output configuration set in a global header but not yet locked
  100. OC_LOCKED, //< Output configuration locked in place
  101. };
  102. /**
  103. * Predictor State
  104. */
  105. typedef struct {
  106. float cor0;
  107. float cor1;
  108. float var0;
  109. float var1;
  110. float r0;
  111. float r1;
  112. } PredictorState;
  113. #define MAX_PREDICTORS 672
  114. #define SCALE_DIV_512 36 ///< scalefactor difference that corresponds to scale difference in 512 times
  115. #define SCALE_ONE_POS 140 ///< scalefactor index that corresponds to scale=1.0
  116. #define SCALE_MAX_POS 255 ///< scalefactor index maximum value
  117. #define SCALE_MAX_DIFF 60 ///< maximum scalefactor difference allowed by standard
  118. #define SCALE_DIFF_ZERO 60 ///< codebook index corresponding to zero scalefactor indices difference
  119. /**
  120. * Individual Channel Stream
  121. */
  122. typedef struct {
  123. uint8_t max_sfb; ///< number of scalefactor bands per group
  124. enum WindowSequence window_sequence[2];
  125. uint8_t use_kb_window[2]; ///< If set, use Kaiser-Bessel window, otherwise use a sinus window.
  126. int num_window_groups;
  127. uint8_t group_len[8];
  128. const uint16_t *swb_offset; ///< table of offsets to the lowest spectral coefficient of a scalefactor band, sfb, for a particular window
  129. const uint8_t *swb_sizes; ///< table of scalefactor band sizes for a particular window
  130. int num_swb; ///< number of scalefactor window bands
  131. int num_windows;
  132. int tns_max_bands;
  133. int predictor_present;
  134. int predictor_initialized;
  135. int predictor_reset_group;
  136. uint8_t prediction_used[41];
  137. } IndividualChannelStream;
  138. /**
  139. * Temporal Noise Shaping
  140. */
  141. typedef struct {
  142. int present;
  143. int n_filt[8];
  144. int length[8][4];
  145. int direction[8][4];
  146. int order[8][4];
  147. float coef[8][4][TNS_MAX_ORDER];
  148. } TemporalNoiseShaping;
  149. /**
  150. * Dynamic Range Control - decoded from the bitstream but not processed further.
  151. */
  152. typedef struct {
  153. int pce_instance_tag; ///< Indicates with which program the DRC info is associated.
  154. int dyn_rng_sgn[17]; ///< DRC sign information; 0 - positive, 1 - negative
  155. int dyn_rng_ctl[17]; ///< DRC magnitude information
  156. int exclude_mask[MAX_CHANNELS]; ///< Channels to be excluded from DRC processing.
  157. int band_incr; ///< Number of DRC bands greater than 1 having DRC info.
  158. int interpolation_scheme; ///< Indicates the interpolation scheme used in the SBR QMF domain.
  159. int band_top[17]; ///< Indicates the top of the i-th DRC band in units of 4 spectral lines.
  160. int prog_ref_level; /**< A reference level for the long-term program audio level for all
  161. * channels combined.
  162. */
  163. } DynamicRangeControl;
  164. typedef struct {
  165. int num_pulse;
  166. int start;
  167. int pos[4];
  168. int amp[4];
  169. } Pulse;
  170. /**
  171. * coupling parameters
  172. */
  173. typedef struct {
  174. enum CouplingPoint coupling_point; ///< The point during decoding at which coupling is applied.
  175. int num_coupled; ///< number of target elements
  176. enum RawDataBlockType type[8]; ///< Type of channel element to be coupled - SCE or CPE.
  177. int id_select[8]; ///< element id
  178. int ch_select[8]; /**< [0] shared list of gains; [1] list of gains for right channel;
  179. * [2] list of gains for left channel; [3] lists of gains for both channels
  180. */
  181. float gain[16][120];
  182. } ChannelCoupling;
  183. /**
  184. * Single Channel Element - used for both SCE and LFE elements.
  185. */
  186. typedef struct {
  187. IndividualChannelStream ics;
  188. TemporalNoiseShaping tns;
  189. Pulse pulse;
  190. enum BandType band_type[128]; ///< band types
  191. int band_type_run_end[120]; ///< band type run end points
  192. float sf[120]; ///< scalefactors
  193. int sf_idx[128]; ///< scalefactor indices (used by encoder)
  194. uint8_t zeroes[128]; ///< band is not coded (used by encoder)
  195. DECLARE_ALIGNED(16, float, coeffs)[1024]; ///< coefficients for IMDCT
  196. DECLARE_ALIGNED(16, float, saved)[1024]; ///< overlap
  197. DECLARE_ALIGNED(16, float, ret)[2048]; ///< PCM output
  198. PredictorState predictor_state[MAX_PREDICTORS];
  199. } SingleChannelElement;
  200. /**
  201. * channel element - generic struct for SCE/CPE/CCE/LFE
  202. */
  203. typedef struct {
  204. // CPE specific
  205. int common_window; ///< Set if channels share a common 'IndividualChannelStream' in bitstream.
  206. int ms_mode; ///< Signals mid/side stereo flags coding mode (used by encoder)
  207. uint8_t ms_mask[128]; ///< Set if mid/side stereo is used for each scalefactor window band
  208. // shared
  209. SingleChannelElement ch[2];
  210. // CCE specific
  211. ChannelCoupling coup;
  212. SpectralBandReplication sbr;
  213. } ChannelElement;
  214. /**
  215. * main AAC context
  216. */
  217. typedef struct {
  218. AVCodecContext * avccontext;
  219. MPEG4AudioConfig m4ac;
  220. int is_saved; ///< Set if elements have stored overlap from previous frame.
  221. DynamicRangeControl che_drc;
  222. /**
  223. * @defgroup elements Channel element related data.
  224. * @{
  225. */
  226. enum ChannelPosition che_pos[4][MAX_ELEM_ID]; /**< channel element channel mapping with the
  227. * first index as the first 4 raw data block types
  228. */
  229. ChannelElement * che[4][MAX_ELEM_ID];
  230. ChannelElement * tag_che_map[4][MAX_ELEM_ID];
  231. int tags_mapped;
  232. /** @} */
  233. /**
  234. * @defgroup temporary aligned temporary buffers (We do not want to have these on the stack.)
  235. * @{
  236. */
  237. DECLARE_ALIGNED(16, float, buf_mdct)[1024];
  238. /** @} */
  239. /**
  240. * @defgroup tables Computed / set up during initialization.
  241. * @{
  242. */
  243. FFTContext mdct;
  244. FFTContext mdct_small;
  245. DSPContext dsp;
  246. int random_state;
  247. /** @} */
  248. /**
  249. * @defgroup output Members used for output interleaving.
  250. * @{
  251. */
  252. float *output_data[MAX_CHANNELS]; ///< Points to each element's 'ret' buffer (PCM output).
  253. float add_bias; ///< offset for dsp.float_to_int16
  254. float sf_scale; ///< Pre-scale for correct IMDCT and dsp.float_to_int16.
  255. int sf_offset; ///< offset into pow2sf_tab as appropriate for dsp.float_to_int16
  256. /** @} */
  257. DECLARE_ALIGNED(16, float, temp)[128];
  258. enum OCStatus output_configured;
  259. } AACContext;
  260. #endif /* AVCODEC_AAC_H */