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.

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