mp3dec.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*
  2. * MP3 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 "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. typedef struct {
  31. int64_t filesize;
  32. } MP3Context;
  33. /* mp3 read */
  34. static int mp3_read_probe(AVProbeData *p)
  35. {
  36. int max_frames, first_frames = 0;
  37. int fsize, frames, sample_rate;
  38. uint32_t header;
  39. uint8_t *buf, *buf0, *buf2, *end;
  40. AVCodecContext avctx;
  41. buf0 = p->buf;
  42. end = p->buf + p->buf_size - sizeof(uint32_t);
  43. while(buf0 < end && !*buf0)
  44. buf0++;
  45. max_frames = 0;
  46. buf = buf0;
  47. for(; buf < end; buf= buf2+1) {
  48. buf2 = buf;
  49. for(frames = 0; buf2 < end; frames++) {
  50. header = AV_RB32(buf2);
  51. fsize = avpriv_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
  52. if(fsize < 0)
  53. break;
  54. buf2 += fsize;
  55. }
  56. max_frames = FFMAX(max_frames, frames);
  57. if(buf == buf0)
  58. first_frames= frames;
  59. }
  60. // keep this in sync with ac3 probe, both need to avoid
  61. // issues with MPEG-files!
  62. if (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
  63. else if(max_frames>200)return AVPROBE_SCORE_MAX/2;
  64. else if(max_frames>=4) return AVPROBE_SCORE_MAX/4;
  65. else if(ff_id3v2_match(buf0, ID3v2_DEFAULT_MAGIC) && 2*ff_id3v2_tag_len(buf0) >= p->buf_size)
  66. return AVPROBE_SCORE_MAX/8;
  67. else if(max_frames>=1) return 1;
  68. else return 0;
  69. //mpegps_mp3_unrecognized_format.mpg has max_frames=3
  70. }
  71. /**
  72. * Try to find Xing/Info/VBRI tags and compute duration from info therein
  73. */
  74. static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
  75. {
  76. uint32_t v, spf;
  77. unsigned frames = 0; /* Total number of frames in file */
  78. unsigned size = 0; /* Total number of bytes in the stream */
  79. const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
  80. MPADecodeHeader c;
  81. int vbrtag_size = 0;
  82. int is_cbr;
  83. v = avio_rb32(s->pb);
  84. if(ff_mpa_check_header(v) < 0)
  85. return -1;
  86. if (avpriv_mpegaudio_decode_header(&c, v) == 0)
  87. vbrtag_size = c.frame_size;
  88. if(c.layer != 3)
  89. return -1;
  90. /* Check for Xing / Info tag */
  91. avio_skip(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1]);
  92. v = avio_rb32(s->pb);
  93. is_cbr = v == MKBETAG('I', 'n', 'f', 'o');
  94. if (v == MKBETAG('X', 'i', 'n', 'g') || is_cbr) {
  95. v = avio_rb32(s->pb);
  96. if(v & 0x1)
  97. frames = avio_rb32(s->pb);
  98. if(v & 0x2)
  99. size = avio_rb32(s->pb);
  100. }
  101. /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
  102. avio_seek(s->pb, base + 4 + 32, SEEK_SET);
  103. v = avio_rb32(s->pb);
  104. if(v == MKBETAG('V', 'B', 'R', 'I')) {
  105. /* Check tag version */
  106. if(avio_rb16(s->pb) == 1) {
  107. /* skip delay and quality */
  108. avio_skip(s->pb, 4);
  109. size = avio_rb32(s->pb);
  110. frames = avio_rb32(s->pb);
  111. }
  112. }
  113. if(!frames && !size)
  114. return -1;
  115. /* Skip the vbr tag frame */
  116. avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
  117. spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
  118. if(frames)
  119. st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
  120. st->time_base);
  121. if (size && frames && !is_cbr)
  122. st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
  123. return 0;
  124. }
  125. static int mp3_read_header(AVFormatContext *s)
  126. {
  127. MP3Context *mp3 = s->priv_data;
  128. AVStream *st;
  129. int64_t off;
  130. st = avformat_new_stream(s, NULL);
  131. if (!st)
  132. return AVERROR(ENOMEM);
  133. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  134. st->codec->codec_id = CODEC_ID_MP3;
  135. st->need_parsing = AVSTREAM_PARSE_FULL;
  136. st->start_time = 0;
  137. // lcm of all mp3 sample rates
  138. avpriv_set_pts_info(st, 64, 1, 14112000);
  139. s->pb->maxsize = -1;
  140. off = avio_tell(s->pb);
  141. if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
  142. ff_id3v1_read(s);
  143. if(s->pb->seekable)
  144. mp3->filesize = avio_size(s->pb);
  145. if (mp3_parse_vbr_tags(s, st, off) < 0)
  146. avio_seek(s->pb, off, SEEK_SET);
  147. /* the parameters will be extracted from the compressed bitstream */
  148. return 0;
  149. }
  150. #define MP3_PACKET_SIZE 1024
  151. static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
  152. {
  153. MP3Context *mp3 = s->priv_data;
  154. int ret, size;
  155. int64_t pos;
  156. // AVStream *st = s->streams[0];
  157. size= MP3_PACKET_SIZE;
  158. pos = avio_tell(s->pb);
  159. if(mp3->filesize > ID3v1_TAG_SIZE && pos < mp3->filesize)
  160. size= FFMIN(size, mp3->filesize - pos);
  161. ret= av_get_packet(s->pb, pkt, size);
  162. pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
  163. pkt->stream_index = 0;
  164. if (ret <= 0) {
  165. if(ret<0)
  166. return ret;
  167. return AVERROR_EOF;
  168. }
  169. if (ret >= ID3v1_TAG_SIZE &&
  170. memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
  171. ret -= ID3v1_TAG_SIZE;
  172. /* note: we need to modify the packet size here to handle the last
  173. packet */
  174. pkt->size = ret;
  175. return ret;
  176. }
  177. AVInputFormat ff_mp3_demuxer = {
  178. .name = "mp3",
  179. .long_name = NULL_IF_CONFIG_SMALL("MPEG audio layer 2/3"),
  180. .priv_data_size = sizeof(MP3Context),
  181. .read_probe = mp3_read_probe,
  182. .read_header = mp3_read_header,
  183. .read_packet = mp3_read_packet,
  184. .flags = AVFMT_GENERIC_INDEX,
  185. .extensions = "mp2,mp3,m2a", /* XXX: use probe */
  186. };