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.

314 lines
11KB

  1. /*
  2. * AAC encoder
  3. * Copyright (C) 2008 Konstantin Shishkov
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file aacenc.c
  23. * AAC encoder
  24. */
  25. /***********************************
  26. * TODOs:
  27. * psy model selection with some option
  28. * change greedy codebook search into something more optimal, like Viterbi algorithm
  29. * determine run lengths along with codebook
  30. ***********************************/
  31. #include "avcodec.h"
  32. #include "bitstream.h"
  33. #include "dsputil.h"
  34. #include "mpeg4audio.h"
  35. #include "aacpsy.h"
  36. #include "aac.h"
  37. #include "aactab.h"
  38. static const uint8_t swb_size_1024_96[] = {
  39. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8,
  40. 12, 12, 12, 12, 12, 16, 16, 24, 28, 36, 44,
  41. 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64
  42. };
  43. static const uint8_t swb_size_1024_64[] = {
  44. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8,
  45. 12, 12, 12, 16, 16, 16, 20, 24, 24, 28, 36,
  46. 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40
  47. };
  48. static const uint8_t swb_size_1024_48[] = {
  49. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8,
  50. 12, 12, 12, 12, 16, 16, 20, 20, 24, 24, 28, 28,
  51. 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
  52. 96
  53. };
  54. static const uint8_t swb_size_1024_32[] = {
  55. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8,
  56. 12, 12, 12, 12, 16, 16, 20, 20, 24, 24, 28, 28,
  57. 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32
  58. };
  59. static const uint8_t swb_size_1024_24[] = {
  60. 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
  61. 12, 12, 12, 12, 16, 16, 16, 20, 20, 24, 24, 28, 28,
  62. 32, 36, 36, 40, 44, 48, 52, 52, 64, 64, 64, 64, 64
  63. };
  64. static const uint8_t swb_size_1024_16[] = {
  65. 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
  66. 12, 12, 12, 12, 12, 12, 12, 12, 12, 16, 16, 16, 16, 20, 20, 20, 24, 24, 28, 28,
  67. 32, 36, 40, 40, 44, 48, 52, 56, 60, 64, 64, 64
  68. };
  69. static const uint8_t swb_size_1024_8[] = {
  70. 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12,
  71. 16, 16, 16, 16, 16, 16, 16, 20, 20, 20, 20, 24, 24, 24, 28, 28,
  72. 32, 36, 36, 40, 44, 48, 52, 56, 60, 64, 80
  73. };
  74. static const uint8_t *swb_size_1024[] = {
  75. swb_size_1024_96, swb_size_1024_96, swb_size_1024_64,
  76. swb_size_1024_48, swb_size_1024_48, swb_size_1024_32,
  77. swb_size_1024_24, swb_size_1024_24, swb_size_1024_16,
  78. swb_size_1024_16, swb_size_1024_16, swb_size_1024_8
  79. };
  80. static const uint8_t swb_size_128_96[] = {
  81. 4, 4, 4, 4, 4, 4, 8, 8, 8, 16, 28, 36
  82. };
  83. static const uint8_t swb_size_128_48[] = {
  84. 4, 4, 4, 4, 4, 8, 8, 8, 12, 12, 12, 16, 16, 16
  85. };
  86. static const uint8_t swb_size_128_24[] = {
  87. 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 12, 12, 16, 16, 20
  88. };
  89. static const uint8_t swb_size_128_16[] = {
  90. 4, 4, 4, 4, 4, 4, 4, 4, 8, 8, 12, 12, 16, 20, 20
  91. };
  92. static const uint8_t swb_size_128_8[] = {
  93. 4, 4, 4, 4, 4, 4, 4, 8, 8, 8, 8, 12, 16, 20, 20
  94. };
  95. static const uint8_t *swb_size_128[] = {
  96. /* the last entry on the following row is swb_size_128_64 but is a
  97. duplicate of swb_size_128_96 */
  98. swb_size_128_96, swb_size_128_96, swb_size_128_96,
  99. swb_size_128_48, swb_size_128_48, swb_size_128_48,
  100. swb_size_128_24, swb_size_128_24, swb_size_128_16,
  101. swb_size_128_16, swb_size_128_16, swb_size_128_8
  102. };
  103. #define CB_UNSIGNED 0x01 ///< coefficients are coded as absolute values
  104. #define CB_PAIRS 0x02 ///< coefficients are grouped into pairs before coding (quads by default)
  105. #define CB_ESCAPE 0x04 ///< codebook allows escapes
  106. /** spectral coefficients codebook information */
  107. static const struct {
  108. int16_t maxval; ///< maximum possible value
  109. int8_t cb_num; ///< codebook number
  110. uint8_t flags; ///< codebook features
  111. } aac_cb_info[] = {
  112. { 0, -1, CB_UNSIGNED }, // zero codebook
  113. { 1, 0, 0 },
  114. { 1, 1, 0 },
  115. { 2, 2, CB_UNSIGNED },
  116. { 2, 3, CB_UNSIGNED },
  117. { 4, 4, CB_PAIRS },
  118. { 4, 5, CB_PAIRS },
  119. { 7, 6, CB_PAIRS | CB_UNSIGNED },
  120. { 7, 7, CB_PAIRS | CB_UNSIGNED },
  121. { 12, 8, CB_PAIRS | CB_UNSIGNED },
  122. { 12, 9, CB_PAIRS | CB_UNSIGNED },
  123. { 8191, 10, CB_PAIRS | CB_UNSIGNED | CB_ESCAPE },
  124. { -1, -1, 0 }, // reserved
  125. { -1, -1, 0 }, // perceptual noise substitution
  126. { -1, -1, 0 }, // intensity out-of-phase
  127. { -1, -1, 0 }, // intensity in-phase
  128. };
  129. /** default channel configurations */
  130. static const uint8_t aac_chan_configs[6][5] = {
  131. {1, ID_SCE}, // 1 channel - single channel element
  132. {1, ID_CPE}, // 2 channels - channel pair
  133. {2, ID_SCE, ID_CPE}, // 3 channels - center + stereo
  134. {3, ID_SCE, ID_CPE, ID_SCE}, // 4 channels - front center + stereo + back center
  135. {3, ID_SCE, ID_CPE, ID_CPE}, // 5 channels - front center + stereo + back stereo
  136. {4, ID_SCE, ID_CPE, ID_CPE, ID_LFE}, // 6 channels - front center + stereo + back stereo + LFE
  137. };
  138. /**
  139. * AAC encoder context
  140. */
  141. typedef struct {
  142. PutBitContext pb;
  143. MDCTContext mdct1024; ///< long (1024 samples) frame transform context
  144. MDCTContext mdct128; ///< short (128 samples) frame transform context
  145. DSPContext dsp;
  146. DECLARE_ALIGNED_16(FFTSample, output[2048]); ///< temporary buffer for MDCT input coefficients
  147. DECLARE_ALIGNED_16(FFTSample, tmp[1024]); ///< temporary buffer used by MDCT
  148. int16_t* samples; ///< saved preprocessed input
  149. int samplerate_index; ///< MPEG-4 samplerate index
  150. const uint8_t *swb_sizes1024; ///< scalefactor band sizes for long frame
  151. int swb_num1024; ///< number of scalefactor bands for long frame
  152. const uint8_t *swb_sizes128; ///< scalefactor band sizes for short frame
  153. int swb_num128; ///< number of scalefactor bands for short frame
  154. ChannelElement *cpe; ///< channel elements
  155. AACPsyContext psy; ///< psychoacoustic model context
  156. int last_frame;
  157. } AACEncContext;
  158. /**
  159. * Make AAC audio config object.
  160. * @see 1.6.2.1 "Syntax - AudioSpecificConfig"
  161. */
  162. static void put_audio_specific_config(AVCodecContext *avctx)
  163. {
  164. PutBitContext pb;
  165. AACEncContext *s = avctx->priv_data;
  166. init_put_bits(&pb, avctx->extradata, avctx->extradata_size*8);
  167. put_bits(&pb, 5, 2); //object type - AAC-LC
  168. put_bits(&pb, 4, s->samplerate_index); //sample rate index
  169. put_bits(&pb, 4, avctx->channels);
  170. //GASpecificConfig
  171. put_bits(&pb, 1, 0); //frame length - 1024 samples
  172. put_bits(&pb, 1, 0); //does not depend on core coder
  173. put_bits(&pb, 1, 0); //is not extension
  174. flush_put_bits(&pb);
  175. }
  176. static av_cold int aac_encode_init(AVCodecContext *avctx)
  177. {
  178. AACEncContext *s = avctx->priv_data;
  179. int i;
  180. avctx->frame_size = 1024;
  181. for(i = 0; i < 16; i++)
  182. if(avctx->sample_rate == ff_mpeg4audio_sample_rates[i])
  183. break;
  184. if(i == 16){
  185. av_log(avctx, AV_LOG_ERROR, "Unsupported sample rate %d\n", avctx->sample_rate);
  186. return -1;
  187. }
  188. if(avctx->channels > 6){
  189. av_log(avctx, AV_LOG_ERROR, "Unsupported number of channels: %d\n", avctx->channels);
  190. return -1;
  191. }
  192. s->samplerate_index = i;
  193. s->swb_sizes1024 = swb_size_1024[i];
  194. s->swb_num1024 = ff_aac_num_swb_1024[i];
  195. s->swb_sizes128 = swb_size_128[i];
  196. s->swb_num128 = ff_aac_num_swb_128[i];
  197. dsputil_init(&s->dsp, avctx);
  198. ff_mdct_init(&s->mdct1024, 11, 0);
  199. ff_mdct_init(&s->mdct128, 8, 0);
  200. // window init
  201. ff_kbd_window_init(ff_aac_kbd_long_1024, 4.0, 1024);
  202. ff_kbd_window_init(ff_aac_kbd_short_128, 6.0, 128);
  203. ff_sine_window_init(ff_aac_sine_long_1024, 1024);
  204. ff_sine_window_init(ff_aac_sine_short_128, 128);
  205. s->samples = av_malloc(2 * 1024 * avctx->channels * sizeof(s->samples[0]));
  206. s->cpe = av_mallocz(sizeof(ChannelElement) * aac_chan_configs[avctx->channels-1][0]);
  207. if(ff_aac_psy_init(&s->psy, avctx, AAC_PSY_3GPP, aac_chan_configs[avctx->channels-1][0], 0, s->swb_sizes1024, s->swb_num1024, s->swb_sizes128, s->swb_num128) < 0){
  208. av_log(avctx, AV_LOG_ERROR, "Cannot initialize selected model.\n");
  209. return -1;
  210. }
  211. avctx->extradata = av_malloc(2);
  212. avctx->extradata_size = 2;
  213. put_audio_specific_config(avctx);
  214. return 0;
  215. }
  216. /**
  217. * Encode ics_info element.
  218. * @see Table 4.6 (syntax of ics_info)
  219. */
  220. static void put_ics_info(AVCodecContext *avctx, IndividualChannelStream *info)
  221. {
  222. AACEncContext *s = avctx->priv_data;
  223. int i;
  224. put_bits(&s->pb, 1, 0); // ics_reserved bit
  225. put_bits(&s->pb, 2, info->window_sequence[0]);
  226. put_bits(&s->pb, 1, info->use_kb_window[0]);
  227. if(info->window_sequence[0] != EIGHT_SHORT_SEQUENCE){
  228. put_bits(&s->pb, 6, info->max_sfb);
  229. put_bits(&s->pb, 1, 0); // no prediction
  230. }else{
  231. put_bits(&s->pb, 4, info->max_sfb);
  232. for(i = 1; i < info->num_windows; i++)
  233. put_bits(&s->pb, 1, info->group_len[i]);
  234. }
  235. }
  236. /**
  237. * Write some auxiliary information about the created AAC file.
  238. */
  239. static void put_bitstream_info(AVCodecContext *avctx, AACEncContext *s, const char *name)
  240. {
  241. int i, namelen, padbits;
  242. namelen = strlen(name) + 2;
  243. put_bits(&s->pb, 3, ID_FIL);
  244. put_bits(&s->pb, 4, FFMIN(namelen, 15));
  245. if(namelen >= 15)
  246. put_bits(&s->pb, 8, namelen - 16);
  247. put_bits(&s->pb, 4, 0); //extension type - filler
  248. padbits = 8 - (put_bits_count(&s->pb) & 7);
  249. align_put_bits(&s->pb);
  250. for(i = 0; i < namelen - 2; i++)
  251. put_bits(&s->pb, 8, name[i]);
  252. put_bits(&s->pb, 12 - padbits, 0);
  253. }
  254. static av_cold int aac_encode_end(AVCodecContext *avctx)
  255. {
  256. AACEncContext *s = avctx->priv_data;
  257. ff_mdct_end(&s->mdct1024);
  258. ff_mdct_end(&s->mdct128);
  259. ff_aac_psy_end(&s->psy);
  260. av_freep(&s->samples);
  261. av_freep(&s->cpe);
  262. return 0;
  263. }
  264. AVCodec aac_encoder = {
  265. "aac",
  266. CODEC_TYPE_AUDIO,
  267. CODEC_ID_AAC,
  268. sizeof(AACEncContext),
  269. aac_encode_init,
  270. aac_encode_frame,
  271. aac_encode_end,
  272. .capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY,
  273. .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
  274. .long_name = NULL_IF_CONFIG_SMALL("Advanced Audio Coding"),
  275. };