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.

346 lines
9.9KB

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