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.

286 lines
9.3KB

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