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.

399 lines
14KB

  1. /*
  2. * AAC encoder wrapper
  3. * Copyright (c) 2012 Martin Storsjo
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <fdk-aac/aacenc_lib.h>
  22. #include "avcodec.h"
  23. #include "audio_frame_queue.h"
  24. #include "internal.h"
  25. #include "libavutil/audioconvert.h"
  26. #include "libavutil/opt.h"
  27. typedef struct AACContext {
  28. const AVClass *class;
  29. HANDLE_AACENCODER handle;
  30. int afterburner;
  31. int eld_sbr;
  32. int signaling;
  33. AudioFrameQueue afq;
  34. } AACContext;
  35. static const AVOption aac_enc_options[] = {
  36. { "afterburner", "Afterburner (improved quality)", offsetof(AACContext, afterburner), AV_OPT_TYPE_INT, { 1 }, 0, 1, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM },
  37. { "eld_sbr", "Enable SBR for ELD (for SBR in other configurations, use the -profile parameter)", offsetof(AACContext, eld_sbr), AV_OPT_TYPE_INT, { 0 }, 0, 1, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM },
  38. { "signaling", "SBR/PS signaling style", offsetof(AACContext, signaling), AV_OPT_TYPE_INT, { -1 }, -1, 2, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM, "signaling" },
  39. { "default", "Choose signaling implicitly (explicit hierarchical by default, implicit if global header is disabled)", 0, AV_OPT_TYPE_CONST, { -1 }, 0, 0, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM, "signaling" },
  40. { "implicit", "Implicit backwards compatible signaling", 0, AV_OPT_TYPE_CONST, { 0 }, 0, 0, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM, "signaling" },
  41. { "explicit_sbr", "Explicit SBR, implicit PS signaling", 0, AV_OPT_TYPE_CONST, { 1 }, 0, 0, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM, "signaling" },
  42. { "explicit_hierarchical", "Explicit hierarchical signaling", 0, AV_OPT_TYPE_CONST, { 2 }, 0, 0, AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM, "signaling" },
  43. { NULL }
  44. };
  45. static const AVClass aac_enc_class = {
  46. "libfdk_aac", av_default_item_name, aac_enc_options, LIBAVUTIL_VERSION_INT
  47. };
  48. static const char *aac_get_error(AACENC_ERROR err)
  49. {
  50. switch (err) {
  51. case AACENC_OK:
  52. return "No error";
  53. case AACENC_INVALID_HANDLE:
  54. return "Invalid handle";
  55. case AACENC_MEMORY_ERROR:
  56. return "Memory allocation error";
  57. case AACENC_UNSUPPORTED_PARAMETER:
  58. return "Unsupported parameter";
  59. case AACENC_INVALID_CONFIG:
  60. return "Invalid config";
  61. case AACENC_INIT_ERROR:
  62. return "Initialization error";
  63. case AACENC_INIT_AAC_ERROR:
  64. return "AAC library initialization error";
  65. case AACENC_INIT_SBR_ERROR:
  66. return "SBR library initialization error";
  67. case AACENC_INIT_TP_ERROR:
  68. return "Transport library initialization error";
  69. case AACENC_INIT_META_ERROR:
  70. return "Metadata library initialization error";
  71. case AACENC_ENCODE_ERROR:
  72. return "Encoding error";
  73. case AACENC_ENCODE_EOF:
  74. return "End of file";
  75. default:
  76. return "Unknown error";
  77. }
  78. }
  79. static int aac_encode_close(AVCodecContext *avctx)
  80. {
  81. AACContext *s = avctx->priv_data;
  82. if (s->handle)
  83. aacEncClose(&s->handle);
  84. #if FF_API_OLD_ENCODE_AUDIO
  85. av_freep(&avctx->coded_frame);
  86. #endif
  87. av_freep(&avctx->extradata);
  88. ff_af_queue_close(&s->afq);
  89. return 0;
  90. }
  91. static av_cold int aac_encode_init(AVCodecContext *avctx)
  92. {
  93. AACContext *s = avctx->priv_data;
  94. int ret = AVERROR(EINVAL);
  95. AACENC_InfoStruct info = { 0 };
  96. CHANNEL_MODE mode;
  97. AACENC_ERROR err;
  98. int aot = FF_PROFILE_AAC_LOW + 1;
  99. int sce = 0, cpe = 0;
  100. if ((err = aacEncOpen(&s->handle, 0, avctx->channels)) != AACENC_OK) {
  101. av_log(avctx, AV_LOG_ERROR, "Unable to open the encoder: %s\n",
  102. aac_get_error(err));
  103. goto error;
  104. }
  105. if (avctx->profile != FF_PROFILE_UNKNOWN)
  106. aot = avctx->profile + 1;
  107. if ((err = aacEncoder_SetParam(s->handle, AACENC_AOT, aot)) != AACENC_OK) {
  108. av_log(avctx, AV_LOG_ERROR, "Unable to set the AOT %d: %s\n",
  109. aot, aac_get_error(err));
  110. goto error;
  111. }
  112. if (aot == FF_PROFILE_AAC_ELD + 1 && s->eld_sbr) {
  113. if ((err = aacEncoder_SetParam(s->handle, AACENC_SBR_MODE,
  114. 1)) != AACENC_OK) {
  115. av_log(avctx, AV_LOG_ERROR, "Unable to enable SBR for ELD: %s\n",
  116. aac_get_error(err));
  117. goto error;
  118. }
  119. }
  120. if ((err = aacEncoder_SetParam(s->handle, AACENC_SAMPLERATE,
  121. avctx->sample_rate)) != AACENC_OK) {
  122. av_log(avctx, AV_LOG_ERROR, "Unable to set the sample rate %d: %s\n",
  123. avctx->sample_rate, aac_get_error(err));
  124. goto error;
  125. }
  126. switch (avctx->channels) {
  127. case 1: mode = MODE_1; sce = 1; cpe = 0; break;
  128. case 2: mode = MODE_2; sce = 0; cpe = 1; break;
  129. case 3: mode = MODE_1_2; sce = 1; cpe = 1; break;
  130. case 4: mode = MODE_1_2_1; sce = 2; cpe = 1; break;
  131. case 5: mode = MODE_1_2_2; sce = 1; cpe = 2; break;
  132. case 6: mode = MODE_1_2_2_1; sce = 2; cpe = 2; break;
  133. default:
  134. av_log(avctx, AV_LOG_ERROR,
  135. "Unsupported number of channels %d\n", avctx->channels);
  136. goto error;
  137. }
  138. if ((err = aacEncoder_SetParam(s->handle, AACENC_CHANNELMODE,
  139. mode)) != AACENC_OK) {
  140. av_log(avctx, AV_LOG_ERROR,
  141. "Unable to set channel mode %d: %s\n", mode, aac_get_error(err));
  142. goto error;
  143. }
  144. if ((err = aacEncoder_SetParam(s->handle, AACENC_CHANNELORDER,
  145. 1)) != AACENC_OK) {
  146. av_log(avctx, AV_LOG_ERROR,
  147. "Unable to set wav channel order %d: %s\n",
  148. mode, aac_get_error(err));
  149. goto error;
  150. }
  151. if (avctx->flags & CODEC_FLAG_QSCALE) {
  152. int mode = avctx->global_quality;
  153. if (mode < 1 || mode > 5) {
  154. av_log(avctx, AV_LOG_WARNING,
  155. "VBR quality %d out of range, should be 1-5\n", mode);
  156. mode = av_clip(mode, 1, 5);
  157. }
  158. if ((err = aacEncoder_SetParam(s->handle, AACENC_BITRATEMODE,
  159. mode)) != AACENC_OK) {
  160. av_log(avctx, AV_LOG_ERROR, "Unable to set the VBR bitrate mode %d: %s\n",
  161. mode, aac_get_error(err));
  162. goto error;
  163. }
  164. } else {
  165. if (avctx->bit_rate <= 0) {
  166. if (avctx->profile == FF_PROFILE_AAC_HE_V2) {
  167. sce = 1;
  168. cpe = 0;
  169. }
  170. avctx->bit_rate = (96*sce + 128*cpe) * avctx->sample_rate / 44;
  171. if (avctx->profile == FF_PROFILE_AAC_HE ||
  172. avctx->profile == FF_PROFILE_AAC_HE_V2 ||
  173. s->eld_sbr)
  174. avctx->bit_rate /= 2;
  175. }
  176. if ((err = aacEncoder_SetParam(s->handle, AACENC_BITRATE,
  177. avctx->bit_rate)) != AACENC_OK) {
  178. av_log(avctx, AV_LOG_ERROR, "Unable to set the bitrate %d: %s\n",
  179. avctx->bit_rate, aac_get_error(err));
  180. goto error;
  181. }
  182. }
  183. /* Choose bitstream format - if global header is requested, use
  184. * raw access units, otherwise use ADTS. */
  185. if ((err = aacEncoder_SetParam(s->handle, AACENC_TRANSMUX,
  186. avctx->flags & CODEC_FLAG_GLOBAL_HEADER ? 0 : 2)) != AACENC_OK) {
  187. av_log(avctx, AV_LOG_ERROR, "Unable to set the transmux format: %s\n",
  188. aac_get_error(err));
  189. goto error;
  190. }
  191. /* If no signaling mode is chosen, use explicit hierarchical signaling
  192. * if using mp4 mode (raw access units, with global header) and
  193. * implicit signaling if using ADTS. */
  194. if (s->signaling < 0)
  195. s->signaling = avctx->flags & CODEC_FLAG_GLOBAL_HEADER ? 2 : 0;
  196. if ((err = aacEncoder_SetParam(s->handle, AACENC_SIGNALING_MODE,
  197. s->signaling)) != AACENC_OK) {
  198. av_log(avctx, AV_LOG_ERROR, "Unable to set signaling mode %d: %s\n",
  199. s->signaling, aac_get_error(err));
  200. goto error;
  201. }
  202. if ((err = aacEncoder_SetParam(s->handle, AACENC_AFTERBURNER,
  203. s->afterburner)) != AACENC_OK) {
  204. av_log(avctx, AV_LOG_ERROR, "Unable to set afterburner to %d: %s\n",
  205. s->afterburner, aac_get_error(err));
  206. goto error;
  207. }
  208. if (avctx->cutoff > 0) {
  209. if (avctx->cutoff < (avctx->sample_rate + 255) >> 8) {
  210. av_log(avctx, AV_LOG_ERROR, "cutoff valid range is %d-20000\n",
  211. (avctx->sample_rate + 255) >> 8);
  212. goto error;
  213. }
  214. if ((err = aacEncoder_SetParam(s->handle, AACENC_BANDWIDTH,
  215. avctx->cutoff)) != AACENC_OK) {
  216. av_log(avctx, AV_LOG_ERROR, "Unable to set the encoder bandwith to %d: %s\n",
  217. avctx->cutoff, aac_get_error(err));
  218. goto error;
  219. }
  220. }
  221. if ((err = aacEncEncode(s->handle, NULL, NULL, NULL, NULL)) != AACENC_OK) {
  222. av_log(avctx, AV_LOG_ERROR, "Unable to initialize the encoder: %s\n",
  223. aac_get_error(err));
  224. return AVERROR(EINVAL);
  225. }
  226. if ((err = aacEncInfo(s->handle, &info)) != AACENC_OK) {
  227. av_log(avctx, AV_LOG_ERROR, "Unable to get encoder info: %s\n",
  228. aac_get_error(err));
  229. goto error;
  230. }
  231. #if FF_API_OLD_ENCODE_AUDIO
  232. avctx->coded_frame = avcodec_alloc_frame();
  233. if (!avctx->coded_frame) {
  234. ret = AVERROR(ENOMEM);
  235. goto error;
  236. }
  237. #endif
  238. avctx->frame_size = info.frameLength;
  239. avctx->delay = info.encoderDelay;
  240. ff_af_queue_init(avctx, &s->afq);
  241. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
  242. avctx->extradata_size = info.confSize;
  243. avctx->extradata = av_mallocz(avctx->extradata_size +
  244. FF_INPUT_BUFFER_PADDING_SIZE);
  245. if (!avctx->extradata) {
  246. ret = AVERROR(ENOMEM);
  247. goto error;
  248. }
  249. memcpy(avctx->extradata, info.confBuf, info.confSize);
  250. }
  251. return 0;
  252. error:
  253. aac_encode_close(avctx);
  254. return ret;
  255. }
  256. static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  257. const AVFrame *frame, int *got_packet_ptr)
  258. {
  259. AACContext *s = avctx->priv_data;
  260. AACENC_BufDesc in_buf = { 0 }, out_buf = { 0 };
  261. AACENC_InArgs in_args = { 0 };
  262. AACENC_OutArgs out_args = { 0 };
  263. int in_buffer_identifier = IN_AUDIO_DATA;
  264. int in_buffer_size, in_buffer_element_size;
  265. int out_buffer_identifier = OUT_BITSTREAM_DATA;
  266. int out_buffer_size, out_buffer_element_size;
  267. void *in_ptr, *out_ptr;
  268. int ret;
  269. AACENC_ERROR err;
  270. /* handle end-of-stream small frame and flushing */
  271. if (!frame) {
  272. in_args.numInSamples = -1;
  273. } else {
  274. in_ptr = frame->data[0];
  275. in_buffer_size = 2 * avctx->channels * frame->nb_samples;
  276. in_buffer_element_size = 2;
  277. in_args.numInSamples = avctx->channels * frame->nb_samples;
  278. in_buf.numBufs = 1;
  279. in_buf.bufs = &in_ptr;
  280. in_buf.bufferIdentifiers = &in_buffer_identifier;
  281. in_buf.bufSizes = &in_buffer_size;
  282. in_buf.bufElSizes = &in_buffer_element_size;
  283. /* add current frame to the queue */
  284. if ((ret = ff_af_queue_add(&s->afq, frame) < 0))
  285. return ret;
  286. }
  287. /* The maximum packet size is 6144 bits aka 768 bytes per channel. */
  288. if ((ret = ff_alloc_packet(avpkt, FFMAX(8192, 768 * avctx->channels)))) {
  289. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  290. return ret;
  291. }
  292. out_ptr = avpkt->data;
  293. out_buffer_size = avpkt->size;
  294. out_buffer_element_size = 1;
  295. out_buf.numBufs = 1;
  296. out_buf.bufs = &out_ptr;
  297. out_buf.bufferIdentifiers = &out_buffer_identifier;
  298. out_buf.bufSizes = &out_buffer_size;
  299. out_buf.bufElSizes = &out_buffer_element_size;
  300. if ((err = aacEncEncode(s->handle, &in_buf, &out_buf, &in_args,
  301. &out_args)) != AACENC_OK) {
  302. if (!frame && err == AACENC_ENCODE_EOF)
  303. return 0;
  304. av_log(avctx, AV_LOG_ERROR, "Unable to encode frame: %s\n",
  305. aac_get_error(err));
  306. return AVERROR(EINVAL);
  307. }
  308. if (!out_args.numOutBytes)
  309. return 0;
  310. /* Get the next frame pts & duration */
  311. ff_af_queue_remove(&s->afq, avctx->frame_size, &avpkt->pts,
  312. &avpkt->duration);
  313. avpkt->size = out_args.numOutBytes;
  314. *got_packet_ptr = 1;
  315. return 0;
  316. }
  317. static const AVProfile profiles[] = {
  318. { FF_PROFILE_AAC_LOW, "LC" },
  319. { FF_PROFILE_AAC_HE, "HE-AAC" },
  320. { FF_PROFILE_AAC_HE_V2, "HE-AACv2" },
  321. { FF_PROFILE_AAC_LD, "LD" },
  322. { FF_PROFILE_AAC_ELD, "ELD" },
  323. { FF_PROFILE_UNKNOWN },
  324. };
  325. static const AVCodecDefault aac_encode_defaults[] = {
  326. { "b", "0" },
  327. { NULL }
  328. };
  329. static const uint64_t aac_channel_layout[] = {
  330. AV_CH_LAYOUT_MONO,
  331. AV_CH_LAYOUT_STEREO,
  332. AV_CH_LAYOUT_SURROUND,
  333. AV_CH_LAYOUT_4POINT0,
  334. AV_CH_LAYOUT_5POINT0_BACK,
  335. AV_CH_LAYOUT_5POINT1_BACK,
  336. 0,
  337. };
  338. AVCodec ff_libfdk_aac_encoder = {
  339. .name = "libfdk_aac",
  340. .type = AVMEDIA_TYPE_AUDIO,
  341. .id = CODEC_ID_AAC,
  342. .priv_data_size = sizeof(AACContext),
  343. .init = aac_encode_init,
  344. .encode2 = aac_encode_frame,
  345. .close = aac_encode_close,
  346. .capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY,
  347. .sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
  348. AV_SAMPLE_FMT_NONE },
  349. .long_name = NULL_IF_CONFIG_SMALL("Fraunhofer FDK AAC"),
  350. .priv_class = &aac_enc_class,
  351. .defaults = aac_encode_defaults,
  352. .profiles = profiles,
  353. .channel_layouts = aac_channel_layout,
  354. };