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.

276 lines
7.9KB

  1. /*
  2. * MP3 demuxer
  3. * Copyright (c) 2003 Fabrice Bellard
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/avstring.h"
  22. #include "libavutil/intreadwrite.h"
  23. #include "libavutil/dict.h"
  24. #include "libavutil/mathematics.h"
  25. #include "avformat.h"
  26. #include "internal.h"
  27. #include "id3v2.h"
  28. #include "id3v1.h"
  29. #include "libavcodec/mpegaudiodecheader.h"
  30. #define XING_FLAG_FRAMES 0x01
  31. #define XING_FLAG_SIZE 0x02
  32. #define XING_FLAG_TOC 0x04
  33. #define XING_TOC_COUNT 100
  34. /* mp3 read */
  35. static int mp3_read_probe(AVProbeData *p)
  36. {
  37. int max_frames, first_frames = 0;
  38. int fsize, frames, sample_rate;
  39. uint32_t header;
  40. uint8_t *buf, *buf0, *buf2, *end;
  41. AVCodecContext avctx;
  42. buf0 = p->buf;
  43. end = p->buf + p->buf_size - sizeof(uint32_t);
  44. while(buf0 < end && !*buf0)
  45. buf0++;
  46. max_frames = 0;
  47. buf = buf0;
  48. for(; buf < end; buf= buf2+1) {
  49. buf2 = buf;
  50. for(frames = 0; buf2 < end; frames++) {
  51. header = AV_RB32(buf2);
  52. fsize = avpriv_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
  53. if(fsize < 0)
  54. break;
  55. buf2 += fsize;
  56. }
  57. max_frames = FFMAX(max_frames, frames);
  58. if(buf == buf0)
  59. first_frames= frames;
  60. }
  61. // keep this in sync with ac3 probe, both need to avoid
  62. // issues with MPEG-files!
  63. if (first_frames >= 4) return AVPROBE_SCORE_MAX / 2 + 1;
  64. if (max_frames) {
  65. int pes = 0, i;
  66. unsigned int code = -1;
  67. #define VIDEO_ID 0x000001e0
  68. #define AUDIO_ID 0x000001c0
  69. /* do a search for mpegps headers to be able to properly bias
  70. * towards mpegps if we detect this stream as both. */
  71. for (i = 0; i<p->buf_size; i++) {
  72. code = (code << 8) + p->buf[i];
  73. if ((code & 0xffffff00) == 0x100) {
  74. if ((code & 0x1f0) == VIDEO_ID) pes++;
  75. else if((code & 0x1e0) == AUDIO_ID) pes++;
  76. }
  77. }
  78. if (pes)
  79. max_frames = (max_frames + pes - 1) / pes;
  80. }
  81. if (max_frames > 500) return AVPROBE_SCORE_MAX / 2;
  82. else if (max_frames >= 4) return AVPROBE_SCORE_MAX / 4;
  83. else if (max_frames >= 1) return 1;
  84. else return 0;
  85. //mpegps_mp3_unrecognized_format.mpg has max_frames=3
  86. }
  87. static void read_xing_toc(AVFormatContext *s, int64_t filesize, int64_t duration)
  88. {
  89. int i;
  90. if (!filesize &&
  91. !(filesize = avio_size(s->pb))) {
  92. av_log(s, AV_LOG_WARNING, "Cannot determine file size, skipping TOC table.\n");
  93. return;
  94. }
  95. for (i = 0; i < XING_TOC_COUNT; i++) {
  96. uint8_t b = avio_r8(s->pb);
  97. av_add_index_entry(s->streams[0],
  98. av_rescale(b, filesize, 256),
  99. av_rescale(i, duration, XING_TOC_COUNT),
  100. 0, 0, AVINDEX_KEYFRAME);
  101. }
  102. }
  103. /**
  104. * Try to find Xing/Info/VBRI tags and compute duration from info therein
  105. */
  106. static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
  107. {
  108. uint32_t v, spf;
  109. unsigned frames = 0; /* Total number of frames in file */
  110. unsigned size = 0; /* Total number of bytes in the stream */
  111. const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
  112. MPADecodeHeader c;
  113. int vbrtag_size = 0;
  114. int is_cbr;
  115. v = avio_rb32(s->pb);
  116. if(ff_mpa_check_header(v) < 0)
  117. return -1;
  118. if (avpriv_mpegaudio_decode_header(&c, v) == 0)
  119. vbrtag_size = c.frame_size;
  120. if(c.layer != 3)
  121. return -1;
  122. spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
  123. /* Check for Xing / Info tag */
  124. avio_skip(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1]);
  125. v = avio_rb32(s->pb);
  126. is_cbr = v == MKBETAG('I', 'n', 'f', 'o');
  127. if (v == MKBETAG('X', 'i', 'n', 'g') || is_cbr) {
  128. v = avio_rb32(s->pb);
  129. if(v & XING_FLAG_FRAMES)
  130. frames = avio_rb32(s->pb);
  131. if(v & XING_FLAG_SIZE)
  132. size = avio_rb32(s->pb);
  133. if (v & XING_FLAG_TOC && frames)
  134. read_xing_toc(s, size, av_rescale_q(frames, (AVRational){spf, c.sample_rate},
  135. st->time_base));
  136. }
  137. /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
  138. avio_seek(s->pb, base + 4 + 32, SEEK_SET);
  139. v = avio_rb32(s->pb);
  140. if(v == MKBETAG('V', 'B', 'R', 'I')) {
  141. /* Check tag version */
  142. if(avio_rb16(s->pb) == 1) {
  143. /* skip delay and quality */
  144. avio_skip(s->pb, 4);
  145. size = avio_rb32(s->pb);
  146. frames = avio_rb32(s->pb);
  147. }
  148. }
  149. if(!frames && !size)
  150. return -1;
  151. /* Skip the vbr tag frame */
  152. avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
  153. if(frames)
  154. st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
  155. st->time_base);
  156. if (size && frames && !is_cbr)
  157. st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
  158. return 0;
  159. }
  160. static int mp3_read_header(AVFormatContext *s)
  161. {
  162. AVStream *st;
  163. int64_t off;
  164. st = avformat_new_stream(s, NULL);
  165. if (!st)
  166. return AVERROR(ENOMEM);
  167. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  168. st->codec->codec_id = AV_CODEC_ID_MP3;
  169. st->need_parsing = AVSTREAM_PARSE_FULL;
  170. st->start_time = 0;
  171. // lcm of all mp3 sample rates
  172. avpriv_set_pts_info(st, 64, 1, 14112000);
  173. off = avio_tell(s->pb);
  174. if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
  175. ff_id3v1_read(s);
  176. if (mp3_parse_vbr_tags(s, st, off) < 0)
  177. avio_seek(s->pb, off, SEEK_SET);
  178. /* the parameters will be extracted from the compressed bitstream */
  179. return 0;
  180. }
  181. #define MP3_PACKET_SIZE 1024
  182. static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
  183. {
  184. int ret;
  185. ret = av_get_packet(s->pb, pkt, MP3_PACKET_SIZE);
  186. if (ret < 0)
  187. return ret;
  188. pkt->stream_index = 0;
  189. if (ret > ID3v1_TAG_SIZE &&
  190. memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
  191. ret -= ID3v1_TAG_SIZE;
  192. /* note: we need to modify the packet size here to handle the last
  193. packet */
  194. pkt->size = ret;
  195. return ret;
  196. }
  197. static int mp3_seek(AVFormatContext *s, int stream_index, int64_t timestamp,
  198. int flags)
  199. {
  200. AVIndexEntry *ie;
  201. AVStream *st = s->streams[0];
  202. int64_t ret = av_index_search_timestamp(st, timestamp, flags);
  203. uint32_t header = 0;
  204. if (ret < 0)
  205. return ret;
  206. ie = &st->index_entries[ret];
  207. ret = avio_seek(s->pb, ie->pos, SEEK_SET);
  208. if (ret < 0)
  209. return ret;
  210. while (!s->pb->eof_reached) {
  211. header = (header << 8) + avio_r8(s->pb);
  212. if (ff_mpa_check_header(header) >= 0) {
  213. ff_update_cur_dts(s, st, ie->timestamp);
  214. ret = avio_seek(s->pb, -4, SEEK_CUR);
  215. return (ret >= 0) ? 0 : ret;
  216. }
  217. }
  218. return AVERROR_EOF;
  219. }
  220. AVInputFormat ff_mp3_demuxer = {
  221. .name = "mp3",
  222. .long_name = NULL_IF_CONFIG_SMALL("MP2/3 (MPEG audio layer 2/3)"),
  223. .read_probe = mp3_read_probe,
  224. .read_header = mp3_read_header,
  225. .read_packet = mp3_read_packet,
  226. .read_seek = mp3_seek,
  227. .flags = AVFMT_GENERIC_INDEX,
  228. .extensions = "mp2,mp3,m2a", /* XXX: use probe */
  229. };