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.

363 lines
10.0KB

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