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.

414 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 "libavutil/channel_layout.h"
  23. #include "libavutil/common.h"
  24. #include "libavutil/opt.h"
  25. #include "avcodec.h"
  26. #include "audio_frame_queue.h"
  27. #include "internal.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. 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 || s->vbr) {
  156. int mode = s->vbr ? s->vbr : 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. av_log(avctx, AV_LOG_WARNING,
  163. "Note, the VBR setting is unsupported and only works with "
  164. "some parameter combinations\n");
  165. if ((err = aacEncoder_SetParam(s->handle, AACENC_BITRATEMODE,
  166. mode)) != AACENC_OK) {
  167. av_log(avctx, AV_LOG_ERROR, "Unable to set the VBR bitrate mode %d: %s\n",
  168. mode, aac_get_error(err));
  169. goto error;
  170. }
  171. } else {
  172. if (avctx->bit_rate <= 0) {
  173. if (avctx->profile == FF_PROFILE_AAC_HE_V2) {
  174. sce = 1;
  175. cpe = 0;
  176. }
  177. avctx->bit_rate = (96*sce + 128*cpe) * avctx->sample_rate / 44;
  178. if (avctx->profile == FF_PROFILE_AAC_HE ||
  179. avctx->profile == FF_PROFILE_AAC_HE_V2 ||
  180. s->eld_sbr)
  181. avctx->bit_rate /= 2;
  182. }
  183. if ((err = aacEncoder_SetParam(s->handle, AACENC_BITRATE,
  184. avctx->bit_rate)) != AACENC_OK) {
  185. av_log(avctx, AV_LOG_ERROR, "Unable to set the bitrate %d: %s\n",
  186. avctx->bit_rate, aac_get_error(err));
  187. goto error;
  188. }
  189. }
  190. /* Choose bitstream format - if global header is requested, use
  191. * raw access units, otherwise use ADTS. */
  192. if ((err = aacEncoder_SetParam(s->handle, AACENC_TRANSMUX,
  193. avctx->flags & CODEC_FLAG_GLOBAL_HEADER ? 0 : s->latm ? 10 : 2)) != AACENC_OK) {
  194. av_log(avctx, AV_LOG_ERROR, "Unable to set the transmux format: %s\n",
  195. aac_get_error(err));
  196. goto error;
  197. }
  198. if (s->latm && s->header_period) {
  199. if ((err = aacEncoder_SetParam(s->handle, AACENC_HEADER_PERIOD,
  200. s->header_period)) != AACENC_OK) {
  201. av_log(avctx, AV_LOG_ERROR, "Unable to set header period: %s\n",
  202. aac_get_error(err));
  203. goto error;
  204. }
  205. }
  206. /* If no signaling mode is chosen, use explicit hierarchical signaling
  207. * if using mp4 mode (raw access units, with global header) and
  208. * implicit signaling if using ADTS. */
  209. if (s->signaling < 0)
  210. s->signaling = avctx->flags & CODEC_FLAG_GLOBAL_HEADER ? 2 : 0;
  211. if ((err = aacEncoder_SetParam(s->handle, AACENC_SIGNALING_MODE,
  212. s->signaling)) != AACENC_OK) {
  213. av_log(avctx, AV_LOG_ERROR, "Unable to set signaling mode %d: %s\n",
  214. s->signaling, aac_get_error(err));
  215. goto error;
  216. }
  217. if ((err = aacEncoder_SetParam(s->handle, AACENC_AFTERBURNER,
  218. s->afterburner)) != AACENC_OK) {
  219. av_log(avctx, AV_LOG_ERROR, "Unable to set afterburner to %d: %s\n",
  220. s->afterburner, aac_get_error(err));
  221. goto error;
  222. }
  223. if (avctx->cutoff > 0) {
  224. if (avctx->cutoff < (avctx->sample_rate + 255) >> 8 || avctx->cutoff > 20000) {
  225. av_log(avctx, AV_LOG_ERROR, "cutoff valid range is %d-20000\n",
  226. (avctx->sample_rate + 255) >> 8);
  227. goto error;
  228. }
  229. if ((err = aacEncoder_SetParam(s->handle, AACENC_BANDWIDTH,
  230. avctx->cutoff)) != AACENC_OK) {
  231. av_log(avctx, AV_LOG_ERROR, "Unable to set the encoder bandwidth to %d: %s\n",
  232. avctx->cutoff, aac_get_error(err));
  233. goto error;
  234. }
  235. }
  236. if ((err = aacEncEncode(s->handle, NULL, NULL, NULL, NULL)) != AACENC_OK) {
  237. av_log(avctx, AV_LOG_ERROR, "Unable to initialize the encoder: %s\n",
  238. aac_get_error(err));
  239. return AVERROR(EINVAL);
  240. }
  241. if ((err = aacEncInfo(s->handle, &info)) != AACENC_OK) {
  242. av_log(avctx, AV_LOG_ERROR, "Unable to get encoder info: %s\n",
  243. aac_get_error(err));
  244. goto error;
  245. }
  246. avctx->frame_size = info.frameLength;
  247. avctx->delay = info.encoderDelay;
  248. ff_af_queue_init(avctx, &s->afq);
  249. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
  250. avctx->extradata_size = info.confSize;
  251. avctx->extradata = av_mallocz(avctx->extradata_size +
  252. FF_INPUT_BUFFER_PADDING_SIZE);
  253. if (!avctx->extradata) {
  254. ret = AVERROR(ENOMEM);
  255. goto error;
  256. }
  257. memcpy(avctx->extradata, info.confBuf, info.confSize);
  258. }
  259. return 0;
  260. error:
  261. aac_encode_close(avctx);
  262. return ret;
  263. }
  264. static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  265. const AVFrame *frame, int *got_packet_ptr)
  266. {
  267. AACContext *s = avctx->priv_data;
  268. AACENC_BufDesc in_buf = { 0 }, out_buf = { 0 };
  269. AACENC_InArgs in_args = { 0 };
  270. AACENC_OutArgs out_args = { 0 };
  271. int in_buffer_identifier = IN_AUDIO_DATA;
  272. int in_buffer_size, in_buffer_element_size;
  273. int out_buffer_identifier = OUT_BITSTREAM_DATA;
  274. int out_buffer_size, out_buffer_element_size;
  275. void *in_ptr, *out_ptr;
  276. int ret;
  277. AACENC_ERROR err;
  278. /* handle end-of-stream small frame and flushing */
  279. if (!frame) {
  280. in_args.numInSamples = -1;
  281. } else {
  282. in_ptr = frame->data[0];
  283. in_buffer_size = 2 * avctx->channels * frame->nb_samples;
  284. in_buffer_element_size = 2;
  285. in_args.numInSamples = avctx->channels * frame->nb_samples;
  286. in_buf.numBufs = 1;
  287. in_buf.bufs = &in_ptr;
  288. in_buf.bufferIdentifiers = &in_buffer_identifier;
  289. in_buf.bufSizes = &in_buffer_size;
  290. in_buf.bufElSizes = &in_buffer_element_size;
  291. /* add current frame to the queue */
  292. if ((ret = ff_af_queue_add(&s->afq, frame)) < 0)
  293. return ret;
  294. }
  295. /* The maximum packet size is 6144 bits aka 768 bytes per channel. */
  296. if ((ret = ff_alloc_packet(avpkt, FFMAX(8192, 768 * avctx->channels)))) {
  297. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  298. return ret;
  299. }
  300. out_ptr = avpkt->data;
  301. out_buffer_size = avpkt->size;
  302. out_buffer_element_size = 1;
  303. out_buf.numBufs = 1;
  304. out_buf.bufs = &out_ptr;
  305. out_buf.bufferIdentifiers = &out_buffer_identifier;
  306. out_buf.bufSizes = &out_buffer_size;
  307. out_buf.bufElSizes = &out_buffer_element_size;
  308. if ((err = aacEncEncode(s->handle, &in_buf, &out_buf, &in_args,
  309. &out_args)) != AACENC_OK) {
  310. if (!frame && err == AACENC_ENCODE_EOF)
  311. return 0;
  312. av_log(avctx, AV_LOG_ERROR, "Unable to encode frame: %s\n",
  313. aac_get_error(err));
  314. return AVERROR(EINVAL);
  315. }
  316. if (!out_args.numOutBytes)
  317. return 0;
  318. /* Get the next frame pts & duration */
  319. ff_af_queue_remove(&s->afq, avctx->frame_size, &avpkt->pts,
  320. &avpkt->duration);
  321. avpkt->size = out_args.numOutBytes;
  322. *got_packet_ptr = 1;
  323. return 0;
  324. }
  325. static const AVProfile profiles[] = {
  326. { FF_PROFILE_AAC_LOW, "LC" },
  327. { FF_PROFILE_AAC_HE, "HE-AAC" },
  328. { FF_PROFILE_AAC_HE_V2, "HE-AACv2" },
  329. { FF_PROFILE_AAC_LD, "LD" },
  330. { FF_PROFILE_AAC_ELD, "ELD" },
  331. { FF_PROFILE_UNKNOWN },
  332. };
  333. static const AVCodecDefault aac_encode_defaults[] = {
  334. { "b", "0" },
  335. { NULL }
  336. };
  337. static const uint64_t aac_channel_layout[] = {
  338. AV_CH_LAYOUT_MONO,
  339. AV_CH_LAYOUT_STEREO,
  340. AV_CH_LAYOUT_SURROUND,
  341. AV_CH_LAYOUT_4POINT0,
  342. AV_CH_LAYOUT_5POINT0_BACK,
  343. AV_CH_LAYOUT_5POINT1_BACK,
  344. 0,
  345. };
  346. static const int aac_sample_rates[] = {
  347. 96000, 88200, 64000, 48000, 44100, 32000,
  348. 24000, 22050, 16000, 12000, 11025, 8000, 0
  349. };
  350. AVCodec ff_libfdk_aac_encoder = {
  351. .name = "libfdk_aac",
  352. .type = AVMEDIA_TYPE_AUDIO,
  353. .id = AV_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. .supported_samplerates = aac_sample_rates,
  366. .channel_layouts = aac_channel_layout,
  367. };