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.

319 lines
11KB

  1. /*
  2. * Interface to libmp3lame for mp3 encoding
  3. * Copyright (c) 2002 Lennert Buytenhek <buytenh@gnu.org>
  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. /**
  22. * @file
  23. * Interface to libmp3lame for mp3 encoding.
  24. */
  25. #include <lame/lame.h>
  26. #include "libavutil/channel_layout.h"
  27. #include "libavutil/common.h"
  28. #include "libavutil/float_dsp.h"
  29. #include "libavutil/intreadwrite.h"
  30. #include "libavutil/log.h"
  31. #include "libavutil/opt.h"
  32. #include "avcodec.h"
  33. #include "audio_frame_queue.h"
  34. #include "internal.h"
  35. #include "mpegaudio.h"
  36. #include "mpegaudiodecheader.h"
  37. #define BUFFER_SIZE (7200 + 2 * MPA_FRAME_SIZE + MPA_FRAME_SIZE / 4)
  38. typedef struct LAMEContext {
  39. AVClass *class;
  40. AVCodecContext *avctx;
  41. lame_global_flags *gfp;
  42. uint8_t *buffer;
  43. int buffer_index;
  44. int buffer_size;
  45. int reservoir;
  46. int joint_stereo;
  47. int abr;
  48. float *samples_flt[2];
  49. AudioFrameQueue afq;
  50. AVFloatDSPContext fdsp;
  51. } LAMEContext;
  52. static int realloc_buffer(LAMEContext *s)
  53. {
  54. if (!s->buffer || s->buffer_size - s->buffer_index < BUFFER_SIZE) {
  55. int new_size = s->buffer_index + 2 * BUFFER_SIZE, err;
  56. ff_dlog(s->avctx, "resizing output buffer: %d -> %d\n", s->buffer_size,
  57. new_size);
  58. if ((err = av_reallocp(&s->buffer, new_size)) < 0) {
  59. s->buffer_size = s->buffer_index = 0;
  60. return err;
  61. }
  62. s->buffer_size = new_size;
  63. }
  64. return 0;
  65. }
  66. static av_cold int mp3lame_encode_close(AVCodecContext *avctx)
  67. {
  68. LAMEContext *s = avctx->priv_data;
  69. av_freep(&s->samples_flt[0]);
  70. av_freep(&s->samples_flt[1]);
  71. av_freep(&s->buffer);
  72. ff_af_queue_close(&s->afq);
  73. lame_close(s->gfp);
  74. return 0;
  75. }
  76. static av_cold int mp3lame_encode_init(AVCodecContext *avctx)
  77. {
  78. LAMEContext *s = avctx->priv_data;
  79. int ret;
  80. s->avctx = avctx;
  81. /* initialize LAME and get defaults */
  82. if (!(s->gfp = lame_init()))
  83. return AVERROR(ENOMEM);
  84. lame_set_num_channels(s->gfp, avctx->channels);
  85. lame_set_mode(s->gfp, avctx->channels > 1 ? s->joint_stereo ? JOINT_STEREO : STEREO : MONO);
  86. /* sample rate */
  87. lame_set_in_samplerate (s->gfp, avctx->sample_rate);
  88. lame_set_out_samplerate(s->gfp, avctx->sample_rate);
  89. /* algorithmic quality */
  90. if (avctx->compression_level == FF_COMPRESSION_DEFAULT)
  91. lame_set_quality(s->gfp, 5);
  92. else
  93. lame_set_quality(s->gfp, avctx->compression_level);
  94. /* rate control */
  95. if (avctx->flags & AV_CODEC_FLAG_QSCALE) { // VBR
  96. lame_set_VBR(s->gfp, vbr_default);
  97. lame_set_VBR_quality(s->gfp, avctx->global_quality / (float)FF_QP2LAMBDA);
  98. } else {
  99. if (avctx->bit_rate) {
  100. if (s->abr) { // ABR
  101. lame_set_VBR(s->gfp, vbr_abr);
  102. lame_set_VBR_mean_bitrate_kbps(s->gfp, avctx->bit_rate / 1000);
  103. } else // CBR
  104. lame_set_brate(s->gfp, avctx->bit_rate / 1000);
  105. }
  106. }
  107. /* do not get a Xing VBR header frame from LAME */
  108. lame_set_bWriteVbrTag(s->gfp,0);
  109. /* bit reservoir usage */
  110. lame_set_disable_reservoir(s->gfp, !s->reservoir);
  111. /* set specified parameters */
  112. if (lame_init_params(s->gfp) < 0) {
  113. ret = -1;
  114. goto error;
  115. }
  116. /* get encoder delay */
  117. avctx->initial_padding = lame_get_encoder_delay(s->gfp) + 528 + 1;
  118. ff_af_queue_init(avctx, &s->afq);
  119. avctx->frame_size = lame_get_framesize(s->gfp);
  120. /* allocate float sample buffers */
  121. if (avctx->sample_fmt == AV_SAMPLE_FMT_FLTP) {
  122. int ch;
  123. for (ch = 0; ch < avctx->channels; ch++) {
  124. s->samples_flt[ch] = av_malloc(avctx->frame_size *
  125. sizeof(*s->samples_flt[ch]));
  126. if (!s->samples_flt[ch]) {
  127. ret = AVERROR(ENOMEM);
  128. goto error;
  129. }
  130. }
  131. }
  132. ret = realloc_buffer(s);
  133. if (ret < 0)
  134. goto error;
  135. avpriv_float_dsp_init(&s->fdsp, avctx->flags & AV_CODEC_FLAG_BITEXACT);
  136. return 0;
  137. error:
  138. mp3lame_encode_close(avctx);
  139. return ret;
  140. }
  141. #define ENCODE_BUFFER(func, buf_type, buf_name) do { \
  142. lame_result = func(s->gfp, \
  143. (const buf_type *)buf_name[0], \
  144. (const buf_type *)buf_name[1], frame->nb_samples, \
  145. s->buffer + s->buffer_index, \
  146. s->buffer_size - s->buffer_index); \
  147. } while (0)
  148. static int mp3lame_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
  149. const AVFrame *frame, int *got_packet_ptr)
  150. {
  151. LAMEContext *s = avctx->priv_data;
  152. MPADecodeHeader hdr;
  153. int len, ret, ch;
  154. int lame_result;
  155. uint32_t h;
  156. if (frame) {
  157. switch (avctx->sample_fmt) {
  158. case AV_SAMPLE_FMT_S16P:
  159. ENCODE_BUFFER(lame_encode_buffer, int16_t, frame->data);
  160. break;
  161. case AV_SAMPLE_FMT_S32P:
  162. ENCODE_BUFFER(lame_encode_buffer_int, int32_t, frame->data);
  163. break;
  164. case AV_SAMPLE_FMT_FLTP:
  165. if (frame->linesize[0] < 4 * FFALIGN(frame->nb_samples, 8)) {
  166. av_log(avctx, AV_LOG_ERROR, "inadequate AVFrame plane padding\n");
  167. return AVERROR(EINVAL);
  168. }
  169. for (ch = 0; ch < avctx->channels; ch++) {
  170. s->fdsp.vector_fmul_scalar(s->samples_flt[ch],
  171. (const float *)frame->data[ch],
  172. 32768.0f,
  173. FFALIGN(frame->nb_samples, 8));
  174. }
  175. ENCODE_BUFFER(lame_encode_buffer_float, float, s->samples_flt);
  176. break;
  177. default:
  178. return AVERROR_BUG;
  179. }
  180. } else {
  181. lame_result = lame_encode_flush(s->gfp, s->buffer + s->buffer_index,
  182. s->buffer_size - s->buffer_index);
  183. }
  184. if (lame_result < 0) {
  185. if (lame_result == -1) {
  186. av_log(avctx, AV_LOG_ERROR,
  187. "lame: output buffer too small (buffer index: %d, free bytes: %d)\n",
  188. s->buffer_index, s->buffer_size - s->buffer_index);
  189. }
  190. return -1;
  191. }
  192. s->buffer_index += lame_result;
  193. ret = realloc_buffer(s);
  194. if (ret < 0) {
  195. av_log(avctx, AV_LOG_ERROR, "error reallocating output buffer\n");
  196. return ret;
  197. }
  198. /* add current frame to the queue */
  199. if (frame) {
  200. if ((ret = ff_af_queue_add(&s->afq, frame)) < 0)
  201. return ret;
  202. }
  203. /* Move 1 frame from the LAME buffer to the output packet, if available.
  204. We have to parse the first frame header in the output buffer to
  205. determine the frame size. */
  206. if (s->buffer_index < 4)
  207. return 0;
  208. h = AV_RB32(s->buffer);
  209. ret = avpriv_mpegaudio_decode_header(&hdr, h);
  210. if (ret < 0) {
  211. av_log(avctx, AV_LOG_ERROR, "Invalid mp3 header at start of buffer\n");
  212. return AVERROR_BUG;
  213. } else if (ret) {
  214. av_log(avctx, AV_LOG_ERROR, "free format output not supported\n");
  215. return -1;
  216. }
  217. len = hdr.frame_size;
  218. ff_dlog(avctx, "in:%d packet-len:%d index:%d\n", avctx->frame_size, len,
  219. s->buffer_index);
  220. if (len <= s->buffer_index) {
  221. if ((ret = ff_alloc_packet(avpkt, len))) {
  222. av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
  223. return ret;
  224. }
  225. memcpy(avpkt->data, s->buffer, len);
  226. s->buffer_index -= len;
  227. memmove(s->buffer, s->buffer + len, s->buffer_index);
  228. /* Get the next frame pts/duration */
  229. ff_af_queue_remove(&s->afq, avctx->frame_size, &avpkt->pts,
  230. &avpkt->duration);
  231. avpkt->size = len;
  232. *got_packet_ptr = 1;
  233. }
  234. return 0;
  235. }
  236. #define OFFSET(x) offsetof(LAMEContext, x)
  237. #define AE AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  238. static const AVOption options[] = {
  239. { "reservoir", "Use bit reservoir.", OFFSET(reservoir), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AE },
  240. { "joint_stereo", "Use joint stereo.", OFFSET(joint_stereo), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AE },
  241. { "abr", "Use ABR", OFFSET(abr), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AE },
  242. { NULL },
  243. };
  244. static const AVClass libmp3lame_class = {
  245. .class_name = "libmp3lame encoder",
  246. .item_name = av_default_item_name,
  247. .option = options,
  248. .version = LIBAVUTIL_VERSION_INT,
  249. };
  250. static const AVCodecDefault libmp3lame_defaults[] = {
  251. { "b", "0" },
  252. { NULL },
  253. };
  254. static const int libmp3lame_sample_rates[] = {
  255. 44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000, 0
  256. };
  257. AVCodec ff_libmp3lame_encoder = {
  258. .name = "libmp3lame",
  259. .long_name = NULL_IF_CONFIG_SMALL("libmp3lame MP3 (MPEG audio layer 3)"),
  260. .type = AVMEDIA_TYPE_AUDIO,
  261. .id = AV_CODEC_ID_MP3,
  262. .priv_data_size = sizeof(LAMEContext),
  263. .init = mp3lame_encode_init,
  264. .encode2 = mp3lame_encode_frame,
  265. .close = mp3lame_encode_close,
  266. .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SMALL_LAST_FRAME,
  267. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S32P,
  268. AV_SAMPLE_FMT_FLTP,
  269. AV_SAMPLE_FMT_S16P,
  270. AV_SAMPLE_FMT_NONE },
  271. .supported_samplerates = libmp3lame_sample_rates,
  272. .channel_layouts = (const uint64_t[]) { AV_CH_LAYOUT_MONO,
  273. AV_CH_LAYOUT_STEREO,
  274. 0 },
  275. .priv_class = &libmp3lame_class,
  276. .defaults = libmp3lame_defaults,
  277. };