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.

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