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.

364 lines
9.8KB

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