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.

288 lines
9.5KB

  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/intreadwrite.h"
  27. #include "libavutil/log.h"
  28. #include "libavutil/opt.h"
  29. #include "avcodec.h"
  30. #include "internal.h"
  31. #include "mpegaudio.h"
  32. #include "mpegaudiodecheader.h"
  33. #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.
  34. typedef struct LAMEContext {
  35. AVClass *class;
  36. AVCodecContext *avctx;
  37. lame_global_flags *gfp;
  38. uint8_t buffer[BUFFER_SIZE];
  39. int buffer_index;
  40. int reservoir;
  41. void *planar_samples[2];
  42. } LAMEContext;
  43. static av_cold int mp3lame_encode_close(AVCodecContext *avctx)
  44. {
  45. LAMEContext *s = avctx->priv_data;
  46. av_freep(&avctx->coded_frame);
  47. av_freep(&s->planar_samples[0]);
  48. av_freep(&s->planar_samples[1]);
  49. lame_close(s->gfp);
  50. return 0;
  51. }
  52. static av_cold int mp3lame_encode_init(AVCodecContext *avctx)
  53. {
  54. LAMEContext *s = avctx->priv_data;
  55. int ret;
  56. s->avctx = avctx;
  57. /* initialize LAME and get defaults */
  58. if ((s->gfp = lame_init()) == NULL)
  59. return AVERROR(ENOMEM);
  60. /* channels */
  61. if (avctx->channels > 2) {
  62. av_log(avctx, AV_LOG_ERROR,
  63. "Invalid number of channels %d, must be <= 2\n", avctx->channels);
  64. ret = AVERROR(EINVAL);
  65. goto error;
  66. }
  67. lame_set_num_channels(s->gfp, avctx->channels);
  68. lame_set_mode(s->gfp, avctx->channels > 1 ? JOINT_STEREO : MONO);
  69. /* sample rate */
  70. lame_set_in_samplerate (s->gfp, avctx->sample_rate);
  71. lame_set_out_samplerate(s->gfp, avctx->sample_rate);
  72. /* algorithmic quality */
  73. if (avctx->compression_level == FF_COMPRESSION_DEFAULT)
  74. lame_set_quality(s->gfp, 5);
  75. else
  76. lame_set_quality(s->gfp, avctx->compression_level);
  77. /* rate control */
  78. if (avctx->flags & CODEC_FLAG_QSCALE) {
  79. lame_set_VBR(s->gfp, vbr_default);
  80. lame_set_VBR_quality(s->gfp, avctx->global_quality / (float)FF_QP2LAMBDA);
  81. } else {
  82. if (avctx->bit_rate)
  83. lame_set_brate(s->gfp, avctx->bit_rate / 1000);
  84. }
  85. /* do not get a Xing VBR header frame from LAME */
  86. lame_set_bWriteVbrTag(s->gfp,0);
  87. /* bit reservoir usage */
  88. lame_set_disable_reservoir(s->gfp, !s->reservoir);
  89. /* set specified parameters */
  90. if (lame_init_params(s->gfp) < 0) {
  91. ret = -1;
  92. goto error;
  93. }
  94. avctx->frame_size = lame_get_framesize(s->gfp);
  95. avctx->coded_frame = avcodec_alloc_frame();
  96. if (!avctx->coded_frame) {
  97. ret = AVERROR(ENOMEM);
  98. goto error;
  99. }
  100. /* sample format */
  101. if (avctx->sample_fmt == AV_SAMPLE_FMT_S32 ||
  102. avctx->sample_fmt == AV_SAMPLE_FMT_FLT) {
  103. int ch;
  104. for (ch = 0; ch < avctx->channels; ch++) {
  105. s->planar_samples[ch] = av_malloc(avctx->frame_size *
  106. av_get_bytes_per_sample(avctx->sample_fmt));
  107. if (!s->planar_samples[ch]) {
  108. ret = AVERROR(ENOMEM);
  109. goto error;
  110. }
  111. }
  112. }
  113. return 0;
  114. error:
  115. mp3lame_encode_close(avctx);
  116. return ret;
  117. }
  118. #define DEINTERLEAVE(type, scale) do { \
  119. int ch, i; \
  120. for (ch = 0; ch < s->avctx->channels; ch++) { \
  121. const type *input = samples; \
  122. type *output = s->planar_samples[ch]; \
  123. input += ch; \
  124. for (i = 0; i < s->avctx->frame_size; i++) { \
  125. output[i] = *input * scale; \
  126. input += s->avctx->channels; \
  127. } \
  128. } \
  129. } while (0)
  130. static int encode_frame_int16(LAMEContext *s, void *samples)
  131. {
  132. if (s->avctx->channels > 1) {
  133. return lame_encode_buffer_interleaved(s->gfp, samples,
  134. s->avctx->frame_size,
  135. s->buffer + s->buffer_index,
  136. BUFFER_SIZE - s->buffer_index);
  137. } else {
  138. return lame_encode_buffer(s->gfp, samples, NULL, s->avctx->frame_size,
  139. s->buffer + s->buffer_index,
  140. BUFFER_SIZE - s->buffer_index);
  141. }
  142. }
  143. static int encode_frame_int32(LAMEContext *s, void *samples)
  144. {
  145. DEINTERLEAVE(int32_t, 1);
  146. return lame_encode_buffer_int(s->gfp,
  147. s->planar_samples[0], s->planar_samples[1],
  148. s->avctx->frame_size,
  149. s->buffer + s->buffer_index,
  150. BUFFER_SIZE - s->buffer_index);
  151. }
  152. static int encode_frame_float(LAMEContext *s, void *samples)
  153. {
  154. DEINTERLEAVE(float, 32768.0f);
  155. return lame_encode_buffer_float(s->gfp,
  156. s->planar_samples[0], s->planar_samples[1],
  157. s->avctx->frame_size,
  158. s->buffer + s->buffer_index,
  159. BUFFER_SIZE - s->buffer_index);
  160. }
  161. static int mp3lame_encode_frame(AVCodecContext *avctx, unsigned char *frame,
  162. int buf_size, void *data)
  163. {
  164. LAMEContext *s = avctx->priv_data;
  165. MPADecodeHeader hdr;
  166. int len;
  167. int lame_result;
  168. if (data) {
  169. switch (avctx->sample_fmt) {
  170. case AV_SAMPLE_FMT_S16:
  171. lame_result = encode_frame_int16(s, data);
  172. break;
  173. case AV_SAMPLE_FMT_S32:
  174. lame_result = encode_frame_int32(s, data);
  175. break;
  176. case AV_SAMPLE_FMT_FLT:
  177. lame_result = encode_frame_float(s, data);
  178. break;
  179. default:
  180. return AVERROR_BUG;
  181. }
  182. } else {
  183. lame_result = lame_encode_flush(s->gfp, s->buffer + s->buffer_index,
  184. BUFFER_SIZE - s->buffer_index);
  185. }
  186. if (lame_result < 0) {
  187. if (lame_result == -1) {
  188. av_log(avctx, AV_LOG_ERROR,
  189. "lame: output buffer too small (buffer index: %d, free bytes: %d)\n",
  190. s->buffer_index, BUFFER_SIZE - s->buffer_index);
  191. }
  192. return -1;
  193. }
  194. s->buffer_index += lame_result;
  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. memcpy(frame, s->buffer, len);
  209. s->buffer_index -= len;
  210. memmove(s->buffer, s->buffer + len, s->buffer_index);
  211. return len;
  212. } else
  213. return 0;
  214. }
  215. #define OFFSET(x) offsetof(LAMEContext, x)
  216. #define AE AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  217. static const AVOption options[] = {
  218. { "reservoir", "Use bit reservoir.", OFFSET(reservoir), AV_OPT_TYPE_INT, { 1 }, 0, 1, AE },
  219. { NULL },
  220. };
  221. static const AVClass libmp3lame_class = {
  222. .class_name = "libmp3lame encoder",
  223. .item_name = av_default_item_name,
  224. .option = options,
  225. .version = LIBAVUTIL_VERSION_INT,
  226. };
  227. static const AVCodecDefault libmp3lame_defaults[] = {
  228. { "b", "0" },
  229. { NULL },
  230. };
  231. static const int libmp3lame_sample_rates[] = {
  232. 44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000, 0
  233. };
  234. AVCodec ff_libmp3lame_encoder = {
  235. .name = "libmp3lame",
  236. .type = AVMEDIA_TYPE_AUDIO,
  237. .id = CODEC_ID_MP3,
  238. .priv_data_size = sizeof(LAMEContext),
  239. .init = mp3lame_encode_init,
  240. .encode = mp3lame_encode_frame,
  241. .close = mp3lame_encode_close,
  242. .capabilities = CODEC_CAP_DELAY,
  243. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S32,
  244. AV_SAMPLE_FMT_FLT,
  245. AV_SAMPLE_FMT_S16,
  246. AV_SAMPLE_FMT_NONE },
  247. .supported_samplerates = libmp3lame_sample_rates,
  248. .long_name = NULL_IF_CONFIG_SMALL("libmp3lame MP3 (MPEG audio layer 3)"),
  249. .priv_class = &libmp3lame_class,
  250. .defaults = libmp3lame_defaults,
  251. };