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.

412 lines
15KB

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