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.

306 lines
13KB

  1. /*
  2. * DCA compatible decoder
  3. * Copyright (C) 2004 Gildas Bazin
  4. * Copyright (C) 2004 Benjamin Zores
  5. * Copyright (C) 2006 Benjamin Larsson
  6. * Copyright (C) 2007 Konstantin Shishkov
  7. *
  8. * This file is part of Libav.
  9. *
  10. * Libav is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * Libav is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with Libav; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. #ifndef AVCODEC_DCA_H
  25. #define AVCODEC_DCA_H
  26. #include <stdint.h>
  27. #include "libavutil/float_dsp.h"
  28. #include "libavutil/internal.h"
  29. #include "avcodec.h"
  30. #include "dcadsp.h"
  31. #include "fmtconvert.h"
  32. #include "get_bits.h"
  33. #define DCA_PRIM_CHANNELS_MAX (7)
  34. #define DCA_ABITS_MAX (32) /* Should be 28 */
  35. #define DCA_SUBSUBFRAMES_MAX (4)
  36. #define DCA_SUBFRAMES_MAX (16)
  37. #define DCA_BLOCKS_MAX (16)
  38. #define DCA_LFE_MAX (3)
  39. #define DCA_PRIM_CHANNELS_MAX (7)
  40. #define DCA_ABITS_MAX (32) /* Should be 28 */
  41. #define DCA_SUBSUBFRAMES_MAX (4)
  42. #define DCA_SUBFRAMES_MAX (16)
  43. #define DCA_BLOCKS_MAX (16)
  44. #define DCA_LFE_MAX (3)
  45. #define DCA_XLL_FBANDS_MAX (4)
  46. #define DCA_XLL_SEGMENTS_MAX (16)
  47. #define DCA_XLL_CHSETS_MAX (16)
  48. #define DCA_XLL_CHANNELS_MAX (16)
  49. #define DCA_XLL_AORDER_MAX (15)
  50. /* Arbitrary limit; not sure what the maximum really is, but much larger. */
  51. #define DCA_XLL_DMIX_NCOEFFS_MAX (18)
  52. #define DCA_MAX_FRAME_SIZE 16384
  53. #define DCA_MAX_EXSS_HEADER_SIZE 4096
  54. #define DCA_BUFFER_PADDING_SIZE 1024
  55. enum DCAExtensionMask {
  56. DCA_EXT_CORE = 0x001, ///< core in core substream
  57. DCA_EXT_XXCH = 0x002, ///< XXCh channels extension in core substream
  58. DCA_EXT_X96 = 0x004, ///< 96/24 extension in core substream
  59. DCA_EXT_XCH = 0x008, ///< XCh channel extension in core substream
  60. DCA_EXT_EXSS_CORE = 0x010, ///< core in ExSS (extension substream)
  61. DCA_EXT_EXSS_XBR = 0x020, ///< extended bitrate extension in ExSS
  62. DCA_EXT_EXSS_XXCH = 0x040, ///< XXCh channels extension in ExSS
  63. DCA_EXT_EXSS_X96 = 0x080, ///< 96/24 extension in ExSS
  64. DCA_EXT_EXSS_LBR = 0x100, ///< low bitrate component in ExSS
  65. DCA_EXT_EXSS_XLL = 0x200, ///< lossless extension in ExSS
  66. };
  67. typedef struct XllChSetSubHeader {
  68. int channels; ///< number of channels in channel set, at most 16
  69. int residual_encode; ///< residual channel encoding
  70. int bit_resolution; ///< input sample bit-width
  71. int bit_width; ///< original input sample bit-width
  72. int sampling_frequency; ///< sampling frequency
  73. int samp_freq_interp; ///< sampling frequency interpolation multiplier
  74. int replacement_set; ///< replacement channel set group
  75. int active_replace_set; ///< current channel set is active channel set
  76. int primary_ch_set;
  77. int downmix_coeff_code_embedded;
  78. int downmix_embedded;
  79. int downmix_type;
  80. int hier_chset; ///< hierarchical channel set
  81. int downmix_ncoeffs;
  82. int downmix_coeffs[DCA_XLL_DMIX_NCOEFFS_MAX];
  83. int ch_mask_enabled;
  84. int ch_mask;
  85. int mapping_coeffs_present;
  86. int num_freq_bands;
  87. /* m_nOrigChanOrder */
  88. uint8_t orig_chan_order[DCA_XLL_FBANDS_MAX][DCA_XLL_CHANNELS_MAX];
  89. uint8_t orig_chan_order_inv[DCA_XLL_FBANDS_MAX][DCA_XLL_CHANNELS_MAX];
  90. /* Coefficients for channel pairs (at most 8), m_anPWChPairsCoeffs */
  91. int8_t pw_ch_pairs_coeffs[DCA_XLL_FBANDS_MAX][DCA_XLL_CHANNELS_MAX/2];
  92. /* m_nCurrHighestLPCOrder */
  93. uint8_t adapt_order_max[DCA_XLL_FBANDS_MAX];
  94. /* m_pnAdaptPredOrder */
  95. uint8_t adapt_order[DCA_XLL_FBANDS_MAX][DCA_XLL_CHANNELS_MAX];
  96. /* m_pnFixedPredOrder */
  97. uint8_t fixed_order[DCA_XLL_FBANDS_MAX][DCA_XLL_CHANNELS_MAX];
  98. /* m_pnLPCReflCoeffsQInd, unsigned version */
  99. uint8_t lpc_refl_coeffs_q_ind[DCA_XLL_FBANDS_MAX]
  100. [DCA_XLL_CHANNELS_MAX][DCA_XLL_AORDER_MAX];
  101. int lsb_fsize[DCA_XLL_FBANDS_MAX];
  102. int8_t scalable_lsbs[DCA_XLL_FBANDS_MAX][DCA_XLL_CHANNELS_MAX];
  103. int8_t bit_width_adj_per_ch[DCA_XLL_FBANDS_MAX][DCA_XLL_CHANNELS_MAX];
  104. } XllChSetSubHeader;
  105. typedef struct XllNavi {
  106. GetBitContext gb; // Context for parsing the data segments
  107. unsigned band_size[DCA_XLL_FBANDS_MAX];
  108. unsigned segment_size[DCA_XLL_FBANDS_MAX][DCA_XLL_SEGMENTS_MAX];
  109. unsigned chset_size[DCA_XLL_FBANDS_MAX][DCA_XLL_SEGMENTS_MAX][DCA_XLL_CHSETS_MAX];
  110. } XllNavi;
  111. typedef struct QMF64_table {
  112. float dct4_coeff[32][32];
  113. float dct2_coeff[32][32];
  114. float rcos[32];
  115. float rsin[32];
  116. } QMF64_table;
  117. /* Primary audio coding header */
  118. typedef struct DCAAudioHeader {
  119. int subband_activity[DCA_PRIM_CHANNELS_MAX]; ///< subband activity count
  120. int vq_start_subband[DCA_PRIM_CHANNELS_MAX]; ///< high frequency vq start subband
  121. int joint_intensity[DCA_PRIM_CHANNELS_MAX]; ///< joint intensity coding index
  122. int transient_huffman[DCA_PRIM_CHANNELS_MAX]; ///< transient mode code book
  123. int scalefactor_huffman[DCA_PRIM_CHANNELS_MAX]; ///< scale factor code book
  124. int bitalloc_huffman[DCA_PRIM_CHANNELS_MAX]; ///< bit allocation quantizer select
  125. int quant_index_huffman[DCA_PRIM_CHANNELS_MAX][DCA_ABITS_MAX]; ///< quantization index codebook select
  126. uint32_t scalefactor_adj[DCA_PRIM_CHANNELS_MAX][DCA_ABITS_MAX]; ///< scale factor adjustment
  127. int subframes; ///< number of subframes
  128. int total_channels; ///< number of channels including extensions
  129. int prim_channels; ///< number of primary audio channels
  130. } DCAAudioHeader;
  131. typedef struct DCAChan {
  132. DECLARE_ALIGNED(32, int32_t, subband_samples)[DCA_BLOCKS_MAX][DCA_SUBBANDS][SAMPLES_PER_SUBBAND];
  133. /* Subband samples history (for ADPCM) */
  134. DECLARE_ALIGNED(32, int32_t, subband_samples_hist)[DCA_SUBBANDS][4];
  135. int hist_index;
  136. /* Half size is sufficient for core decoding, but for 96 kHz data
  137. * we need QMF with 64 subbands and 1024 samples. */
  138. DECLARE_ALIGNED(32, float, subband_fir_hist)[1024];
  139. DECLARE_ALIGNED(32, float, subband_fir_noidea)[64];
  140. /* Primary audio coding side information */
  141. int prediction_mode[DCA_SUBBANDS]; ///< prediction mode (ADPCM used or not)
  142. int prediction_vq[DCA_SUBBANDS]; ///< prediction VQ coefs
  143. int bitalloc[DCA_SUBBANDS]; ///< bit allocation index
  144. int transition_mode[DCA_SUBBANDS]; ///< transition mode (transients)
  145. int32_t scale_factor[DCA_SUBBANDS][2];///< scale factors (2 if transient)
  146. int joint_huff; ///< joint subband scale factors codebook
  147. int joint_scale_factor[DCA_SUBBANDS]; ///< joint subband scale factors
  148. int32_t high_freq_vq[DCA_SUBBANDS]; ///< VQ encoded high frequency subbands
  149. } DCAChan;
  150. typedef struct DCAContext {
  151. AVClass *class; ///< class for AVOptions
  152. AVCodecContext *avctx;
  153. /* Frame header */
  154. int frame_type; ///< type of the current frame
  155. int samples_deficit; ///< deficit sample count
  156. int crc_present; ///< crc is present in the bitstream
  157. int sample_blocks; ///< number of PCM sample blocks
  158. int frame_size; ///< primary frame byte size
  159. int amode; ///< audio channels arrangement
  160. int sample_rate; ///< audio sampling rate
  161. int bit_rate; ///< transmission bit rate
  162. int bit_rate_index; ///< transmission bit rate index
  163. int dynrange; ///< embedded dynamic range flag
  164. int timestamp; ///< embedded time stamp flag
  165. int aux_data; ///< auxiliary data flag
  166. int hdcd; ///< source material is mastered in HDCD
  167. int ext_descr; ///< extension audio descriptor flag
  168. int ext_coding; ///< extended coding flag
  169. int aspf; ///< audio sync word insertion flag
  170. int lfe; ///< low frequency effects flag
  171. int predictor_history; ///< predictor history flag
  172. int header_crc; ///< header crc check bytes
  173. int multirate_inter; ///< multirate interpolator switch
  174. int version; ///< encoder software revision
  175. int copy_history; ///< copy history
  176. int source_pcm_res; ///< source pcm resolution
  177. int front_sum; ///< front sum/difference flag
  178. int surround_sum; ///< surround sum/difference flag
  179. int dialog_norm; ///< dialog normalisation parameter
  180. /* Primary audio coding header */
  181. DCAAudioHeader audio_header;
  182. /* Primary audio coding side information */
  183. int subsubframes[DCA_SUBFRAMES_MAX]; ///< number of subsubframes
  184. int partial_samples[DCA_SUBFRAMES_MAX]; ///< partial subsubframe samples count
  185. float downmix_coef[DCA_PRIM_CHANNELS_MAX + 1][2]; ///< stereo downmix coefficients
  186. int dynrange_coef; ///< dynamic range coefficient
  187. /* Core substream's embedded downmix coefficients (cf. ETSI TS 102 114 V1.4.1)
  188. * Input: primary audio channels (incl. LFE if present)
  189. * Output: downmix audio channels (up to 4, no LFE) */
  190. uint8_t core_downmix; ///< embedded downmix coefficients available
  191. uint8_t core_downmix_amode; ///< audio channel arrangement of embedded downmix
  192. uint16_t core_downmix_codes[DCA_PRIM_CHANNELS_MAX + 1][4]; ///< embedded downmix coefficients (9-bit codes)
  193. float lfe_data[2 * DCA_LFE_MAX * (DCA_BLOCKS_MAX + 4)]; ///< Low frequency effect data
  194. int lfe_scale_factor;
  195. /* Subband samples history (for ADPCM) */
  196. DECLARE_ALIGNED(32, float, raXin)[32];
  197. DCAChan dca_chan[DCA_PRIM_CHANNELS_MAX];
  198. int output; ///< type of output
  199. float *samples_chanptr[DCA_PRIM_CHANNELS_MAX + 1];
  200. float *extra_channels[DCA_PRIM_CHANNELS_MAX + 1];
  201. uint8_t *extra_channels_buffer;
  202. unsigned int extra_channels_buffer_size;
  203. uint8_t dca_buffer[DCA_MAX_FRAME_SIZE + DCA_MAX_EXSS_HEADER_SIZE + DCA_BUFFER_PADDING_SIZE];
  204. int dca_buffer_size; ///< how much data is in the dca_buffer
  205. const int8_t *channel_order_tab; ///< channel reordering table, lfe and non lfe
  206. GetBitContext gb;
  207. /* Current position in DCA frame */
  208. int current_subframe;
  209. int current_subsubframe;
  210. int core_ext_mask; ///< present extensions in the core substream
  211. int exss_ext_mask; ///< Non-core extensions
  212. /* XCh extension information */
  213. int xch_present; ///< XCh extension present and valid
  214. int xch_base_channel; ///< index of first (only) channel containing XCH data
  215. int xch_disable; ///< whether the XCh extension should be decoded or not
  216. /* XLL extension information */
  217. int xll_disable;
  218. int xll_nch_sets; ///< number of channel sets per frame
  219. int xll_channels; ///< total number of channels (in all channel sets)
  220. int xll_residual_channels; ///< number of residual channels
  221. int xll_segments; ///< number of segments per frame
  222. int xll_log_smpl_in_seg; ///< supposedly this is "nBits4SamplLoci"
  223. int xll_smpl_in_seg; ///< samples in segment per one frequency band for the first channel set
  224. int xll_bits4seg_size; ///< number of bits used to read segment size
  225. int xll_banddata_crc; ///< presence of CRC16 within each frequency band
  226. int xll_scalable_lsb;
  227. int xll_bits4ch_mask; ///< channel position mask
  228. int xll_fixed_lsb_width;
  229. XllChSetSubHeader xll_chsets[DCA_XLL_CHSETS_MAX];
  230. XllNavi xll_navi;
  231. int *xll_sample_buf;
  232. unsigned int xll_sample_buf_size;
  233. /* ExSS header parser */
  234. int static_fields; ///< static fields present
  235. int mix_metadata; ///< mixing metadata present
  236. int num_mix_configs; ///< number of mix out configurations
  237. int mix_config_num_ch[4]; ///< number of channels in each mix out configuration
  238. int profile;
  239. int one2one_map_chtospkr;
  240. int debug_flag; ///< used for suppressing repeated error messages output
  241. AVFloatDSPContext fdsp;
  242. FFTContext imdct;
  243. SynthFilterContext synth;
  244. DCADSPContext dcadsp;
  245. QMF64_table *qmf64_table;
  246. FmtConvertContext fmt_conv;
  247. } DCAContext;
  248. extern av_export const uint32_t avpriv_dca_sample_rates[16];
  249. /**
  250. * Convert bitstream to one representation based on sync marker
  251. */
  252. int ff_dca_convert_bitstream(const uint8_t *src, int src_size, uint8_t *dst,
  253. int max_size);
  254. void ff_dca_exss_parse_header(DCAContext *s);
  255. int ff_dca_xll_decode_header(DCAContext *s);
  256. int ff_dca_xll_decode_navi(DCAContext *s, int asset_end);
  257. int ff_dca_xll_decode_audio(DCAContext *s, AVFrame *frame);
  258. #endif /* AVCODEC_DCA_H */