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 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/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)
  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. ret = AVERROR(EINVAL);
  63. goto error;
  64. }
  65. lame_set_num_channels(s->gfp, avctx->channels);
  66. lame_set_mode(s->gfp, avctx->channels > 1 ? JOINT_STEREO : MONO);
  67. /* sample rate */
  68. lame_set_in_samplerate (s->gfp, avctx->sample_rate);
  69. lame_set_out_samplerate(s->gfp, avctx->sample_rate);
  70. /* algorithmic quality */
  71. if (avctx->compression_level == FF_COMPRESSION_DEFAULT)
  72. lame_set_quality(s->gfp, 5);
  73. else
  74. lame_set_quality(s->gfp, avctx->compression_level);
  75. /* rate control */
  76. if (avctx->flags & CODEC_FLAG_QSCALE) {
  77. lame_set_VBR(s->gfp, vbr_default);
  78. lame_set_VBR_quality(s->gfp, avctx->global_quality / (float)FF_QP2LAMBDA);
  79. } else {
  80. if (avctx->bit_rate)
  81. lame_set_brate(s->gfp, avctx->bit_rate / 1000);
  82. }
  83. /* do not get a Xing VBR header frame from LAME */
  84. lame_set_bWriteVbrTag(s->gfp,0);
  85. /* bit reservoir usage */
  86. lame_set_disable_reservoir(s->gfp, !s->reservoir);
  87. /* set specified parameters */
  88. if (lame_init_params(s->gfp) < 0) {
  89. ret = -1;
  90. goto error;
  91. }
  92. avctx->frame_size = lame_get_framesize(s->gfp);
  93. avctx->coded_frame = avcodec_alloc_frame();
  94. if (!avctx->coded_frame) {
  95. ret = AVERROR(ENOMEM);
  96. goto error;
  97. }
  98. /* sample format */
  99. if (avctx->sample_fmt == AV_SAMPLE_FMT_S32 ||
  100. avctx->sample_fmt == AV_SAMPLE_FMT_FLT) {
  101. int ch;
  102. for (ch = 0; ch < avctx->channels; ch++) {
  103. s->planar_samples[ch] = av_malloc(avctx->frame_size *
  104. av_get_bytes_per_sample(avctx->sample_fmt));
  105. if (!s->planar_samples[ch]) {
  106. ret = AVERROR(ENOMEM);
  107. goto error;
  108. }
  109. }
  110. }
  111. return 0;
  112. error:
  113. mp3lame_encode_close(avctx);
  114. return ret;
  115. }
  116. #define DEINTERLEAVE(type, scale) do { \
  117. int ch, i; \
  118. for (ch = 0; ch < s->avctx->channels; ch++) { \
  119. const type *input = samples; \
  120. type *output = s->planar_samples[ch]; \
  121. input += ch; \
  122. for (i = 0; i < s->avctx->frame_size; i++) { \
  123. output[i] = *input * scale; \
  124. input += s->avctx->channels; \
  125. } \
  126. } \
  127. } while (0)
  128. static int encode_frame_int16(LAMEContext *s, void *samples)
  129. {
  130. if (s->avctx->channels > 1) {
  131. return lame_encode_buffer_interleaved(s->gfp, samples,
  132. s->avctx->frame_size,
  133. s->buffer + s->buffer_index,
  134. BUFFER_SIZE - s->buffer_index);
  135. } else {
  136. return lame_encode_buffer(s->gfp, samples, NULL, s->avctx->frame_size,
  137. s->buffer + s->buffer_index,
  138. BUFFER_SIZE - s->buffer_index);
  139. }
  140. }
  141. static int encode_frame_int32(LAMEContext *s, void *samples)
  142. {
  143. DEINTERLEAVE(int32_t, 1);
  144. return lame_encode_buffer_int(s->gfp,
  145. s->planar_samples[0], s->planar_samples[1],
  146. s->avctx->frame_size,
  147. s->buffer + s->buffer_index,
  148. BUFFER_SIZE - s->buffer_index);
  149. }
  150. static int encode_frame_float(LAMEContext *s, void *samples)
  151. {
  152. DEINTERLEAVE(float, 32768.0f);
  153. return lame_encode_buffer_float(s->gfp,
  154. s->planar_samples[0], s->planar_samples[1],
  155. s->avctx->frame_size,
  156. s->buffer + s->buffer_index,
  157. BUFFER_SIZE - s->buffer_index);
  158. }
  159. static int mp3lame_encode_frame(AVCodecContext *avctx, unsigned char *frame,
  160. int buf_size, void *data)
  161. {
  162. LAMEContext *s = avctx->priv_data;
  163. MPADecodeHeader hdr;
  164. int len;
  165. int lame_result;
  166. if (data) {
  167. switch (avctx->sample_fmt) {
  168. case AV_SAMPLE_FMT_S16:
  169. lame_result = encode_frame_int16(s, data);
  170. break;
  171. case AV_SAMPLE_FMT_S32:
  172. lame_result = encode_frame_int32(s, data);
  173. break;
  174. case AV_SAMPLE_FMT_FLT:
  175. lame_result = encode_frame_float(s, data);
  176. break;
  177. default:
  178. return AVERROR_BUG;
  179. }
  180. } else {
  181. lame_result = lame_encode_flush(s->gfp, s->buffer + s->buffer_index,
  182. 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, BUFFER_SIZE - s->buffer_index);
  189. }
  190. return -1;
  191. }
  192. s->buffer_index += lame_result;
  193. /* Move 1 frame from the LAME buffer to the output packet, if available.
  194. We have to parse the first frame header in the output buffer to
  195. determine the frame size. */
  196. if (s->buffer_index < 4)
  197. return 0;
  198. if (avpriv_mpegaudio_decode_header(&hdr, AV_RB32(s->buffer))) {
  199. av_log(avctx, AV_LOG_ERROR, "free format output not supported\n");
  200. return -1;
  201. }
  202. len = hdr.frame_size;
  203. av_dlog(avctx, "in:%d packet-len:%d index:%d\n", avctx->frame_size, len,
  204. s->buffer_index);
  205. if (len <= s->buffer_index) {
  206. memcpy(frame, s->buffer, len);
  207. s->buffer_index -= len;
  208. memmove(s->buffer, s->buffer + len, s->buffer_index);
  209. return len;
  210. } else
  211. return 0;
  212. }
  213. #define OFFSET(x) offsetof(LAMEContext, x)
  214. #define AE AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  215. static const AVOption options[] = {
  216. { "reservoir", "Use bit reservoir.", OFFSET(reservoir), AV_OPT_TYPE_INT, { 1 }, 0, 1, AE },
  217. { NULL },
  218. };
  219. static const AVClass libmp3lame_class = {
  220. .class_name = "libmp3lame encoder",
  221. .item_name = av_default_item_name,
  222. .option = options,
  223. .version = LIBAVUTIL_VERSION_INT,
  224. };
  225. static const AVCodecDefault libmp3lame_defaults[] = {
  226. { "b", "0" },
  227. { NULL },
  228. };
  229. static const int libmp3lame_sample_rates[] = {
  230. 44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000, 0
  231. };
  232. AVCodec ff_libmp3lame_encoder = {
  233. .name = "libmp3lame",
  234. .type = AVMEDIA_TYPE_AUDIO,
  235. .id = CODEC_ID_MP3,
  236. .priv_data_size = sizeof(LAMEContext),
  237. .init = mp3lame_encode_init,
  238. .encode = mp3lame_encode_frame,
  239. .close = mp3lame_encode_close,
  240. .capabilities = CODEC_CAP_DELAY,
  241. .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S32,
  242. AV_SAMPLE_FMT_FLT,
  243. AV_SAMPLE_FMT_S16,
  244. AV_SAMPLE_FMT_NONE },
  245. .supported_samplerates = libmp3lame_sample_rates,
  246. .long_name = NULL_IF_CONFIG_SMALL("libmp3lame MP3 (MPEG audio layer 3)"),
  247. .priv_class = &libmp3lame_class,
  248. .defaults = libmp3lame_defaults,
  249. };