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.

312 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 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 "libavutil/intreadwrite.h"
  26. #include "libavutil/log.h"
  27. #include "libavutil/opt.h"
  28. #include "avcodec.h"
  29. #include "mpegaudio.h"
  30. #include <lame/lame.h>
  31. #define BUFFER_SIZE (7200 + 2*MPA_FRAME_SIZE + MPA_FRAME_SIZE/4)
  32. typedef struct Mp3AudioContext {
  33. AVClass *class;
  34. lame_global_flags *gfp;
  35. int stereo;
  36. uint8_t buffer[BUFFER_SIZE];
  37. int buffer_index;
  38. struct {
  39. int *left;
  40. int *right;
  41. } s32_data;
  42. int reservoir;
  43. } Mp3AudioContext;
  44. static av_cold int MP3lame_encode_init(AVCodecContext *avctx)
  45. {
  46. Mp3AudioContext *s = avctx->priv_data;
  47. if (avctx->channels > 2) {
  48. av_log(avctx, AV_LOG_ERROR,
  49. "Invalid number of channels %d, must be <= 2\n", avctx->channels);
  50. return AVERROR(EINVAL);
  51. }
  52. s->stereo = avctx->channels > 1 ? 1 : 0;
  53. if ((s->gfp = lame_init()) == NULL)
  54. goto err;
  55. lame_set_in_samplerate(s->gfp, avctx->sample_rate);
  56. lame_set_out_samplerate(s->gfp, avctx->sample_rate);
  57. lame_set_num_channels(s->gfp, avctx->channels);
  58. if(avctx->compression_level == FF_COMPRESSION_DEFAULT) {
  59. lame_set_quality(s->gfp, 5);
  60. } else {
  61. lame_set_quality(s->gfp, avctx->compression_level);
  62. }
  63. lame_set_mode(s->gfp, s->stereo ? JOINT_STEREO : MONO);
  64. lame_set_brate(s->gfp, avctx->bit_rate/1000);
  65. if(avctx->flags & CODEC_FLAG_QSCALE) {
  66. lame_set_brate(s->gfp, 0);
  67. lame_set_VBR(s->gfp, vbr_default);
  68. lame_set_VBR_quality(s->gfp, avctx->global_quality/(float)FF_QP2LAMBDA);
  69. }
  70. lame_set_bWriteVbrTag(s->gfp,0);
  71. #if FF_API_LAME_GLOBAL_OPTS
  72. s->reservoir = avctx->flags2 & CODEC_FLAG2_BIT_RESERVOIR;
  73. #endif
  74. lame_set_disable_reservoir(s->gfp, !s->reservoir);
  75. if (lame_init_params(s->gfp) < 0)
  76. goto err_close;
  77. avctx->frame_size = lame_get_framesize(s->gfp);
  78. if(!(avctx->coded_frame= avcodec_alloc_frame())) {
  79. lame_close(s->gfp);
  80. return AVERROR(ENOMEM);
  81. }
  82. avctx->coded_frame->key_frame= 1;
  83. if(AV_SAMPLE_FMT_S32 == avctx->sample_fmt && s->stereo) {
  84. int nelem = 2 * avctx->frame_size;
  85. if(! (s->s32_data.left = av_malloc(nelem * sizeof(int)))) {
  86. av_freep(&avctx->coded_frame);
  87. lame_close(s->gfp);
  88. return AVERROR(ENOMEM);
  89. }
  90. s->s32_data.right = s->s32_data.left + avctx->frame_size;
  91. }
  92. return 0;
  93. err_close:
  94. lame_close(s->gfp);
  95. err:
  96. return -1;
  97. }
  98. static const int sSampleRates[] = {
  99. 44100, 48000, 32000, 22050, 24000, 16000, 11025, 12000, 8000, 0
  100. };
  101. static const int sBitRates[2][3][15] = {
  102. { { 0, 32, 64, 96,128,160,192,224,256,288,320,352,384,416,448},
  103. { 0, 32, 48, 56, 64, 80, 96,112,128,160,192,224,256,320,384},
  104. { 0, 32, 40, 48, 56, 64, 80, 96,112,128,160,192,224,256,320}
  105. },
  106. { { 0, 32, 48, 56, 64, 80, 96,112,128,144,160,176,192,224,256},
  107. { 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96,112,128,144,160},
  108. { 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96,112,128,144,160}
  109. },
  110. };
  111. static const int sSamplesPerFrame[2][3] =
  112. {
  113. { 384, 1152, 1152 },
  114. { 384, 1152, 576 }
  115. };
  116. static const int sBitsPerSlot[3] = {
  117. 32,
  118. 8,
  119. 8
  120. };
  121. static int mp3len(void *data, int *samplesPerFrame, int *sampleRate)
  122. {
  123. uint32_t header = AV_RB32(data);
  124. int layerID = 3 - ((header >> 17) & 0x03);
  125. int bitRateID = ((header >> 12) & 0x0f);
  126. int sampleRateID = ((header >> 10) & 0x03);
  127. int bitsPerSlot = sBitsPerSlot[layerID];
  128. int isPadded = ((header >> 9) & 0x01);
  129. static int const mode_tab[4]= {2,3,1,0};
  130. int mode= mode_tab[(header >> 19) & 0x03];
  131. int mpeg_id= mode>0;
  132. int temp0, temp1, bitRate;
  133. if ( (( header >> 21 ) & 0x7ff) != 0x7ff || mode == 3 || layerID==3 || sampleRateID==3) {
  134. return -1;
  135. }
  136. if(!samplesPerFrame) samplesPerFrame= &temp0;
  137. if(!sampleRate ) sampleRate = &temp1;
  138. // *isMono = ((header >> 6) & 0x03) == 0x03;
  139. *sampleRate = sSampleRates[sampleRateID]>>mode;
  140. bitRate = sBitRates[mpeg_id][layerID][bitRateID] * 1000;
  141. *samplesPerFrame = sSamplesPerFrame[mpeg_id][layerID];
  142. //av_log(NULL, AV_LOG_DEBUG, "sr:%d br:%d spf:%d l:%d m:%d\n", *sampleRate, bitRate, *samplesPerFrame, layerID, mode);
  143. return *samplesPerFrame * bitRate / (bitsPerSlot * *sampleRate) + isPadded;
  144. }
  145. static int MP3lame_encode_frame(AVCodecContext *avctx,
  146. unsigned char *frame, int buf_size, void *data)
  147. {
  148. Mp3AudioContext *s = avctx->priv_data;
  149. int len;
  150. int lame_result;
  151. /* lame 3.91 dies on '1-channel interleaved' data */
  152. if(!data){
  153. lame_result= lame_encode_flush(
  154. s->gfp,
  155. s->buffer + s->buffer_index,
  156. BUFFER_SIZE - s->buffer_index
  157. );
  158. #if 2147483647 == INT_MAX
  159. }else if(AV_SAMPLE_FMT_S32 == avctx->sample_fmt){
  160. if (s->stereo) {
  161. int32_t *rp = data;
  162. int32_t *mp = rp + 2*avctx->frame_size;
  163. int *wpl = s->s32_data.left;
  164. int *wpr = s->s32_data.right;
  165. while (rp < mp) {
  166. *wpl++ = *rp++;
  167. *wpr++ = *rp++;
  168. }
  169. lame_result = lame_encode_buffer_int(
  170. s->gfp,
  171. s->s32_data.left,
  172. s->s32_data.right,
  173. avctx->frame_size,
  174. s->buffer + s->buffer_index,
  175. BUFFER_SIZE - s->buffer_index
  176. );
  177. } else {
  178. lame_result = lame_encode_buffer_int(
  179. s->gfp,
  180. data,
  181. data,
  182. avctx->frame_size,
  183. s->buffer + s->buffer_index,
  184. BUFFER_SIZE - s->buffer_index
  185. );
  186. }
  187. #endif
  188. }else{
  189. if (s->stereo) {
  190. lame_result = lame_encode_buffer_interleaved(
  191. s->gfp,
  192. data,
  193. avctx->frame_size,
  194. s->buffer + s->buffer_index,
  195. BUFFER_SIZE - s->buffer_index
  196. );
  197. } else {
  198. lame_result = lame_encode_buffer(
  199. s->gfp,
  200. data,
  201. data,
  202. avctx->frame_size,
  203. s->buffer + s->buffer_index,
  204. BUFFER_SIZE - s->buffer_index
  205. );
  206. }
  207. }
  208. if(lame_result < 0){
  209. if(lame_result==-1) {
  210. /* output buffer too small */
  211. av_log(avctx, AV_LOG_ERROR, "lame: output buffer too small (buffer index: %d, free bytes: %d)\n", s->buffer_index, BUFFER_SIZE - s->buffer_index);
  212. }
  213. return -1;
  214. }
  215. s->buffer_index += lame_result;
  216. if(s->buffer_index<4)
  217. return 0;
  218. len= mp3len(s->buffer, NULL, NULL);
  219. //av_log(avctx, AV_LOG_DEBUG, "in:%d packet-len:%d index:%d\n", avctx->frame_size, len, s->buffer_index);
  220. if(len <= s->buffer_index){
  221. memcpy(frame, s->buffer, len);
  222. s->buffer_index -= len;
  223. memmove(s->buffer, s->buffer+len, s->buffer_index);
  224. //FIXME fix the audio codec API, so we do not need the memcpy()
  225. /*for(i=0; i<len; i++){
  226. av_log(avctx, AV_LOG_DEBUG, "%2X ", frame[i]);
  227. }*/
  228. return len;
  229. }else
  230. return 0;
  231. }
  232. static av_cold int MP3lame_encode_close(AVCodecContext *avctx)
  233. {
  234. Mp3AudioContext *s = avctx->priv_data;
  235. av_freep(&s->s32_data.left);
  236. av_freep(&avctx->coded_frame);
  237. lame_close(s->gfp);
  238. return 0;
  239. }
  240. #define OFFSET(x) offsetof(Mp3AudioContext, x)
  241. #define AE AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  242. static const AVOption options[] = {
  243. { "reservoir", "Use bit reservoir.", OFFSET(reservoir), AV_OPT_TYPE_INT, { 1 }, 0, 1, AE },
  244. { NULL },
  245. };
  246. static const AVClass libmp3lame_class = {
  247. .class_name = "libmp3lame encoder",
  248. .item_name = av_default_item_name,
  249. .option = options,
  250. .version = LIBAVUTIL_VERSION_INT,
  251. };
  252. AVCodec ff_libmp3lame_encoder = {
  253. .name = "libmp3lame",
  254. .type = AVMEDIA_TYPE_AUDIO,
  255. .id = CODEC_ID_MP3,
  256. .priv_data_size = sizeof(Mp3AudioContext),
  257. .init = MP3lame_encode_init,
  258. .encode = MP3lame_encode_frame,
  259. .close = MP3lame_encode_close,
  260. .capabilities= CODEC_CAP_DELAY,
  261. .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,
  262. #if 2147483647 == INT_MAX
  263. AV_SAMPLE_FMT_S32,
  264. #endif
  265. AV_SAMPLE_FMT_NONE},
  266. .supported_samplerates= sSampleRates,
  267. .long_name= NULL_IF_CONFIG_SMALL("libmp3lame MP3 (MPEG audio layer 3)"),
  268. .priv_class = &libmp3lame_class,
  269. };