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.

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