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.

376 lines
10KB

  1. /*
  2. * MP3 muxer and demuxer
  3. * Copyright (c) 2003 Fabrice Bellard
  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. #include <strings.h>
  22. #include "libavutil/avstring.h"
  23. #include "libavutil/intreadwrite.h"
  24. #include "avformat.h"
  25. #include "id3v2.h"
  26. #include "id3v1.h"
  27. #if CONFIG_MP3_DEMUXER
  28. #include "libavcodec/mpegaudio.h"
  29. #include "libavcodec/mpegaudiodecheader.h"
  30. /* mp3 read */
  31. static int mp3_read_probe(AVProbeData *p)
  32. {
  33. int max_frames, first_frames = 0;
  34. int fsize, frames, sample_rate;
  35. uint32_t header;
  36. uint8_t *buf, *buf0, *buf2, *end;
  37. AVCodecContext avctx;
  38. buf0 = p->buf;
  39. if(ff_id3v2_match(buf0, ID3v2_DEFAULT_MAGIC)) {
  40. buf0 += ff_id3v2_tag_len(buf0);
  41. }
  42. end = p->buf + p->buf_size - sizeof(uint32_t);
  43. while(buf0 < end && !*buf0)
  44. buf0++;
  45. max_frames = 0;
  46. buf = buf0;
  47. for(; buf < end; buf= buf2+1) {
  48. buf2 = buf;
  49. for(frames = 0; buf2 < end; frames++) {
  50. header = AV_RB32(buf2);
  51. fsize = ff_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
  52. if(fsize < 0)
  53. break;
  54. buf2 += fsize;
  55. }
  56. max_frames = FFMAX(max_frames, frames);
  57. if(buf == buf0)
  58. first_frames= frames;
  59. }
  60. // keep this in sync with ac3 probe, both need to avoid
  61. // issues with MPEG-files!
  62. if (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
  63. else if(max_frames>500)return AVPROBE_SCORE_MAX/2;
  64. else if(max_frames>=4) return AVPROBE_SCORE_MAX/4;
  65. else if(buf0!=p->buf) return AVPROBE_SCORE_MAX/4-1;
  66. else if(max_frames>=1) return 1;
  67. else return 0;
  68. //mpegps_mp3_unrecognized_format.mpg has max_frames=3
  69. }
  70. /**
  71. * Try to find Xing/Info/VBRI tags and compute duration from info therein
  72. */
  73. static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
  74. {
  75. uint32_t v, spf;
  76. unsigned frames = 0; /* Total number of frames in file */
  77. unsigned size = 0; /* Total number of bytes in the stream */
  78. const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
  79. MPADecodeHeader c;
  80. int vbrtag_size = 0;
  81. v = get_be32(s->pb);
  82. if(ff_mpa_check_header(v) < 0)
  83. return -1;
  84. if (ff_mpegaudio_decode_header(&c, v) == 0)
  85. vbrtag_size = c.frame_size;
  86. if(c.layer != 3)
  87. return -1;
  88. /* Check for Xing / Info tag */
  89. url_fseek(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1], SEEK_CUR);
  90. v = get_be32(s->pb);
  91. if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
  92. v = get_be32(s->pb);
  93. if(v & 0x1)
  94. frames = get_be32(s->pb);
  95. if(v & 0x2)
  96. size = get_be32(s->pb);
  97. }
  98. /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
  99. url_fseek(s->pb, base + 4 + 32, SEEK_SET);
  100. v = get_be32(s->pb);
  101. if(v == MKBETAG('V', 'B', 'R', 'I')) {
  102. /* Check tag version */
  103. if(get_be16(s->pb) == 1) {
  104. /* skip delay and quality */
  105. url_fseek(s->pb, 4, SEEK_CUR);
  106. frames = get_be32(s->pb);
  107. size = get_be32(s->pb);
  108. }
  109. }
  110. if(!frames && !size)
  111. return -1;
  112. /* Skip the vbr tag frame */
  113. url_fseek(s->pb, base + vbrtag_size, SEEK_SET);
  114. spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
  115. if(frames)
  116. st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
  117. st->time_base);
  118. if(size)
  119. st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
  120. return 0;
  121. }
  122. static int mp3_read_header(AVFormatContext *s,
  123. AVFormatParameters *ap)
  124. {
  125. AVStream *st;
  126. int64_t off;
  127. st = av_new_stream(s, 0);
  128. if (!st)
  129. return AVERROR(ENOMEM);
  130. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  131. st->codec->codec_id = CODEC_ID_MP3;
  132. st->need_parsing = AVSTREAM_PARSE_FULL;
  133. st->start_time = 0;
  134. // lcm of all mp3 sample rates
  135. av_set_pts_info(st, 64, 1, 14112000);
  136. ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC);
  137. off = url_ftell(s->pb);
  138. if (!av_metadata_get(s->metadata, "", NULL, AV_METADATA_IGNORE_SUFFIX))
  139. ff_id3v1_read(s);
  140. if (mp3_parse_vbr_tags(s, st, off) < 0)
  141. url_fseek(s->pb, off, SEEK_SET);
  142. /* the parameters will be extracted from the compressed bitstream */
  143. return 0;
  144. }
  145. #define MP3_PACKET_SIZE 1024
  146. static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
  147. {
  148. int ret, size;
  149. // AVStream *st = s->streams[0];
  150. size= MP3_PACKET_SIZE;
  151. ret= av_get_packet(s->pb, pkt, size);
  152. pkt->stream_index = 0;
  153. if (ret <= 0) {
  154. return AVERROR(EIO);
  155. }
  156. /* note: we need to modify the packet size here to handle the last
  157. packet */
  158. pkt->size = ret;
  159. return ret;
  160. }
  161. AVInputFormat mp3_demuxer = {
  162. "mp3",
  163. NULL_IF_CONFIG_SMALL("MPEG audio layer 2/3"),
  164. 0,
  165. mp3_read_probe,
  166. mp3_read_header,
  167. mp3_read_packet,
  168. .flags= AVFMT_GENERIC_INDEX,
  169. .extensions = "mp2,mp3,m2a", /* XXX: use probe */
  170. .metadata_conv = ff_id3v2_metadata_conv,
  171. };
  172. #endif
  173. #if CONFIG_MP2_MUXER || CONFIG_MP3_MUXER
  174. static int id3v1_set_string(AVFormatContext *s, const char *key,
  175. uint8_t *buf, int buf_size)
  176. {
  177. AVMetadataTag *tag;
  178. if ((tag = av_metadata_get(s->metadata, key, NULL, 0)))
  179. strncpy(buf, tag->value, buf_size);
  180. return !!tag;
  181. }
  182. static int id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
  183. {
  184. AVMetadataTag *tag;
  185. int i, count = 0;
  186. memset(buf, 0, ID3v1_TAG_SIZE); /* fail safe */
  187. buf[0] = 'T';
  188. buf[1] = 'A';
  189. buf[2] = 'G';
  190. count += id3v1_set_string(s, "TIT2", buf + 3, 30); //title
  191. count += id3v1_set_string(s, "TPE1", buf + 33, 30); //author|artist
  192. count += id3v1_set_string(s, "TALB", buf + 63, 30); //album
  193. count += id3v1_set_string(s, "TDRL", buf + 93, 4); //date
  194. count += id3v1_set_string(s, "comment", buf + 97, 30);
  195. if ((tag = av_metadata_get(s->metadata, "TRCK", NULL, 0))) { //track
  196. buf[125] = 0;
  197. buf[126] = atoi(tag->value);
  198. count++;
  199. }
  200. buf[127] = 0xFF; /* default to unknown genre */
  201. if ((tag = av_metadata_get(s->metadata, "TCON", NULL, 0))) { //genre
  202. for(i = 0; i <= ID3v1_GENRE_MAX; i++) {
  203. if (!strcasecmp(tag->value, ff_id3v1_genre_str[i])) {
  204. buf[127] = i;
  205. count++;
  206. break;
  207. }
  208. }
  209. }
  210. return count;
  211. }
  212. /* simple formats */
  213. static void id3v2_put_size(AVFormatContext *s, int size)
  214. {
  215. put_byte(s->pb, size >> 21 & 0x7f);
  216. put_byte(s->pb, size >> 14 & 0x7f);
  217. put_byte(s->pb, size >> 7 & 0x7f);
  218. put_byte(s->pb, size & 0x7f);
  219. }
  220. static void id3v2_put_ttag(AVFormatContext *s, const char *buf, int len,
  221. uint32_t tag)
  222. {
  223. put_be32(s->pb, tag);
  224. id3v2_put_size(s, len + 1);
  225. put_be16(s->pb, 0);
  226. put_byte(s->pb, 3); /* UTF-8 */
  227. put_buffer(s->pb, buf, len);
  228. }
  229. static int mp3_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  230. {
  231. put_buffer(s->pb, pkt->data, pkt->size);
  232. put_flush_packet(s->pb);
  233. return 0;
  234. }
  235. static int mp3_write_trailer(struct AVFormatContext *s)
  236. {
  237. uint8_t buf[ID3v1_TAG_SIZE];
  238. /* write the id3v1 tag */
  239. if (id3v1_create_tag(s, buf) > 0) {
  240. put_buffer(s->pb, buf, ID3v1_TAG_SIZE);
  241. put_flush_packet(s->pb);
  242. }
  243. return 0;
  244. }
  245. #endif /* CONFIG_MP2_MUXER || CONFIG_MP3_MUXER */
  246. #if CONFIG_MP2_MUXER
  247. AVOutputFormat mp2_muxer = {
  248. "mp2",
  249. NULL_IF_CONFIG_SMALL("MPEG audio layer 2"),
  250. "audio/x-mpeg",
  251. "mp2,m2a",
  252. 0,
  253. CODEC_ID_MP2,
  254. CODEC_ID_NONE,
  255. NULL,
  256. mp3_write_packet,
  257. mp3_write_trailer,
  258. .metadata_conv = ff_id3v2_metadata_conv,
  259. };
  260. #endif
  261. #if CONFIG_MP3_MUXER
  262. /**
  263. * Write an ID3v2.4 header at beginning of stream
  264. */
  265. static int mp3_write_header(struct AVFormatContext *s)
  266. {
  267. AVMetadataTag *t = NULL;
  268. int totlen = 0;
  269. int64_t size_pos, cur_pos;
  270. put_be32(s->pb, MKBETAG('I', 'D', '3', 0x04)); /* ID3v2.4 */
  271. put_byte(s->pb, 0);
  272. put_byte(s->pb, 0); /* flags */
  273. /* reserve space for size */
  274. size_pos = url_ftell(s->pb);
  275. put_be32(s->pb, 0);
  276. while ((t = av_metadata_get(s->metadata, "", t, AV_METADATA_IGNORE_SUFFIX))) {
  277. uint32_t tag = 0;
  278. if (t->key[0] == 'T' && strlen(t->key) == 4) {
  279. int i;
  280. for (i = 0; *ff_id3v2_tags[i]; i++)
  281. if (AV_RB32(t->key) == AV_RB32(ff_id3v2_tags[i])) {
  282. int len = strlen(t->value);
  283. tag = AV_RB32(t->key);
  284. totlen += len + ID3v2_HEADER_SIZE + 2;
  285. id3v2_put_ttag(s, t->value, len + 1, tag);
  286. break;
  287. }
  288. }
  289. if (!tag) { /* unknown tag, write as TXXX frame */
  290. int len = strlen(t->key), len1 = strlen(t->value);
  291. char *buf = av_malloc(len + len1 + 2);
  292. if (!buf)
  293. return AVERROR(ENOMEM);
  294. tag = MKBETAG('T', 'X', 'X', 'X');
  295. strcpy(buf, t->key);
  296. strcpy(buf + len + 1, t->value);
  297. id3v2_put_ttag(s, buf, len + len1 + 2, tag);
  298. totlen += len + len1 + ID3v2_HEADER_SIZE + 3;
  299. av_free(buf);
  300. }
  301. }
  302. cur_pos = url_ftell(s->pb);
  303. url_fseek(s->pb, size_pos, SEEK_SET);
  304. id3v2_put_size(s, totlen);
  305. url_fseek(s->pb, cur_pos, SEEK_SET);
  306. return 0;
  307. }
  308. AVOutputFormat mp3_muxer = {
  309. "mp3",
  310. NULL_IF_CONFIG_SMALL("MPEG audio layer 3"),
  311. "audio/x-mpeg",
  312. "mp3",
  313. 0,
  314. CODEC_ID_MP3,
  315. CODEC_ID_NONE,
  316. mp3_write_header,
  317. mp3_write_packet,
  318. mp3_write_trailer,
  319. AVFMT_NOTIMESTAMPS,
  320. .metadata_conv = ff_id3v2_metadata_conv,
  321. };
  322. #endif