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.

424 lines
16KB

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