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.

294 lines
8.3KB

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