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.

285 lines
12KB

  1. /*
  2. * AC-3 encoder & E-AC-3 encoder common header
  3. * Copyright (c) 2000 Fabrice Bellard
  4. * Copyright (c) 2006-2010 Justin Ruggles <justin.ruggles@gmail.com>
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; 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. * AC-3 encoder & E-AC-3 encoder common header
  25. */
  26. #ifndef AVCODEC_AC3ENC_H
  27. #define AVCODEC_AC3ENC_H
  28. #include <stdint.h>
  29. #include "ac3.h"
  30. #include "ac3dsp.h"
  31. #include "avcodec.h"
  32. #include "dsputil.h"
  33. #include "put_bits.h"
  34. #include "fft.h"
  35. #ifndef CONFIG_AC3ENC_FLOAT
  36. #define CONFIG_AC3ENC_FLOAT 0
  37. #endif
  38. #define OFFSET(param) offsetof(AC3EncodeContext, options.param)
  39. #define AC3ENC_PARAM (AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM)
  40. #define AC3ENC_TYPE_AC3_FIXED 0
  41. #define AC3ENC_TYPE_AC3 1
  42. #define AC3ENC_TYPE_EAC3 2
  43. #if CONFIG_AC3ENC_FLOAT
  44. #define AC3_NAME(x) ff_ac3_float_ ## x
  45. #define MAC_COEF(d,a,b) ((d)+=(a)*(b))
  46. #define COEF_MIN (-16777215.0/16777216.0)
  47. #define COEF_MAX ( 16777215.0/16777216.0)
  48. typedef float SampleType;
  49. typedef float CoefType;
  50. typedef float CoefSumType;
  51. #else
  52. #define AC3_NAME(x) ff_ac3_fixed_ ## x
  53. #define MAC_COEF(d,a,b) MAC64(d,a,b)
  54. #define COEF_MIN -16777215
  55. #define COEF_MAX 16777215
  56. typedef int16_t SampleType;
  57. typedef int32_t CoefType;
  58. typedef int64_t CoefSumType;
  59. #endif
  60. typedef struct AC3MDCTContext {
  61. const SampleType *window; ///< MDCT window function
  62. FFTContext fft; ///< FFT context for MDCT calculation
  63. } AC3MDCTContext;
  64. /**
  65. * Encoding Options used by AVOption.
  66. */
  67. typedef struct AC3EncOptions {
  68. /* AC-3 metadata options*/
  69. int dialogue_level;
  70. int bitstream_mode;
  71. float center_mix_level;
  72. float surround_mix_level;
  73. int dolby_surround_mode;
  74. int audio_production_info;
  75. int mixing_level;
  76. int room_type;
  77. int copyright;
  78. int original;
  79. int extended_bsi_1;
  80. int preferred_stereo_downmix;
  81. float ltrt_center_mix_level;
  82. float ltrt_surround_mix_level;
  83. float loro_center_mix_level;
  84. float loro_surround_mix_level;
  85. int extended_bsi_2;
  86. int dolby_surround_ex_mode;
  87. int dolby_headphone_mode;
  88. int ad_converter_type;
  89. /* other encoding options */
  90. int allow_per_frame_metadata;
  91. int stereo_rematrixing;
  92. int channel_coupling;
  93. int cpl_start;
  94. } AC3EncOptions;
  95. /**
  96. * Data for a single audio block.
  97. */
  98. typedef struct AC3Block {
  99. CoefType **mdct_coef; ///< MDCT coefficients
  100. int32_t **fixed_coef; ///< fixed-point MDCT coefficients
  101. uint8_t **exp; ///< original exponents
  102. uint8_t **grouped_exp; ///< grouped exponents
  103. int16_t **psd; ///< psd per frequency bin
  104. int16_t **band_psd; ///< psd per critical band
  105. int16_t **mask; ///< masking curve
  106. uint16_t **qmant; ///< quantized mantissas
  107. uint8_t **cpl_coord_exp; ///< coupling coord exponents (cplcoexp)
  108. uint8_t **cpl_coord_mant; ///< coupling coord mantissas (cplcomant)
  109. uint8_t coeff_shift[AC3_MAX_CHANNELS]; ///< fixed-point coefficient shift values
  110. uint8_t new_rematrixing_strategy; ///< send new rematrixing flags in this block
  111. int num_rematrixing_bands; ///< number of rematrixing bands
  112. uint8_t rematrixing_flags[4]; ///< rematrixing flags
  113. int new_cpl_strategy; ///< send new coupling strategy
  114. int cpl_in_use; ///< coupling in use for this block (cplinu)
  115. uint8_t channel_in_cpl[AC3_MAX_CHANNELS]; ///< channel in coupling (chincpl)
  116. int num_cpl_channels; ///< number of channels in coupling
  117. uint8_t new_cpl_coords; ///< send new coupling coordinates (cplcoe)
  118. uint8_t cpl_master_exp[AC3_MAX_CHANNELS]; ///< coupling coord master exponents (mstrcplco)
  119. int new_snr_offsets; ///< send new SNR offsets
  120. int new_cpl_leak; ///< send new coupling leak info
  121. int end_freq[AC3_MAX_CHANNELS]; ///< end frequency bin (endmant)
  122. } AC3Block;
  123. /**
  124. * AC-3 encoder private context.
  125. */
  126. typedef struct AC3EncodeContext {
  127. AVClass *av_class; ///< AVClass used for AVOption
  128. AC3EncOptions options; ///< encoding options
  129. AVCodecContext *avctx; ///< parent AVCodecContext
  130. PutBitContext pb; ///< bitstream writer context
  131. DSPContext dsp;
  132. AC3DSPContext ac3dsp; ///< AC-3 optimized functions
  133. AC3MDCTContext *mdct; ///< MDCT context
  134. AC3Block blocks[AC3_MAX_BLOCKS]; ///< per-block info
  135. int fixed_point; ///< indicates if fixed-point encoder is being used
  136. int eac3; ///< indicates if this is E-AC-3 vs. AC-3
  137. int bitstream_id; ///< bitstream id (bsid)
  138. int bitstream_mode; ///< bitstream mode (bsmod)
  139. int bit_rate; ///< target bit rate, in bits-per-second
  140. int sample_rate; ///< sampling frequency, in Hz
  141. int frame_size_min; ///< minimum frame size in case rounding is necessary
  142. int frame_size; ///< current frame size in bytes
  143. int frame_size_code; ///< frame size code (frmsizecod)
  144. uint16_t crc_inv[2];
  145. int64_t bits_written; ///< bit count (used to avg. bitrate)
  146. int64_t samples_written; ///< sample count (used to avg. bitrate)
  147. int fbw_channels; ///< number of full-bandwidth channels (nfchans)
  148. int channels; ///< total number of channels (nchans)
  149. int lfe_on; ///< indicates if there is an LFE channel (lfeon)
  150. int lfe_channel; ///< channel index of the LFE channel
  151. int has_center; ///< indicates if there is a center channel
  152. int has_surround; ///< indicates if there are one or more surround channels
  153. int channel_mode; ///< channel mode (acmod)
  154. const uint8_t *channel_map; ///< channel map used to reorder channels
  155. int center_mix_level; ///< center mix level code
  156. int surround_mix_level; ///< surround mix level code
  157. int ltrt_center_mix_level; ///< Lt/Rt center mix level code
  158. int ltrt_surround_mix_level; ///< Lt/Rt surround mix level code
  159. int loro_center_mix_level; ///< Lo/Ro center mix level code
  160. int loro_surround_mix_level; ///< Lo/Ro surround mix level code
  161. int cutoff; ///< user-specified cutoff frequency, in Hz
  162. int bandwidth_code; ///< bandwidth code (0 to 60) (chbwcod)
  163. int start_freq[AC3_MAX_CHANNELS]; ///< start frequency bin (strtmant)
  164. int cpl_end_freq; ///< coupling channel end frequency bin
  165. int cpl_on; ///< coupling turned on for this frame
  166. int cpl_enabled; ///< coupling enabled for all frames
  167. int num_cpl_subbands; ///< number of coupling subbands (ncplsubnd)
  168. int num_cpl_bands; ///< number of coupling bands (ncplbnd)
  169. uint8_t cpl_band_sizes[AC3_MAX_CPL_BANDS]; ///< number of coeffs in each coupling band
  170. int rematrixing_enabled; ///< stereo rematrixing enabled
  171. /* bitrate allocation control */
  172. int slow_gain_code; ///< slow gain code (sgaincod)
  173. int slow_decay_code; ///< slow decay code (sdcycod)
  174. int fast_decay_code; ///< fast decay code (fdcycod)
  175. int db_per_bit_code; ///< dB/bit code (dbpbcod)
  176. int floor_code; ///< floor code (floorcod)
  177. AC3BitAllocParameters bit_alloc; ///< bit allocation parameters
  178. int coarse_snr_offset; ///< coarse SNR offsets (csnroffst)
  179. int fast_gain_code[AC3_MAX_CHANNELS]; ///< fast gain codes (signal-to-mask ratio) (fgaincod)
  180. int fine_snr_offset[AC3_MAX_CHANNELS]; ///< fine SNR offsets (fsnroffst)
  181. int frame_bits_fixed; ///< number of non-coefficient bits for fixed parameters
  182. int frame_bits; ///< all frame bits except exponents and mantissas
  183. int exponent_bits; ///< number of bits used for exponents
  184. SampleType *windowed_samples;
  185. SampleType **planar_samples;
  186. uint8_t *bap_buffer;
  187. uint8_t *bap1_buffer;
  188. CoefType *mdct_coef_buffer;
  189. int32_t *fixed_coef_buffer;
  190. uint8_t *exp_buffer;
  191. uint8_t *grouped_exp_buffer;
  192. int16_t *psd_buffer;
  193. int16_t *band_psd_buffer;
  194. int16_t *mask_buffer;
  195. int16_t *qmant_buffer;
  196. uint8_t *cpl_coord_exp_buffer;
  197. uint8_t *cpl_coord_mant_buffer;
  198. uint8_t exp_strategy[AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< exponent strategies
  199. uint8_t exp_ref_block[AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< reference blocks for EXP_REUSE
  200. uint8_t *ref_bap [AC3_MAX_CHANNELS][AC3_MAX_BLOCKS]; ///< bit allocation pointers (bap)
  201. int ref_bap_set; ///< indicates if ref_bap pointers have been set
  202. /* fixed vs. float function pointers */
  203. void (*mdct_end)(AC3MDCTContext *mdct);
  204. int (*mdct_init)(AVCodecContext *avctx, AC3MDCTContext *mdct, int nbits);
  205. /* fixed vs. float templated function pointers */
  206. int (*allocate_sample_buffers)(struct AC3EncodeContext *s);
  207. /* AC-3 vs. E-AC-3 function pointers */
  208. void (*output_frame_header)(struct AC3EncodeContext *s);
  209. } AC3EncodeContext;
  210. extern const int64_t ff_ac3_channel_layouts[19];
  211. int ff_ac3_encode_init(AVCodecContext *avctx);
  212. int ff_ac3_encode_close(AVCodecContext *avctx);
  213. int ff_ac3_validate_metadata(AVCodecContext *avctx);
  214. void ff_ac3_adjust_frame_size(AC3EncodeContext *s);
  215. void ff_ac3_compute_coupling_strategy(AC3EncodeContext *s);
  216. void ff_ac3_apply_rematrixing(AC3EncodeContext *s);
  217. void ff_ac3_process_exponents(AC3EncodeContext *s);
  218. int ff_ac3_compute_bit_allocation(AC3EncodeContext *s);
  219. void ff_ac3_quantize_mantissas(AC3EncodeContext *s);
  220. void ff_ac3_output_frame(AC3EncodeContext *s, unsigned char *frame);
  221. /* prototypes for functions in ac3enc_fixed.c and ac3enc_float.c */
  222. void ff_ac3_fixed_mdct_end(AC3MDCTContext *mdct);
  223. void ff_ac3_float_mdct_end(AC3MDCTContext *mdct);
  224. int ff_ac3_fixed_mdct_init(AVCodecContext *avctx, AC3MDCTContext *mdct,
  225. int nbits);
  226. int ff_ac3_float_mdct_init(AVCodecContext *avctx, AC3MDCTContext *mdct,
  227. int nbits);
  228. /* prototypes for functions in ac3enc_template.c */
  229. int ff_ac3_fixed_allocate_sample_buffers(AC3EncodeContext *s);
  230. int ff_ac3_float_allocate_sample_buffers(AC3EncodeContext *s);
  231. int ff_ac3_fixed_encode_frame(AVCodecContext *avctx, unsigned char *frame,
  232. int buf_size, void *data);
  233. int ff_ac3_float_encode_frame(AVCodecContext *avctx, unsigned char *frame,
  234. int buf_size, void *data);
  235. #endif /* AVCODEC_AC3ENC_H */