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.

609 lines
18KB

  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/opt.h"
  22. #include "libavutil/avstring.h"
  23. #include "libavutil/intreadwrite.h"
  24. #include "libavutil/crc.h"
  25. #include "libavutil/dict.h"
  26. #include "libavutil/mathematics.h"
  27. #include "avformat.h"
  28. #include "internal.h"
  29. #include "avio_internal.h"
  30. #include "id3v2.h"
  31. #include "id3v1.h"
  32. #include "replaygain.h"
  33. #include "libavcodec/avcodec.h"
  34. #include "libavcodec/mpegaudiodecheader.h"
  35. #define XING_FLAG_FRAMES 0x01
  36. #define XING_FLAG_SIZE 0x02
  37. #define XING_FLAG_TOC 0x04
  38. #define XING_FLAC_QSCALE 0x08
  39. #define XING_TOC_COUNT 100
  40. #define SAME_HEADER_MASK \
  41. (0xffe00000 | (3 << 17) | (3 << 10) | (3 << 19))
  42. typedef struct {
  43. AVClass *class;
  44. int64_t filesize;
  45. int xing_toc;
  46. int start_pad;
  47. int end_pad;
  48. int usetoc;
  49. unsigned frames; /* Total number of frames in file */
  50. unsigned header_filesize; /* Total number of bytes in the stream */
  51. int is_cbr;
  52. } MP3DecContext;
  53. enum CheckRet {
  54. CHECK_WRONG_HEADER = -1,
  55. CHECK_SEEK_FAILED = -2,
  56. };
  57. static int check(AVIOContext *pb, int64_t pos, uint32_t *header);
  58. /* mp3 read */
  59. static int mp3_read_probe(AVProbeData *p)
  60. {
  61. int max_frames, first_frames = 0;
  62. int whole_used = 0;
  63. int frames, ret;
  64. int framesizes, max_framesizes;
  65. uint32_t header;
  66. const uint8_t *buf, *buf0, *buf2, *end;
  67. buf0 = p->buf;
  68. end = p->buf + p->buf_size - sizeof(uint32_t);
  69. while(buf0 < end && !*buf0)
  70. buf0++;
  71. max_frames = 0;
  72. max_framesizes = 0;
  73. buf = buf0;
  74. for(; buf < end; buf= buf2+1) {
  75. buf2 = buf;
  76. for(framesizes = frames = 0; buf2 < end; frames++) {
  77. MPADecodeHeader h;
  78. header = AV_RB32(buf2);
  79. ret = avpriv_mpegaudio_decode_header(&h, header);
  80. if (ret != 0 || end - buf2 < h.frame_size)
  81. break;
  82. buf2 += h.frame_size;
  83. framesizes += h.frame_size;
  84. }
  85. max_frames = FFMAX(max_frames, frames);
  86. max_framesizes = FFMAX(max_framesizes, framesizes);
  87. if(buf == buf0) {
  88. first_frames= frames;
  89. if (buf2 == end + sizeof(uint32_t))
  90. whole_used = 1;
  91. }
  92. }
  93. // keep this in sync with ac3 probe, both need to avoid
  94. // issues with MPEG-files!
  95. if (first_frames>=7) return AVPROBE_SCORE_EXTENSION + 1;
  96. else if(max_frames>200 && p->buf_size < 2*max_framesizes)return AVPROBE_SCORE_EXTENSION;
  97. else if(max_frames>=4 && p->buf_size < 2*max_framesizes) return AVPROBE_SCORE_EXTENSION / 2;
  98. else if(ff_id3v2_match(buf0, ID3v2_DEFAULT_MAGIC) && 2*ff_id3v2_tag_len(buf0) >= p->buf_size)
  99. return p->buf_size < PROBE_BUF_MAX ? AVPROBE_SCORE_EXTENSION / 4 : AVPROBE_SCORE_EXTENSION - 2;
  100. else if(first_frames > 1 && whole_used) return 5;
  101. else if(max_frames>=1 && p->buf_size < 10*max_framesizes) return 1;
  102. else return 0;
  103. //mpegps_mp3_unrecognized_format.mpg has max_frames=3
  104. }
  105. static void read_xing_toc(AVFormatContext *s, int64_t filesize, int64_t duration)
  106. {
  107. int i;
  108. MP3DecContext *mp3 = s->priv_data;
  109. int fast_seek = s->flags & AVFMT_FLAG_FAST_SEEK;
  110. int fill_index = (mp3->usetoc || fast_seek) && duration > 0;
  111. if (!filesize &&
  112. !(filesize = avio_size(s->pb))) {
  113. av_log(s, AV_LOG_WARNING, "Cannot determine file size, skipping TOC table.\n");
  114. fill_index = 0;
  115. }
  116. for (i = 0; i < XING_TOC_COUNT; i++) {
  117. uint8_t b = avio_r8(s->pb);
  118. if (fill_index)
  119. av_add_index_entry(s->streams[0],
  120. av_rescale(b, filesize, 256),
  121. av_rescale(i, duration, XING_TOC_COUNT),
  122. 0, 0, AVINDEX_KEYFRAME);
  123. }
  124. if (fill_index)
  125. mp3->xing_toc = 1;
  126. }
  127. static void mp3_parse_info_tag(AVFormatContext *s, AVStream *st,
  128. MPADecodeHeader *c, uint32_t spf)
  129. {
  130. #define LAST_BITS(k, n) ((k) & ((1 << (n)) - 1))
  131. #define MIDDLE_BITS(k, m, n) LAST_BITS((k) >> (m), ((n) - (m) + 1))
  132. uint16_t crc;
  133. uint32_t v;
  134. char version[10];
  135. uint32_t peak = 0;
  136. int32_t r_gain = INT32_MIN, a_gain = INT32_MIN;
  137. MP3DecContext *mp3 = s->priv_data;
  138. static const int64_t xing_offtbl[2][2] = {{32, 17}, {17,9}};
  139. uint64_t fsize = avio_size(s->pb);
  140. fsize = fsize >= avio_tell(s->pb) ? fsize - avio_tell(s->pb) : 0;
  141. /* Check for Xing / Info tag */
  142. avio_skip(s->pb, xing_offtbl[c->lsf == 1][c->nb_channels == 1]);
  143. v = avio_rb32(s->pb);
  144. mp3->is_cbr = v == MKBETAG('I', 'n', 'f', 'o');
  145. if (v != MKBETAG('X', 'i', 'n', 'g') && !mp3->is_cbr)
  146. return;
  147. v = avio_rb32(s->pb);
  148. if (v & XING_FLAG_FRAMES)
  149. mp3->frames = avio_rb32(s->pb);
  150. if (v & XING_FLAG_SIZE)
  151. mp3->header_filesize = avio_rb32(s->pb);
  152. if (fsize && mp3->header_filesize) {
  153. uint64_t min, delta;
  154. min = FFMIN(fsize, mp3->header_filesize);
  155. delta = FFMAX(fsize, mp3->header_filesize) - min;
  156. if (fsize > mp3->header_filesize && delta > min >> 4) {
  157. mp3->frames = 0;
  158. av_log(s, AV_LOG_WARNING,
  159. "invalid concatenated file detected - using bitrate for duration\n");
  160. } else if (delta > min >> 4) {
  161. av_log(s, AV_LOG_WARNING,
  162. "filesize and duration do not match (growing file?)\n");
  163. }
  164. }
  165. if (v & XING_FLAG_TOC)
  166. read_xing_toc(s, mp3->header_filesize, av_rescale_q(mp3->frames,
  167. (AVRational){spf, c->sample_rate},
  168. st->time_base));
  169. /* VBR quality */
  170. if (v & XING_FLAC_QSCALE)
  171. avio_rb32(s->pb);
  172. /* Encoder short version string */
  173. memset(version, 0, sizeof(version));
  174. avio_read(s->pb, version, 9);
  175. /* Info Tag revision + VBR method */
  176. avio_r8(s->pb);
  177. /* Lowpass filter value */
  178. avio_r8(s->pb);
  179. /* ReplayGain peak */
  180. v = avio_rb32(s->pb);
  181. peak = av_rescale(v, 100000, 1 << 23);
  182. /* Radio ReplayGain */
  183. v = avio_rb16(s->pb);
  184. if (MIDDLE_BITS(v, 13, 15) == 1) {
  185. r_gain = MIDDLE_BITS(v, 0, 8) * 10000;
  186. if (v & (1 << 9))
  187. r_gain *= -1;
  188. }
  189. /* Audiophile ReplayGain */
  190. v = avio_rb16(s->pb);
  191. if (MIDDLE_BITS(v, 13, 15) == 2) {
  192. a_gain = MIDDLE_BITS(v, 0, 8) * 10000;
  193. if (v & (1 << 9))
  194. a_gain *= -1;
  195. }
  196. /* Encoding flags + ATH Type */
  197. avio_r8(s->pb);
  198. /* if ABR {specified bitrate} else {minimal bitrate} */
  199. avio_r8(s->pb);
  200. /* Encoder delays */
  201. v= avio_rb24(s->pb);
  202. if(AV_RB32(version) == MKBETAG('L', 'A', 'M', 'E')
  203. || AV_RB32(version) == MKBETAG('L', 'a', 'v', 'f')
  204. || AV_RB32(version) == MKBETAG('L', 'a', 'v', 'c')
  205. ) {
  206. mp3->start_pad = v>>12;
  207. mp3-> end_pad = v&4095;
  208. st->start_skip_samples = mp3->start_pad + 528 + 1;
  209. if (mp3->frames) {
  210. st->first_discard_sample = -mp3->end_pad + 528 + 1 + mp3->frames * (int64_t)spf;
  211. st->last_discard_sample = mp3->frames * (int64_t)spf;
  212. }
  213. if (!st->start_time)
  214. st->start_time = av_rescale_q(st->start_skip_samples,
  215. (AVRational){1, c->sample_rate},
  216. st->time_base);
  217. av_log(s, AV_LOG_DEBUG, "pad %d %d\n", mp3->start_pad, mp3-> end_pad);
  218. }
  219. /* Misc */
  220. avio_r8(s->pb);
  221. /* MP3 gain */
  222. avio_r8(s->pb);
  223. /* Preset and surround info */
  224. avio_rb16(s->pb);
  225. /* Music length */
  226. avio_rb32(s->pb);
  227. /* Music CRC */
  228. avio_rb16(s->pb);
  229. /* Info Tag CRC */
  230. crc = ffio_get_checksum(s->pb);
  231. v = avio_rb16(s->pb);
  232. if (v == crc) {
  233. ff_replaygain_export_raw(st, r_gain, peak, a_gain, 0);
  234. av_dict_set(&st->metadata, "encoder", version, 0);
  235. }
  236. }
  237. static void mp3_parse_vbri_tag(AVFormatContext *s, AVStream *st, int64_t base)
  238. {
  239. uint32_t v;
  240. MP3DecContext *mp3 = s->priv_data;
  241. /* Check for VBRI tag (always 32 bytes after end of mpegaudio header) */
  242. avio_seek(s->pb, base + 4 + 32, SEEK_SET);
  243. v = avio_rb32(s->pb);
  244. if (v == MKBETAG('V', 'B', 'R', 'I')) {
  245. /* Check tag version */
  246. if (avio_rb16(s->pb) == 1) {
  247. /* skip delay and quality */
  248. avio_skip(s->pb, 4);
  249. mp3->header_filesize = avio_rb32(s->pb);
  250. mp3->frames = avio_rb32(s->pb);
  251. }
  252. }
  253. }
  254. /**
  255. * Try to find Xing/Info/VBRI tags and compute duration from info therein
  256. */
  257. static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
  258. {
  259. uint32_t v, spf;
  260. MPADecodeHeader c;
  261. int vbrtag_size = 0;
  262. MP3DecContext *mp3 = s->priv_data;
  263. int ret;
  264. ffio_init_checksum(s->pb, ff_crcA001_update, 0);
  265. v = avio_rb32(s->pb);
  266. ret = avpriv_mpegaudio_decode_header(&c, v);
  267. if (ret < 0)
  268. return ret;
  269. else if (ret == 0)
  270. vbrtag_size = c.frame_size;
  271. if(c.layer != 3)
  272. return -1;
  273. spf = c.lsf ? 576 : 1152; /* Samples per frame, layer 3 */
  274. mp3->frames = 0;
  275. mp3->header_filesize = 0;
  276. mp3_parse_info_tag(s, st, &c, spf);
  277. mp3_parse_vbri_tag(s, st, base);
  278. if (!mp3->frames && !mp3->header_filesize)
  279. return -1;
  280. /* Skip the vbr tag frame */
  281. avio_seek(s->pb, base + vbrtag_size, SEEK_SET);
  282. if (mp3->frames)
  283. st->duration = av_rescale_q(mp3->frames, (AVRational){spf, c.sample_rate},
  284. st->time_base);
  285. if (mp3->header_filesize && mp3->frames && !mp3->is_cbr)
  286. st->codecpar->bit_rate = av_rescale(mp3->header_filesize, 8 * c.sample_rate, mp3->frames * (int64_t)spf);
  287. return 0;
  288. }
  289. static int mp3_read_header(AVFormatContext *s)
  290. {
  291. MP3DecContext *mp3 = s->priv_data;
  292. AVStream *st;
  293. int64_t off;
  294. int ret;
  295. int i;
  296. s->metadata = s->internal->id3v2_meta;
  297. s->internal->id3v2_meta = NULL;
  298. st = avformat_new_stream(s, NULL);
  299. if (!st)
  300. return AVERROR(ENOMEM);
  301. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  302. st->codecpar->codec_id = AV_CODEC_ID_MP3;
  303. st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
  304. st->start_time = 0;
  305. // lcm of all mp3 sample rates
  306. avpriv_set_pts_info(st, 64, 1, 14112000);
  307. s->pb->maxsize = -1;
  308. off = avio_tell(s->pb);
  309. if (!av_dict_get(s->metadata, "", NULL, AV_DICT_IGNORE_SUFFIX))
  310. ff_id3v1_read(s);
  311. if(s->pb->seekable & AVIO_SEEKABLE_NORMAL)
  312. mp3->filesize = avio_size(s->pb);
  313. if (mp3_parse_vbr_tags(s, st, off) < 0)
  314. avio_seek(s->pb, off, SEEK_SET);
  315. ret = ff_replaygain_export(st, s->metadata);
  316. if (ret < 0)
  317. return ret;
  318. off = avio_tell(s->pb);
  319. for (i = 0; i < 64 * 1024; i++) {
  320. uint32_t header, header2;
  321. int frame_size;
  322. if (!(i&1023))
  323. ffio_ensure_seekback(s->pb, i + 1024 + 4);
  324. frame_size = check(s->pb, off + i, &header);
  325. if (frame_size > 0) {
  326. ret = avio_seek(s->pb, off, SEEK_SET);
  327. if (ret < 0)
  328. return ret;
  329. ffio_ensure_seekback(s->pb, i + 1024 + frame_size + 4);
  330. ret = check(s->pb, off + i + frame_size, &header2);
  331. if (ret >= 0 &&
  332. (header & SAME_HEADER_MASK) == (header2 & SAME_HEADER_MASK))
  333. {
  334. av_log(s, i > 0 ? AV_LOG_INFO : AV_LOG_VERBOSE, "Skipping %d bytes of junk at %"PRId64".\n", i, off);
  335. ret = avio_seek(s->pb, off + i, SEEK_SET);
  336. if (ret < 0)
  337. return ret;
  338. break;
  339. } else if (ret == CHECK_SEEK_FAILED) {
  340. av_log(s, AV_LOG_ERROR, "Invalid frame size (%d): Could not seek to %"PRId64".\n", frame_size, off + i + frame_size);
  341. return AVERROR(EINVAL);
  342. }
  343. } else if (frame_size == CHECK_SEEK_FAILED) {
  344. av_log(s, AV_LOG_ERROR, "Failed to read frame size: Could not seek to %"PRId64".\n", (int64_t) (i + 1024 + frame_size + 4));
  345. return AVERROR(EINVAL);
  346. }
  347. ret = avio_seek(s->pb, off, SEEK_SET);
  348. if (ret < 0)
  349. return ret;
  350. }
  351. // the seek index is relative to the end of the xing vbr headers
  352. for (i = 0; i < st->nb_index_entries; i++)
  353. st->index_entries[i].pos += avio_tell(s->pb);
  354. /* the parameters will be extracted from the compressed bitstream */
  355. return 0;
  356. }
  357. #define MP3_PACKET_SIZE 1024
  358. static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
  359. {
  360. MP3DecContext *mp3 = s->priv_data;
  361. int ret, size;
  362. int64_t pos;
  363. size= MP3_PACKET_SIZE;
  364. pos = avio_tell(s->pb);
  365. if(mp3->filesize > ID3v1_TAG_SIZE && pos < mp3->filesize)
  366. size= FFMIN(size, mp3->filesize - pos);
  367. ret= av_get_packet(s->pb, pkt, size);
  368. if (ret <= 0) {
  369. if(ret<0)
  370. return ret;
  371. return AVERROR_EOF;
  372. }
  373. pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
  374. pkt->stream_index = 0;
  375. return ret;
  376. }
  377. #define SEEK_WINDOW 4096
  378. static int check(AVIOContext *pb, int64_t pos, uint32_t *ret_header)
  379. {
  380. int64_t ret = avio_seek(pb, pos, SEEK_SET);
  381. uint8_t header_buf[4];
  382. unsigned header;
  383. MPADecodeHeader sd;
  384. if (ret < 0)
  385. return CHECK_SEEK_FAILED;
  386. ret = avio_read(pb, &header_buf[0], 4);
  387. /* We should always find four bytes for a valid mpa header. */
  388. if (ret < 4)
  389. return CHECK_SEEK_FAILED;
  390. header = AV_RB32(&header_buf[0]);
  391. if (ff_mpa_check_header(header) < 0)
  392. return CHECK_WRONG_HEADER;
  393. if (avpriv_mpegaudio_decode_header(&sd, header) == 1)
  394. return CHECK_WRONG_HEADER;
  395. if (ret_header)
  396. *ret_header = header;
  397. return sd.frame_size;
  398. }
  399. static int64_t mp3_sync(AVFormatContext *s, int64_t target_pos, int flags)
  400. {
  401. int dir = (flags&AVSEEK_FLAG_BACKWARD) ? -1 : 1;
  402. int64_t best_pos;
  403. int best_score, i, j;
  404. int64_t ret;
  405. avio_seek(s->pb, FFMAX(target_pos - SEEK_WINDOW, 0), SEEK_SET);
  406. ret = avio_seek(s->pb, target_pos, SEEK_SET);
  407. if (ret < 0)
  408. return ret;
  409. #define MIN_VALID 3
  410. best_pos = target_pos;
  411. best_score = 999;
  412. for(i=0; i<SEEK_WINDOW; i++) {
  413. int64_t pos = target_pos + (dir > 0 ? i - SEEK_WINDOW/4 : -i);
  414. int64_t candidate = -1;
  415. int score = 999;
  416. if (pos < 0)
  417. continue;
  418. for(j=0; j<MIN_VALID; j++) {
  419. ret = check(s->pb, pos, NULL);
  420. if(ret < 0) {
  421. if (ret == CHECK_WRONG_HEADER) {
  422. break;
  423. } else if (ret == CHECK_SEEK_FAILED) {
  424. av_log(s, AV_LOG_ERROR, "Could not seek to %"PRId64".\n", pos);
  425. return AVERROR(EINVAL);
  426. }
  427. }
  428. if ((target_pos - pos)*dir <= 0 && FFABS(MIN_VALID/2-j) < score) {
  429. candidate = pos;
  430. score = FFABS(MIN_VALID/2-j);
  431. }
  432. pos += ret;
  433. }
  434. if (best_score > score && j == MIN_VALID) {
  435. best_pos = candidate;
  436. best_score = score;
  437. if(score == 0)
  438. break;
  439. }
  440. }
  441. return avio_seek(s->pb, best_pos, SEEK_SET);
  442. }
  443. static int mp3_seek(AVFormatContext *s, int stream_index, int64_t timestamp,
  444. int flags)
  445. {
  446. MP3DecContext *mp3 = s->priv_data;
  447. AVIndexEntry *ie, ie1;
  448. AVStream *st = s->streams[0];
  449. int64_t best_pos;
  450. int fast_seek = s->flags & AVFMT_FLAG_FAST_SEEK;
  451. int64_t filesize = mp3->header_filesize;
  452. if (filesize <= 0) {
  453. int64_t size = avio_size(s->pb);
  454. if (size > 0 && size > s->internal->data_offset)
  455. filesize = size - s->internal->data_offset;
  456. }
  457. if (mp3->xing_toc && (mp3->usetoc || (fast_seek && !mp3->is_cbr))) {
  458. int64_t ret = av_index_search_timestamp(st, timestamp, flags);
  459. // NOTE: The MP3 TOC is not a precise lookup table. Accuracy is worse
  460. // for bigger files.
  461. av_log(s, AV_LOG_WARNING, "Using MP3 TOC to seek; may be imprecise.\n");
  462. if (ret < 0)
  463. return ret;
  464. ie = &st->index_entries[ret];
  465. } else if (fast_seek && st->duration > 0 && filesize > 0) {
  466. if (!mp3->is_cbr)
  467. av_log(s, AV_LOG_WARNING, "Using scaling to seek VBR MP3; may be imprecise.\n");
  468. ie = &ie1;
  469. timestamp = av_clip64(timestamp, 0, st->duration);
  470. ie->timestamp = timestamp;
  471. ie->pos = av_rescale(timestamp, filesize, st->duration) + s->internal->data_offset;
  472. } else {
  473. return -1; // generic index code
  474. }
  475. best_pos = mp3_sync(s, ie->pos, flags);
  476. if (best_pos < 0)
  477. return best_pos;
  478. if (mp3->is_cbr && ie == &ie1 && mp3->frames) {
  479. int frame_duration = av_rescale(st->duration, 1, mp3->frames);
  480. ie1.timestamp = frame_duration * av_rescale(best_pos - s->internal->data_offset, mp3->frames, mp3->header_filesize);
  481. }
  482. ff_update_cur_dts(s, st, ie->timestamp);
  483. return 0;
  484. }
  485. static const AVOption options[] = {
  486. { "usetoc", "use table of contents", offsetof(MP3DecContext, usetoc), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_DECODING_PARAM},
  487. { NULL },
  488. };
  489. static const AVClass demuxer_class = {
  490. .class_name = "mp3",
  491. .item_name = av_default_item_name,
  492. .option = options,
  493. .version = LIBAVUTIL_VERSION_INT,
  494. .category = AV_CLASS_CATEGORY_DEMUXER,
  495. };
  496. AVInputFormat ff_mp3_demuxer = {
  497. .name = "mp3",
  498. .long_name = NULL_IF_CONFIG_SMALL("MP2/3 (MPEG audio layer 2/3)"),
  499. .read_probe = mp3_read_probe,
  500. .read_header = mp3_read_header,
  501. .read_packet = mp3_read_packet,
  502. .read_seek = mp3_seek,
  503. .priv_data_size = sizeof(MP3DecContext),
  504. .flags = AVFMT_GENERIC_INDEX,
  505. .extensions = "mp2,mp3,m2a,mpa", /* XXX: use probe */
  506. .priv_class = &demuxer_class,
  507. };