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.

303 lines
9.9KB

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