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.

314 lines
10KB

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