mp3dec.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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 "avformat.h"
  25. #include "id3v2.h"
  26. #include "id3v1.h"
  27. #include "libavcodec/mpegaudiodecheader.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. end = p->buf + p->buf_size - sizeof(uint32_t);
  38. while(buf0 < end && !*buf0)
  39. buf0++;
  40. max_frames = 0;
  41. buf = buf0;
  42. for(; buf < end; buf= buf2+1) {
  43. buf2 = buf;
  44. for(frames = 0; buf2 < end; frames++) {
  45. header = AV_RB32(buf2);
  46. fsize = ff_mpa_decode_header(&avctx, header, &sample_rate, &sample_rate, &sample_rate, &sample_rate);
  47. if(fsize < 0)
  48. break;
  49. buf2 += fsize;
  50. }
  51. max_frames = FFMAX(max_frames, frames);
  52. if(buf == buf0)
  53. first_frames= frames;
  54. }
  55. // keep this in sync with ac3 probe, both need to avoid
  56. // issues with MPEG-files!
  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(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. unsigned frames = 0; /* Total number of frames in file */
  71. unsigned size = 0; /* Total number of bytes in the stream */
  72. const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
  73. MPADecodeHeader c;
  74. int vbrtag_size = 0;
  75. v = avio_rb32(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. avio_skip(s->pb, xing_offtbl[c.lsf == 1][c.nb_channels == 1]);
  84. v = avio_rb32(s->pb);
  85. if(v == MKBETAG('X', 'i', 'n', 'g') || v == MKBETAG('I', 'n', 'f', 'o')) {
  86. v = avio_rb32(s->pb);
  87. if(v & 0x1)
  88. frames = avio_rb32(s->pb);
  89. if(v & 0x2)
  90. size = avio_rb32(s->pb);
  91. }
  92. /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
  93. avio_seek(s->pb, base + 4 + 32, SEEK_SET);
  94. v = avio_rb32(s->pb);
  95. if(v == MKBETAG('V', 'B', 'R', 'I')) {
  96. /* Check tag version */
  97. if(avio_rb16(s->pb) == 1) {
  98. /* skip delay and quality */
  99. avio_skip(s->pb, 4);
  100. size = avio_rb32(s->pb);
  101. frames = avio_rb32(s->pb);
  102. }
  103. }
  104. if(!frames && !size)
  105. return -1;
  106. /* Skip the vbr tag frame */
  107. avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
  108. spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
  109. if(frames)
  110. st->duration = av_rescale_q(frames, (AVRational){spf, c.sample_rate},
  111. st->time_base);
  112. if(size && frames)
  113. st->codec->bit_rate = av_rescale(size, 8 * c.sample_rate, frames * (int64_t)spf);
  114. return 0;
  115. }
  116. static int mp3_read_header(AVFormatContext *s,
  117. AVFormatParameters *ap)
  118. {
  119. AVStream *st;
  120. int64_t off;
  121. st = av_new_stream(s, 0);
  122. if (!st)
  123. return AVERROR(ENOMEM);
  124. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  125. st->codec->codec_id = CODEC_ID_MP3;
  126. st->need_parsing = AVSTREAM_PARSE_FULL;
  127. st->start_time = 0;
  128. // lcm of all mp3 sample rates
  129. av_set_pts_info(st, 64, 1, 14112000);
  130. off = avio_tell(s->pb);
  131. if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
  132. ff_id3v1_read(s);
  133. if (mp3_parse_vbr_tags(s, st, off) < 0)
  134. avio_seek(s->pb, off, SEEK_SET);
  135. /* the parameters will be extracted from the compressed bitstream */
  136. return 0;
  137. }
  138. #define MP3_PACKET_SIZE 1024
  139. static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
  140. {
  141. int ret, size;
  142. // AVStream *st = s->streams[0];
  143. size= MP3_PACKET_SIZE;
  144. ret= av_get_packet(s->pb, pkt, size);
  145. pkt->stream_index = 0;
  146. if (ret <= 0) {
  147. if(ret<0)
  148. return ret;
  149. return AVERROR_EOF;
  150. }
  151. if (ret > ID3v1_TAG_SIZE &&
  152. memcmp(&pkt->data[ret - ID3v1_TAG_SIZE], "TAG", 3) == 0)
  153. ret -= ID3v1_TAG_SIZE;
  154. /* note: we need to modify the packet size here to handle the last
  155. packet */
  156. pkt->size = ret;
  157. return ret;
  158. }
  159. AVInputFormat ff_mp3_demuxer = {
  160. "mp3",
  161. NULL_IF_CONFIG_SMALL("MPEG audio layer 2/3"),
  162. 0,
  163. mp3_read_probe,
  164. mp3_read_header,
  165. mp3_read_packet,
  166. .flags= AVFMT_GENERIC_INDEX,
  167. .extensions = "mp2,mp3,m2a", /* XXX: use probe */
  168. };