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.

317 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 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. 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. av_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, avctx->compression_level);
  92. /* rate control */
  93. if (avctx->flags & CODEC_FLAG_QSCALE) { // VBR
  94. lame_set_VBR(s->gfp, vbr_default);
  95. lame_set_VBR_quality(s->gfp, avctx->global_quality / (float)FF_QP2LAMBDA);
  96. } else {
  97. if (avctx->bit_rate) {
  98. if (s->abr) { // ABR
  99. lame_set_VBR(s->gfp, vbr_abr);
  100. lame_set_VBR_mean_bitrate_kbps(s->gfp, avctx->bit_rate / 1000);
  101. } else // CBR
  102. lame_set_brate(s->gfp, avctx->bit_rate / 1000);
  103. }
  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->initial_padding = 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. uint32_t h;
  154. if (frame) {
  155. switch (avctx->sample_fmt) {
  156. case AV_SAMPLE_FMT_S16P:
  157. ENCODE_BUFFER(lame_encode_buffer, int16_t, frame->data);
  158. break;
  159. case AV_SAMPLE_FMT_S32P:
  160. ENCODE_BUFFER(lame_encode_buffer_int, int32_t, frame->data);
  161. break;
  162. case AV_SAMPLE_FMT_FLTP:
  163. if (frame->linesize[0] < 4 * FFALIGN(frame->nb_samples, 8)) {
  164. av_log(avctx, AV_LOG_ERROR, "inadequate AVFrame plane padding\n");
  165. return AVERROR(EINVAL);
  166. }
  167. for (ch = 0; ch < avctx->channels; ch++) {
  168. s->fdsp.vector_fmul_scalar(s->samples_flt[ch],
  169. (const float *)frame->data[ch],
  170. 32768.0f,
  171. FFALIGN(frame->nb_samples, 8));
  172. }
  173. ENCODE_BUFFER(lame_encode_buffer_float, float, s->samples_flt);
  174. break;
  175. default:
  176. return AVERROR_BUG;
  177. }
  178. } else if (!s->afq.frame_alloc) {
  179. lame_result = 0;
  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. if (ff_mpa_check_header(h) < 0) {
  210. av_log(avctx, AV_LOG_ERROR, "Invalid mp3 header at start of buffer\n");
  211. return AVERROR_BUG;
  212. }
  213. if (avpriv_mpegaudio_decode_header(&hdr, h)) {
  214. av_log(avctx, AV_LOG_ERROR, "free format output not supported\n");
  215. return -1;
  216. }
  217. len = hdr.frame_size;
  218. av_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_packet2(avctx, avpkt, len)) < 0)
  222. return ret;
  223. memcpy(avpkt->data, s->buffer, len);
  224. s->buffer_index -= len;
  225. memmove(s->buffer, s->buffer + len, s->buffer_index);
  226. /* Get the next frame pts/duration */
  227. ff_af_queue_remove(&s->afq, avctx->frame_size, &avpkt->pts,
  228. &avpkt->duration);
  229. avpkt->size = len;
  230. *got_packet_ptr = 1;
  231. }
  232. return 0;
  233. }
  234. #define OFFSET(x) offsetof(LAMEContext, x)
  235. #define AE AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  236. static const AVOption options[] = {
  237. { "reservoir", "use bit reservoir", OFFSET(reservoir), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AE },
  238. { "joint_stereo", "use joint stereo", OFFSET(joint_stereo), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AE },
  239. { "abr", "use ABR", OFFSET(abr), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AE },
  240. { NULL },
  241. };
  242. static const AVClass libmp3lame_class = {
  243. .class_name = "libmp3lame encoder",
  244. .item_name = av_default_item_name,
  245. .option = options,
  246. .version = LIBAVUTIL_VERSION_INT,
  247. };
  248. static const AVCodecDefault libmp3lame_defaults[] = {
  249. { "b", "0" },
  250. { NULL },
  251. };
  252. static const int libmp3lame_sample_rates[] = {
  253. 44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000, 0
  254. };
  255. AVCodec ff_libmp3lame_encoder = {
  256. .name = "libmp3lame",
  257. .long_name = NULL_IF_CONFIG_SMALL("libmp3lame MP3 (MPEG audio layer 3)"),
  258. .type = AVMEDIA_TYPE_AUDIO,
  259. .id = AV_CODEC_ID_MP3,
  260. .priv_data_size = sizeof(LAMEContext),
  261. .init = mp3lame_encode_init,
  262. .encode2 = mp3lame_encode_frame,
  263. .close = mp3lame_encode_close,
  264. .capabilities = CODEC_CAP_DELAY | CODEC_CAP_SMALL_LAST_FRAME,
  265. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S32P,
  266. AV_SAMPLE_FMT_FLTP,
  267. AV_SAMPLE_FMT_S16P,
  268. AV_SAMPLE_FMT_NONE },
  269. .supported_samplerates = libmp3lame_sample_rates,
  270. .channel_layouts = (const uint64_t[]) { AV_CH_LAYOUT_MONO,
  271. AV_CH_LAYOUT_STEREO,
  272. 0 },
  273. .priv_class = &libmp3lame_class,
  274. .defaults = libmp3lame_defaults,
  275. };