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.

621 lines
19KB

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