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.

308 lines
10KB

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