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.

2750 lines
88KB

  1. /*
  2. * Matroska file demuxer (no muxer yet)
  3. * Copyright (c) 2003-2004 The ffmpeg Project
  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. /**
  22. * @file matroskadec.c
  23. * Matroska file demuxer
  24. * by Ronald Bultje <rbultje@ronald.bitfreak.net>
  25. * with a little help from Moritz Bunkus <moritz@bunkus.org>
  26. * Specs available on the matroska project page:
  27. * http://www.matroska.org/.
  28. */
  29. #include "avformat.h"
  30. /* For codec_get_id(). */
  31. #include "riff.h"
  32. #include "intfloat_readwrite.h"
  33. #include "matroska.h"
  34. typedef struct Track {
  35. MatroskaTrackType type;
  36. /* Unique track number and track ID. stream_index is the index that
  37. * the calling app uses for this track. */
  38. uint32_t num;
  39. uint32_t uid;
  40. int stream_index;
  41. char *name;
  42. char language[4];
  43. char *codec_id;
  44. char *codec_name;
  45. unsigned char *codec_priv;
  46. int codec_priv_size;
  47. uint64_t default_duration;
  48. MatroskaTrackFlags flags;
  49. } MatroskaTrack;
  50. typedef struct MatroskaVideoTrack {
  51. MatroskaTrack track;
  52. int pixel_width;
  53. int pixel_height;
  54. int display_width;
  55. int display_height;
  56. uint32_t fourcc;
  57. MatroskaAspectRatioMode ar_mode;
  58. MatroskaEyeMode eye_mode;
  59. //..
  60. } MatroskaVideoTrack;
  61. typedef struct MatroskaAudioTrack {
  62. MatroskaTrack track;
  63. int channels;
  64. int bitdepth;
  65. int internal_samplerate;
  66. int samplerate;
  67. int block_align;
  68. /* real audio header */
  69. int coded_framesize;
  70. int sub_packet_h;
  71. int frame_size;
  72. int sub_packet_size;
  73. int sub_packet_cnt;
  74. int pkt_cnt;
  75. uint8_t *buf;
  76. //..
  77. } MatroskaAudioTrack;
  78. typedef struct MatroskaSubtitleTrack {
  79. MatroskaTrack track;
  80. int ass;
  81. //..
  82. } MatroskaSubtitleTrack;
  83. #define MAX_TRACK_SIZE (FFMAX(FFMAX(sizeof(MatroskaVideoTrack), \
  84. sizeof(MatroskaAudioTrack)), \
  85. sizeof(MatroskaSubtitleTrack)))
  86. typedef struct MatroskaLevel {
  87. uint64_t start;
  88. uint64_t length;
  89. } MatroskaLevel;
  90. typedef struct MatroskaDemuxIndex {
  91. uint64_t pos; /* of the corresponding *cluster*! */
  92. uint16_t track; /* reference to 'num' */
  93. uint64_t time; /* in nanoseconds */
  94. } MatroskaDemuxIndex;
  95. typedef struct MatroskaDemuxContext {
  96. AVFormatContext *ctx;
  97. /* ebml stuff */
  98. int num_levels;
  99. MatroskaLevel levels[EBML_MAX_DEPTH];
  100. int level_up;
  101. /* matroska stuff */
  102. char *writing_app;
  103. char *muxing_app;
  104. int64_t created;
  105. /* timescale in the file */
  106. int64_t time_scale;
  107. /* num_streams is the number of streams that av_new_stream() was called
  108. * for ( = that are available to the calling program). */
  109. int num_tracks;
  110. int num_streams;
  111. MatroskaTrack *tracks[MAX_STREAMS];
  112. /* cache for ID peeking */
  113. uint32_t peek_id;
  114. /* byte position of the segment inside the stream */
  115. offset_t segment_start;
  116. /* The packet queue. */
  117. AVPacket **packets;
  118. int num_packets;
  119. /* have we already parse metadata/cues/clusters? */
  120. int metadata_parsed;
  121. int index_parsed;
  122. int done;
  123. /* The index for seeking. */
  124. int num_indexes;
  125. MatroskaDemuxIndex *index;
  126. /* What to skip before effectively reading a packet. */
  127. int skip_to_keyframe;
  128. AVStream *skip_to_stream;
  129. } MatroskaDemuxContext;
  130. /*
  131. * The first few functions handle EBML file parsing. The rest
  132. * is the document interpretation. Matroska really just is a
  133. * EBML file.
  134. */
  135. /*
  136. * Return: the amount of levels in the hierarchy that the
  137. * current element lies higher than the previous one.
  138. * The opposite isn't done - that's auto-done using master
  139. * element reading.
  140. */
  141. static int
  142. ebml_read_element_level_up (MatroskaDemuxContext *matroska)
  143. {
  144. ByteIOContext *pb = &matroska->ctx->pb;
  145. offset_t pos = url_ftell(pb);
  146. int num = 0;
  147. while (matroska->num_levels > 0) {
  148. MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1];
  149. if (pos >= level->start + level->length) {
  150. matroska->num_levels--;
  151. num++;
  152. } else {
  153. break;
  154. }
  155. }
  156. return num;
  157. }
  158. /*
  159. * Read: an "EBML number", which is defined as a variable-length
  160. * array of bytes. The first byte indicates the length by giving a
  161. * number of 0-bits followed by a one. The position of the first
  162. * "one" bit inside the first byte indicates the length of this
  163. * number.
  164. * Returns: num. of bytes read. < 0 on error.
  165. */
  166. static int
  167. ebml_read_num (MatroskaDemuxContext *matroska,
  168. int max_size,
  169. uint64_t *number)
  170. {
  171. ByteIOContext *pb = &matroska->ctx->pb;
  172. int len_mask = 0x80, read = 1, n = 1;
  173. int64_t total = 0;
  174. /* the first byte tells us the length in bytes - get_byte() can normally
  175. * return 0, but since that's not a valid first ebmlID byte, we can
  176. * use it safely here to catch EOS. */
  177. if (!(total = get_byte(pb))) {
  178. /* we might encounter EOS here */
  179. if (!url_feof(pb)) {
  180. offset_t pos = url_ftell(pb);
  181. av_log(matroska->ctx, AV_LOG_ERROR,
  182. "Read error at pos. %"PRIu64" (0x%"PRIx64")\n",
  183. pos, pos);
  184. }
  185. return AVERROR(EIO); /* EOS or actual I/O error */
  186. }
  187. /* get the length of the EBML number */
  188. while (read <= max_size && !(total & len_mask)) {
  189. read++;
  190. len_mask >>= 1;
  191. }
  192. if (read > max_size) {
  193. offset_t pos = url_ftell(pb) - 1;
  194. av_log(matroska->ctx, AV_LOG_ERROR,
  195. "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n",
  196. (uint8_t) total, pos, pos);
  197. return AVERROR_INVALIDDATA;
  198. }
  199. /* read out length */
  200. total &= ~len_mask;
  201. while (n++ < read)
  202. total = (total << 8) | get_byte(pb);
  203. *number = total;
  204. return read;
  205. }
  206. /*
  207. * Read: the element content data ID.
  208. * Return: the number of bytes read or < 0 on error.
  209. */
  210. static int
  211. ebml_read_element_id (MatroskaDemuxContext *matroska,
  212. uint32_t *id,
  213. int *level_up)
  214. {
  215. int read;
  216. uint64_t total;
  217. /* if we re-call this, use our cached ID */
  218. if (matroska->peek_id != 0) {
  219. if (level_up)
  220. *level_up = 0;
  221. *id = matroska->peek_id;
  222. return 0;
  223. }
  224. /* read out the "EBML number", include tag in ID */
  225. if ((read = ebml_read_num(matroska, 4, &total)) < 0)
  226. return read;
  227. *id = matroska->peek_id = total | (1 << (read * 7));
  228. /* level tracking */
  229. if (level_up)
  230. *level_up = ebml_read_element_level_up(matroska);
  231. return read;
  232. }
  233. /*
  234. * Read: element content length.
  235. * Return: the number of bytes read or < 0 on error.
  236. */
  237. static int
  238. ebml_read_element_length (MatroskaDemuxContext *matroska,
  239. uint64_t *length)
  240. {
  241. /* clear cache since we're now beyond that data point */
  242. matroska->peek_id = 0;
  243. /* read out the "EBML number", include tag in ID */
  244. return ebml_read_num(matroska, 8, length);
  245. }
  246. /*
  247. * Return: the ID of the next element, or 0 on error.
  248. * Level_up contains the amount of levels that this
  249. * next element lies higher than the previous one.
  250. */
  251. static uint32_t
  252. ebml_peek_id (MatroskaDemuxContext *matroska,
  253. int *level_up)
  254. {
  255. uint32_t id;
  256. if (ebml_read_element_id(matroska, &id, level_up) < 0)
  257. return 0;
  258. return id;
  259. }
  260. /*
  261. * Seek to a given offset.
  262. * 0 is success, -1 is failure.
  263. */
  264. static int
  265. ebml_read_seek (MatroskaDemuxContext *matroska,
  266. offset_t offset)
  267. {
  268. ByteIOContext *pb = &matroska->ctx->pb;
  269. /* clear ID cache, if any */
  270. matroska->peek_id = 0;
  271. return (url_fseek(pb, offset, SEEK_SET) == offset) ? 0 : -1;
  272. }
  273. /*
  274. * Skip the next element.
  275. * 0 is success, -1 is failure.
  276. */
  277. static int
  278. ebml_read_skip (MatroskaDemuxContext *matroska)
  279. {
  280. ByteIOContext *pb = &matroska->ctx->pb;
  281. uint32_t id;
  282. uint64_t length;
  283. int res;
  284. if ((res = ebml_read_element_id(matroska, &id, NULL)) < 0 ||
  285. (res = ebml_read_element_length(matroska, &length)) < 0)
  286. return res;
  287. url_fskip(pb, length);
  288. return 0;
  289. }
  290. /*
  291. * Read the next element as an unsigned int.
  292. * 0 is success, < 0 is failure.
  293. */
  294. static int
  295. ebml_read_uint (MatroskaDemuxContext *matroska,
  296. uint32_t *id,
  297. uint64_t *num)
  298. {
  299. ByteIOContext *pb = &matroska->ctx->pb;
  300. int n = 0, size, res;
  301. uint64_t rlength;
  302. if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
  303. (res = ebml_read_element_length(matroska, &rlength)) < 0)
  304. return res;
  305. size = rlength;
  306. if (size < 1 || size > 8) {
  307. offset_t pos = url_ftell(pb);
  308. av_log(matroska->ctx, AV_LOG_ERROR,
  309. "Invalid uint element size %d at position %"PRId64" (0x%"PRIx64")\n",
  310. size, pos, pos);
  311. return AVERROR_INVALIDDATA;
  312. }
  313. /* big-endian ordening; build up number */
  314. *num = 0;
  315. while (n++ < size)
  316. *num = (*num << 8) | get_byte(pb);
  317. return 0;
  318. }
  319. /*
  320. * Read the next element as a signed int.
  321. * 0 is success, < 0 is failure.
  322. */
  323. static int
  324. ebml_read_sint (MatroskaDemuxContext *matroska,
  325. uint32_t *id,
  326. int64_t *num)
  327. {
  328. ByteIOContext *pb = &matroska->ctx->pb;
  329. int size, n = 1, negative = 0, res;
  330. uint64_t rlength;
  331. if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
  332. (res = ebml_read_element_length(matroska, &rlength)) < 0)
  333. return res;
  334. size = rlength;
  335. if (size < 1 || size > 8) {
  336. offset_t pos = url_ftell(pb);
  337. av_log(matroska->ctx, AV_LOG_ERROR,
  338. "Invalid sint element size %d at position %"PRId64" (0x%"PRIx64")\n",
  339. size, pos, pos);
  340. return AVERROR_INVALIDDATA;
  341. }
  342. if ((*num = get_byte(pb)) & 0x80) {
  343. negative = 1;
  344. *num &= ~0x80;
  345. }
  346. while (n++ < size)
  347. *num = (*num << 8) | get_byte(pb);
  348. /* make signed */
  349. if (negative)
  350. *num = *num - (1LL << ((8 * size) - 1));
  351. return 0;
  352. }
  353. /*
  354. * Read the next element as a float.
  355. * 0 is success, < 0 is failure.
  356. */
  357. static int
  358. ebml_read_float (MatroskaDemuxContext *matroska,
  359. uint32_t *id,
  360. double *num)
  361. {
  362. ByteIOContext *pb = &matroska->ctx->pb;
  363. int size, res;
  364. uint64_t rlength;
  365. if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
  366. (res = ebml_read_element_length(matroska, &rlength)) < 0)
  367. return res;
  368. size = rlength;
  369. if (size == 4) {
  370. *num= av_int2flt(get_be32(pb));
  371. } else if(size==8){
  372. *num= av_int2dbl(get_be64(pb));
  373. } else{
  374. offset_t pos = url_ftell(pb);
  375. av_log(matroska->ctx, AV_LOG_ERROR,
  376. "Invalid float element size %d at position %"PRIu64" (0x%"PRIx64")\n",
  377. size, pos, pos);
  378. return AVERROR_INVALIDDATA;
  379. }
  380. return 0;
  381. }
  382. /*
  383. * Read the next element as an ASCII string.
  384. * 0 is success, < 0 is failure.
  385. */
  386. static int
  387. ebml_read_ascii (MatroskaDemuxContext *matroska,
  388. uint32_t *id,
  389. char **str)
  390. {
  391. ByteIOContext *pb = &matroska->ctx->pb;
  392. int size, res;
  393. uint64_t rlength;
  394. if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
  395. (res = ebml_read_element_length(matroska, &rlength)) < 0)
  396. return res;
  397. size = rlength;
  398. /* ebml strings are usually not 0-terminated, so we allocate one
  399. * byte more, read the string and NULL-terminate it ourselves. */
  400. if (size < 0 || !(*str = av_malloc(size + 1))) {
  401. av_log(matroska->ctx, AV_LOG_ERROR, "Memory allocation failed\n");
  402. return AVERROR(ENOMEM);
  403. }
  404. if (get_buffer(pb, (uint8_t *) *str, size) != size) {
  405. offset_t pos = url_ftell(pb);
  406. av_log(matroska->ctx, AV_LOG_ERROR,
  407. "Read error at pos. %"PRIu64" (0x%"PRIx64")\n", pos, pos);
  408. return AVERROR(EIO);
  409. }
  410. (*str)[size] = '\0';
  411. return 0;
  412. }
  413. /*
  414. * Read the next element as a UTF-8 string.
  415. * 0 is success, < 0 is failure.
  416. */
  417. static int
  418. ebml_read_utf8 (MatroskaDemuxContext *matroska,
  419. uint32_t *id,
  420. char **str)
  421. {
  422. return ebml_read_ascii(matroska, id, str);
  423. }
  424. /*
  425. * Read the next element as a date (nanoseconds since 1/1/2000).
  426. * 0 is success, < 0 is failure.
  427. */
  428. static int
  429. ebml_read_date (MatroskaDemuxContext *matroska,
  430. uint32_t *id,
  431. int64_t *date)
  432. {
  433. return ebml_read_sint(matroska, id, date);
  434. }
  435. /*
  436. * Read the next element, but only the header. The contents
  437. * are supposed to be sub-elements which can be read separately.
  438. * 0 is success, < 0 is failure.
  439. */
  440. static int
  441. ebml_read_master (MatroskaDemuxContext *matroska,
  442. uint32_t *id)
  443. {
  444. ByteIOContext *pb = &matroska->ctx->pb;
  445. uint64_t length;
  446. MatroskaLevel *level;
  447. int res;
  448. if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
  449. (res = ebml_read_element_length(matroska, &length)) < 0)
  450. return res;
  451. /* protect... (Heaven forbids that the '>' is true) */
  452. if (matroska->num_levels >= EBML_MAX_DEPTH) {
  453. av_log(matroska->ctx, AV_LOG_ERROR,
  454. "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH);
  455. return AVERROR(ENOSYS);
  456. }
  457. /* remember level */
  458. level = &matroska->levels[matroska->num_levels++];
  459. level->start = url_ftell(pb);
  460. level->length = length;
  461. return 0;
  462. }
  463. /*
  464. * Read the next element as binary data.
  465. * 0 is success, < 0 is failure.
  466. */
  467. static int
  468. ebml_read_binary (MatroskaDemuxContext *matroska,
  469. uint32_t *id,
  470. uint8_t **binary,
  471. int *size)
  472. {
  473. ByteIOContext *pb = &matroska->ctx->pb;
  474. uint64_t rlength;
  475. int res;
  476. if ((res = ebml_read_element_id(matroska, id, NULL)) < 0 ||
  477. (res = ebml_read_element_length(matroska, &rlength)) < 0)
  478. return res;
  479. *size = rlength;
  480. if (!(*binary = av_malloc(*size))) {
  481. av_log(matroska->ctx, AV_LOG_ERROR,
  482. "Memory allocation error\n");
  483. return AVERROR(ENOMEM);
  484. }
  485. if (get_buffer(pb, *binary, *size) != *size) {
  486. offset_t pos = url_ftell(pb);
  487. av_log(matroska->ctx, AV_LOG_ERROR,
  488. "Read error at pos. %"PRIu64" (0x%"PRIx64")\n", pos, pos);
  489. return AVERROR(EIO);
  490. }
  491. return 0;
  492. }
  493. /*
  494. * Read signed/unsigned "EBML" numbers.
  495. * Return: number of bytes processed, < 0 on error.
  496. * XXX: use ebml_read_num().
  497. */
  498. static int
  499. matroska_ebmlnum_uint (uint8_t *data,
  500. uint32_t size,
  501. uint64_t *num)
  502. {
  503. int len_mask = 0x80, read = 1, n = 1, num_ffs = 0;
  504. uint64_t total;
  505. if (size <= 0)
  506. return AVERROR_INVALIDDATA;
  507. total = data[0];
  508. while (read <= 8 && !(total & len_mask)) {
  509. read++;
  510. len_mask >>= 1;
  511. }
  512. if (read > 8)
  513. return AVERROR_INVALIDDATA;
  514. if ((total &= (len_mask - 1)) == len_mask - 1)
  515. num_ffs++;
  516. if (size < read)
  517. return AVERROR_INVALIDDATA;
  518. while (n < read) {
  519. if (data[n] == 0xff)
  520. num_ffs++;
  521. total = (total << 8) | data[n];
  522. n++;
  523. }
  524. if (read == num_ffs)
  525. *num = (uint64_t)-1;
  526. else
  527. *num = total;
  528. return read;
  529. }
  530. /*
  531. * Same as above, but signed.
  532. */
  533. static int
  534. matroska_ebmlnum_sint (uint8_t *data,
  535. uint32_t size,
  536. int64_t *num)
  537. {
  538. uint64_t unum;
  539. int res;
  540. /* read as unsigned number first */
  541. if ((res = matroska_ebmlnum_uint(data, size, &unum)) < 0)
  542. return res;
  543. /* make signed (weird way) */
  544. if (unum == (uint64_t)-1)
  545. *num = INT64_MAX;
  546. else
  547. *num = unum - ((1LL << ((7 * res) - 1)) - 1);
  548. return res;
  549. }
  550. /*
  551. * Read an EBML header.
  552. * 0 is success, < 0 is failure.
  553. */
  554. static int
  555. ebml_read_header (MatroskaDemuxContext *matroska,
  556. char **doctype,
  557. int *version)
  558. {
  559. uint32_t id;
  560. int level_up, res = 0;
  561. /* default init */
  562. if (doctype)
  563. *doctype = NULL;
  564. if (version)
  565. *version = 1;
  566. if (!(id = ebml_peek_id(matroska, &level_up)) ||
  567. level_up != 0 || id != EBML_ID_HEADER) {
  568. av_log(matroska->ctx, AV_LOG_ERROR,
  569. "This is not an EBML file (id=0x%x/0x%x)\n", id, EBML_ID_HEADER);
  570. return AVERROR_INVALIDDATA;
  571. }
  572. if ((res = ebml_read_master(matroska, &id)) < 0)
  573. return res;
  574. while (res == 0) {
  575. if (!(id = ebml_peek_id(matroska, &level_up)))
  576. return AVERROR(EIO);
  577. /* end-of-header */
  578. if (level_up)
  579. break;
  580. switch (id) {
  581. /* is our read version uptodate? */
  582. case EBML_ID_EBMLREADVERSION: {
  583. uint64_t num;
  584. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  585. return res;
  586. if (num > EBML_VERSION) {
  587. av_log(matroska->ctx, AV_LOG_ERROR,
  588. "EBML version %"PRIu64" (> %d) is not supported\n",
  589. num, EBML_VERSION);
  590. return AVERROR_INVALIDDATA;
  591. }
  592. break;
  593. }
  594. /* we only handle 8 byte lengths at max */
  595. case EBML_ID_EBMLMAXSIZELENGTH: {
  596. uint64_t num;
  597. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  598. return res;
  599. if (num > sizeof(uint64_t)) {
  600. av_log(matroska->ctx, AV_LOG_ERROR,
  601. "Integers of size %"PRIu64" (> %zd) not supported\n",
  602. num, sizeof(uint64_t));
  603. return AVERROR_INVALIDDATA;
  604. }
  605. break;
  606. }
  607. /* we handle 4 byte IDs at max */
  608. case EBML_ID_EBMLMAXIDLENGTH: {
  609. uint64_t num;
  610. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  611. return res;
  612. if (num > sizeof(uint32_t)) {
  613. av_log(matroska->ctx, AV_LOG_ERROR,
  614. "IDs of size %"PRIu64" (> %zu) not supported\n",
  615. num, sizeof(uint32_t));
  616. return AVERROR_INVALIDDATA;
  617. }
  618. break;
  619. }
  620. case EBML_ID_DOCTYPE: {
  621. char *text;
  622. if ((res = ebml_read_ascii(matroska, &id, &text)) < 0)
  623. return res;
  624. if (doctype) {
  625. if (*doctype)
  626. av_free(*doctype);
  627. *doctype = text;
  628. } else
  629. av_free(text);
  630. break;
  631. }
  632. case EBML_ID_DOCTYPEREADVERSION: {
  633. uint64_t num;
  634. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  635. return res;
  636. if (version)
  637. *version = num;
  638. break;
  639. }
  640. default:
  641. av_log(matroska->ctx, AV_LOG_INFO,
  642. "Unknown data type 0x%x in EBML header", id);
  643. /* pass-through */
  644. case EBML_ID_VOID:
  645. /* we ignore these two, as they don't tell us anything we
  646. * care about */
  647. case EBML_ID_EBMLVERSION:
  648. case EBML_ID_DOCTYPEVERSION:
  649. res = ebml_read_skip (matroska);
  650. break;
  651. }
  652. }
  653. return 0;
  654. }
  655. static int
  656. matroska_find_track_by_num (MatroskaDemuxContext *matroska,
  657. int num)
  658. {
  659. int i;
  660. for (i = 0; i < matroska->num_tracks; i++)
  661. if (matroska->tracks[i]->num == num)
  662. return i;
  663. return -1;
  664. }
  665. /*
  666. * Put one packet in an application-supplied AVPacket struct.
  667. * Returns 0 on success or -1 on failure.
  668. */
  669. static int
  670. matroska_deliver_packet (MatroskaDemuxContext *matroska,
  671. AVPacket *pkt)
  672. {
  673. if (matroska->num_packets > 0) {
  674. memcpy(pkt, matroska->packets[0], sizeof(AVPacket));
  675. av_free(matroska->packets[0]);
  676. if (matroska->num_packets > 1) {
  677. memmove(&matroska->packets[0], &matroska->packets[1],
  678. (matroska->num_packets - 1) * sizeof(AVPacket *));
  679. matroska->packets =
  680. av_realloc(matroska->packets, (matroska->num_packets - 1) *
  681. sizeof(AVPacket *));
  682. } else {
  683. av_freep(&matroska->packets);
  684. }
  685. matroska->num_packets--;
  686. return 0;
  687. }
  688. return -1;
  689. }
  690. /*
  691. * Put a packet into our internal queue. Will be delivered to the
  692. * user/application during the next get_packet() call.
  693. */
  694. static void
  695. matroska_queue_packet (MatroskaDemuxContext *matroska,
  696. AVPacket *pkt)
  697. {
  698. matroska->packets =
  699. av_realloc(matroska->packets, (matroska->num_packets + 1) *
  700. sizeof(AVPacket *));
  701. matroska->packets[matroska->num_packets] = pkt;
  702. matroska->num_packets++;
  703. }
  704. /*
  705. * Autodetecting...
  706. */
  707. static int
  708. matroska_probe (AVProbeData *p)
  709. {
  710. uint64_t total = 0;
  711. int len_mask = 0x80, size = 1, n = 1;
  712. uint8_t probe_data[] = { 'm', 'a', 't', 'r', 'o', 's', 'k', 'a' };
  713. /* ebml header? */
  714. if (AV_RB32(p->buf) != EBML_ID_HEADER)
  715. return 0;
  716. /* length of header */
  717. total = p->buf[4];
  718. while (size <= 8 && !(total & len_mask)) {
  719. size++;
  720. len_mask >>= 1;
  721. }
  722. if (size > 8)
  723. return 0;
  724. total &= (len_mask - 1);
  725. while (n < size)
  726. total = (total << 8) | p->buf[4 + n++];
  727. /* does the probe data contain the whole header? */
  728. if (p->buf_size < 4 + size + total)
  729. return 0;
  730. /* the header must contain the document type 'matroska'. For now,
  731. * we don't parse the whole header but simply check for the
  732. * availability of that array of characters inside the header.
  733. * Not fully fool-proof, but good enough. */
  734. for (n = 4 + size; n <= 4 + size + total - sizeof(probe_data); n++)
  735. if (!memcmp (&p->buf[n], probe_data, sizeof(probe_data)))
  736. return AVPROBE_SCORE_MAX;
  737. return 0;
  738. }
  739. /*
  740. * From here on, it's all XML-style DTD stuff... Needs no comments.
  741. */
  742. static int
  743. matroska_parse_info (MatroskaDemuxContext *matroska)
  744. {
  745. int res = 0;
  746. uint32_t id;
  747. av_log(matroska->ctx, AV_LOG_DEBUG, "Parsing info...\n");
  748. while (res == 0) {
  749. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  750. res = AVERROR(EIO);
  751. break;
  752. } else if (matroska->level_up) {
  753. matroska->level_up--;
  754. break;
  755. }
  756. switch (id) {
  757. /* cluster timecode */
  758. case MATROSKA_ID_TIMECODESCALE: {
  759. uint64_t num;
  760. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  761. break;
  762. matroska->time_scale = num;
  763. break;
  764. }
  765. case MATROSKA_ID_DURATION: {
  766. double num;
  767. if ((res = ebml_read_float(matroska, &id, &num)) < 0)
  768. break;
  769. matroska->ctx->duration = num * matroska->time_scale * 1000 / AV_TIME_BASE;
  770. break;
  771. }
  772. case MATROSKA_ID_TITLE: {
  773. char *text;
  774. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  775. break;
  776. strncpy(matroska->ctx->title, text,
  777. sizeof(matroska->ctx->title)-1);
  778. av_free(text);
  779. break;
  780. }
  781. case MATROSKA_ID_WRITINGAPP: {
  782. char *text;
  783. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  784. break;
  785. matroska->writing_app = text;
  786. break;
  787. }
  788. case MATROSKA_ID_MUXINGAPP: {
  789. char *text;
  790. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  791. break;
  792. matroska->muxing_app = text;
  793. break;
  794. }
  795. case MATROSKA_ID_DATEUTC: {
  796. int64_t time;
  797. if ((res = ebml_read_date(matroska, &id, &time)) < 0)
  798. break;
  799. matroska->created = time;
  800. break;
  801. }
  802. default:
  803. av_log(matroska->ctx, AV_LOG_INFO,
  804. "Unknown entry 0x%x in info header\n", id);
  805. /* fall-through */
  806. case EBML_ID_VOID:
  807. res = ebml_read_skip(matroska);
  808. break;
  809. }
  810. if (matroska->level_up) {
  811. matroska->level_up--;
  812. break;
  813. }
  814. }
  815. return res;
  816. }
  817. static int
  818. matroska_add_stream (MatroskaDemuxContext *matroska)
  819. {
  820. int res = 0;
  821. uint32_t id;
  822. MatroskaTrack *track;
  823. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing track, adding stream..,\n");
  824. /* Allocate a generic track. As soon as we know its type we'll realloc. */
  825. track = av_mallocz(MAX_TRACK_SIZE);
  826. matroska->num_tracks++;
  827. strcpy(track->language, "eng");
  828. /* start with the master */
  829. if ((res = ebml_read_master(matroska, &id)) < 0)
  830. return res;
  831. /* try reading the trackentry headers */
  832. while (res == 0) {
  833. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  834. res = AVERROR(EIO);
  835. break;
  836. } else if (matroska->level_up > 0) {
  837. matroska->level_up--;
  838. break;
  839. }
  840. switch (id) {
  841. /* track number (unique stream ID) */
  842. case MATROSKA_ID_TRACKNUMBER: {
  843. uint64_t num;
  844. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  845. break;
  846. track->num = num;
  847. break;
  848. }
  849. /* track UID (unique identifier) */
  850. case MATROSKA_ID_TRACKUID: {
  851. uint64_t num;
  852. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  853. break;
  854. track->uid = num;
  855. break;
  856. }
  857. /* track type (video, audio, combined, subtitle, etc.) */
  858. case MATROSKA_ID_TRACKTYPE: {
  859. uint64_t num;
  860. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  861. break;
  862. if (track->type && track->type != num) {
  863. av_log(matroska->ctx, AV_LOG_INFO,
  864. "More than one tracktype in an entry - skip\n");
  865. break;
  866. }
  867. track->type = num;
  868. switch (track->type) {
  869. case MATROSKA_TRACK_TYPE_VIDEO:
  870. case MATROSKA_TRACK_TYPE_AUDIO:
  871. case MATROSKA_TRACK_TYPE_SUBTITLE:
  872. break;
  873. case MATROSKA_TRACK_TYPE_COMPLEX:
  874. case MATROSKA_TRACK_TYPE_LOGO:
  875. case MATROSKA_TRACK_TYPE_CONTROL:
  876. default:
  877. av_log(matroska->ctx, AV_LOG_INFO,
  878. "Unknown or unsupported track type 0x%x\n",
  879. track->type);
  880. track->type = 0;
  881. break;
  882. }
  883. matroska->tracks[matroska->num_tracks - 1] = track;
  884. break;
  885. }
  886. /* tracktype specific stuff for video */
  887. case MATROSKA_ID_TRACKVIDEO: {
  888. MatroskaVideoTrack *videotrack;
  889. if (!track->type)
  890. track->type = MATROSKA_TRACK_TYPE_VIDEO;
  891. if (track->type != MATROSKA_TRACK_TYPE_VIDEO) {
  892. av_log(matroska->ctx, AV_LOG_INFO,
  893. "video data in non-video track - ignoring\n");
  894. res = AVERROR_INVALIDDATA;
  895. break;
  896. } else if ((res = ebml_read_master(matroska, &id)) < 0)
  897. break;
  898. videotrack = (MatroskaVideoTrack *)track;
  899. while (res == 0) {
  900. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  901. res = AVERROR(EIO);
  902. break;
  903. } else if (matroska->level_up > 0) {
  904. matroska->level_up--;
  905. break;
  906. }
  907. switch (id) {
  908. /* fixme, this should be one-up, but I get it here */
  909. case MATROSKA_ID_TRACKDEFAULTDURATION: {
  910. uint64_t num;
  911. if ((res = ebml_read_uint (matroska, &id,
  912. &num)) < 0)
  913. break;
  914. track->default_duration = num;
  915. break;
  916. }
  917. /* video framerate */
  918. case MATROSKA_ID_VIDEOFRAMERATE: {
  919. double num;
  920. if ((res = ebml_read_float(matroska, &id,
  921. &num)) < 0)
  922. break;
  923. if (!track->default_duration)
  924. track->default_duration = 1000000000/num;
  925. break;
  926. }
  927. /* width of the size to display the video at */
  928. case MATROSKA_ID_VIDEODISPLAYWIDTH: {
  929. uint64_t num;
  930. if ((res = ebml_read_uint(matroska, &id,
  931. &num)) < 0)
  932. break;
  933. videotrack->display_width = num;
  934. break;
  935. }
  936. /* height of the size to display the video at */
  937. case MATROSKA_ID_VIDEODISPLAYHEIGHT: {
  938. uint64_t num;
  939. if ((res = ebml_read_uint(matroska, &id,
  940. &num)) < 0)
  941. break;
  942. videotrack->display_height = num;
  943. break;
  944. }
  945. /* width of the video in the file */
  946. case MATROSKA_ID_VIDEOPIXELWIDTH: {
  947. uint64_t num;
  948. if ((res = ebml_read_uint(matroska, &id,
  949. &num)) < 0)
  950. break;
  951. videotrack->pixel_width = num;
  952. break;
  953. }
  954. /* height of the video in the file */
  955. case MATROSKA_ID_VIDEOPIXELHEIGHT: {
  956. uint64_t num;
  957. if ((res = ebml_read_uint(matroska, &id,
  958. &num)) < 0)
  959. break;
  960. videotrack->pixel_height = num;
  961. break;
  962. }
  963. /* whether the video is interlaced */
  964. case MATROSKA_ID_VIDEOFLAGINTERLACED: {
  965. uint64_t num;
  966. if ((res = ebml_read_uint(matroska, &id,
  967. &num)) < 0)
  968. break;
  969. if (num)
  970. track->flags |=
  971. MATROSKA_VIDEOTRACK_INTERLACED;
  972. else
  973. track->flags &=
  974. ~MATROSKA_VIDEOTRACK_INTERLACED;
  975. break;
  976. }
  977. /* stereo mode (whether the video has two streams,
  978. * where one is for the left eye and the other for
  979. * the right eye, which creates a 3D-like
  980. * effect) */
  981. case MATROSKA_ID_VIDEOSTEREOMODE: {
  982. uint64_t num;
  983. if ((res = ebml_read_uint(matroska, &id,
  984. &num)) < 0)
  985. break;
  986. if (num != MATROSKA_EYE_MODE_MONO &&
  987. num != MATROSKA_EYE_MODE_LEFT &&
  988. num != MATROSKA_EYE_MODE_RIGHT &&
  989. num != MATROSKA_EYE_MODE_BOTH) {
  990. av_log(matroska->ctx, AV_LOG_INFO,
  991. "Ignoring unknown eye mode 0x%x\n",
  992. (uint32_t) num);
  993. break;
  994. }
  995. videotrack->eye_mode = num;
  996. break;
  997. }
  998. /* aspect ratio behaviour */
  999. case MATROSKA_ID_VIDEOASPECTRATIO: {
  1000. uint64_t num;
  1001. if ((res = ebml_read_uint(matroska, &id,
  1002. &num)) < 0)
  1003. break;
  1004. if (num != MATROSKA_ASPECT_RATIO_MODE_FREE &&
  1005. num != MATROSKA_ASPECT_RATIO_MODE_KEEP &&
  1006. num != MATROSKA_ASPECT_RATIO_MODE_FIXED) {
  1007. av_log(matroska->ctx, AV_LOG_INFO,
  1008. "Ignoring unknown aspect ratio 0x%x\n",
  1009. (uint32_t) num);
  1010. break;
  1011. }
  1012. videotrack->ar_mode = num;
  1013. break;
  1014. }
  1015. /* colourspace (only matters for raw video)
  1016. * fourcc */
  1017. case MATROSKA_ID_VIDEOCOLOURSPACE: {
  1018. uint64_t num;
  1019. if ((res = ebml_read_uint(matroska, &id,
  1020. &num)) < 0)
  1021. break;
  1022. videotrack->fourcc = num;
  1023. break;
  1024. }
  1025. default:
  1026. av_log(matroska->ctx, AV_LOG_INFO,
  1027. "Unknown video track header entry "
  1028. "0x%x - ignoring\n", id);
  1029. /* pass-through */
  1030. case EBML_ID_VOID:
  1031. res = ebml_read_skip(matroska);
  1032. break;
  1033. }
  1034. if (matroska->level_up) {
  1035. matroska->level_up--;
  1036. break;
  1037. }
  1038. }
  1039. break;
  1040. }
  1041. /* tracktype specific stuff for audio */
  1042. case MATROSKA_ID_TRACKAUDIO: {
  1043. MatroskaAudioTrack *audiotrack;
  1044. if (!track->type)
  1045. track->type = MATROSKA_TRACK_TYPE_AUDIO;
  1046. if (track->type != MATROSKA_TRACK_TYPE_AUDIO) {
  1047. av_log(matroska->ctx, AV_LOG_INFO,
  1048. "audio data in non-audio track - ignoring\n");
  1049. res = AVERROR_INVALIDDATA;
  1050. break;
  1051. } else if ((res = ebml_read_master(matroska, &id)) < 0)
  1052. break;
  1053. audiotrack = (MatroskaAudioTrack *)track;
  1054. audiotrack->channels = 1;
  1055. audiotrack->samplerate = 8000;
  1056. while (res == 0) {
  1057. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1058. res = AVERROR(EIO);
  1059. break;
  1060. } else if (matroska->level_up > 0) {
  1061. matroska->level_up--;
  1062. break;
  1063. }
  1064. switch (id) {
  1065. /* samplerate */
  1066. case MATROSKA_ID_AUDIOSAMPLINGFREQ: {
  1067. double num;
  1068. if ((res = ebml_read_float(matroska, &id,
  1069. &num)) < 0)
  1070. break;
  1071. audiotrack->internal_samplerate =
  1072. audiotrack->samplerate = num;
  1073. break;
  1074. }
  1075. case MATROSKA_ID_AUDIOOUTSAMPLINGFREQ: {
  1076. double num;
  1077. if ((res = ebml_read_float(matroska, &id,
  1078. &num)) < 0)
  1079. break;
  1080. audiotrack->samplerate = num;
  1081. break;
  1082. }
  1083. /* bitdepth */
  1084. case MATROSKA_ID_AUDIOBITDEPTH: {
  1085. uint64_t num;
  1086. if ((res = ebml_read_uint(matroska, &id,
  1087. &num)) < 0)
  1088. break;
  1089. audiotrack->bitdepth = num;
  1090. break;
  1091. }
  1092. /* channels */
  1093. case MATROSKA_ID_AUDIOCHANNELS: {
  1094. uint64_t num;
  1095. if ((res = ebml_read_uint(matroska, &id,
  1096. &num)) < 0)
  1097. break;
  1098. audiotrack->channels = num;
  1099. break;
  1100. }
  1101. default:
  1102. av_log(matroska->ctx, AV_LOG_INFO,
  1103. "Unknown audio track header entry "
  1104. "0x%x - ignoring\n", id);
  1105. /* pass-through */
  1106. case EBML_ID_VOID:
  1107. res = ebml_read_skip(matroska);
  1108. break;
  1109. }
  1110. if (matroska->level_up) {
  1111. matroska->level_up--;
  1112. break;
  1113. }
  1114. }
  1115. break;
  1116. }
  1117. /* codec identifier */
  1118. case MATROSKA_ID_CODECID: {
  1119. char *text;
  1120. if ((res = ebml_read_ascii(matroska, &id, &text)) < 0)
  1121. break;
  1122. track->codec_id = text;
  1123. break;
  1124. }
  1125. /* codec private data */
  1126. case MATROSKA_ID_CODECPRIVATE: {
  1127. uint8_t *data;
  1128. int size;
  1129. if ((res = ebml_read_binary(matroska, &id, &data, &size) < 0))
  1130. break;
  1131. track->codec_priv = data;
  1132. track->codec_priv_size = size;
  1133. break;
  1134. }
  1135. /* name of the codec */
  1136. case MATROSKA_ID_CODECNAME: {
  1137. char *text;
  1138. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  1139. break;
  1140. track->codec_name = text;
  1141. break;
  1142. }
  1143. /* name of this track */
  1144. case MATROSKA_ID_TRACKNAME: {
  1145. char *text;
  1146. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  1147. break;
  1148. track->name = text;
  1149. break;
  1150. }
  1151. /* language (matters for audio/subtitles, mostly) */
  1152. case MATROSKA_ID_TRACKLANGUAGE: {
  1153. char *text, *end;
  1154. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  1155. break;
  1156. if ((end = strchr(text, '-')))
  1157. *end = '\0';
  1158. if (strlen(text) == 3)
  1159. strcpy(track->language, text);
  1160. av_free(text);
  1161. break;
  1162. }
  1163. /* whether this is actually used */
  1164. case MATROSKA_ID_TRACKFLAGENABLED: {
  1165. uint64_t num;
  1166. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1167. break;
  1168. if (num)
  1169. track->flags |= MATROSKA_TRACK_ENABLED;
  1170. else
  1171. track->flags &= ~MATROSKA_TRACK_ENABLED;
  1172. break;
  1173. }
  1174. /* whether it's the default for this track type */
  1175. case MATROSKA_ID_TRACKFLAGDEFAULT: {
  1176. uint64_t num;
  1177. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1178. break;
  1179. if (num)
  1180. track->flags |= MATROSKA_TRACK_DEFAULT;
  1181. else
  1182. track->flags &= ~MATROSKA_TRACK_DEFAULT;
  1183. break;
  1184. }
  1185. /* lacing (like MPEG, where blocks don't end/start on frame
  1186. * boundaries) */
  1187. case MATROSKA_ID_TRACKFLAGLACING: {
  1188. uint64_t num;
  1189. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1190. break;
  1191. if (num)
  1192. track->flags |= MATROSKA_TRACK_LACING;
  1193. else
  1194. track->flags &= ~MATROSKA_TRACK_LACING;
  1195. break;
  1196. }
  1197. /* default length (in time) of one data block in this track */
  1198. case MATROSKA_ID_TRACKDEFAULTDURATION: {
  1199. uint64_t num;
  1200. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1201. break;
  1202. track->default_duration = num;
  1203. break;
  1204. }
  1205. default:
  1206. av_log(matroska->ctx, AV_LOG_INFO,
  1207. "Unknown track header entry 0x%x - ignoring\n", id);
  1208. /* pass-through */
  1209. case EBML_ID_VOID:
  1210. /* we ignore these because they're nothing useful. */
  1211. case MATROSKA_ID_CODECINFOURL:
  1212. case MATROSKA_ID_CODECDOWNLOADURL:
  1213. case MATROSKA_ID_TRACKMINCACHE:
  1214. case MATROSKA_ID_TRACKMAXCACHE:
  1215. res = ebml_read_skip(matroska);
  1216. break;
  1217. }
  1218. if (matroska->level_up) {
  1219. matroska->level_up--;
  1220. break;
  1221. }
  1222. }
  1223. return res;
  1224. }
  1225. static int
  1226. matroska_parse_tracks (MatroskaDemuxContext *matroska)
  1227. {
  1228. int res = 0;
  1229. uint32_t id;
  1230. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing tracks...\n");
  1231. while (res == 0) {
  1232. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1233. res = AVERROR(EIO);
  1234. break;
  1235. } else if (matroska->level_up) {
  1236. matroska->level_up--;
  1237. break;
  1238. }
  1239. switch (id) {
  1240. /* one track within the "all-tracks" header */
  1241. case MATROSKA_ID_TRACKENTRY:
  1242. res = matroska_add_stream(matroska);
  1243. break;
  1244. default:
  1245. av_log(matroska->ctx, AV_LOG_INFO,
  1246. "Unknown entry 0x%x in track header\n", id);
  1247. /* fall-through */
  1248. case EBML_ID_VOID:
  1249. res = ebml_read_skip(matroska);
  1250. break;
  1251. }
  1252. if (matroska->level_up) {
  1253. matroska->level_up--;
  1254. break;
  1255. }
  1256. }
  1257. return res;
  1258. }
  1259. static int
  1260. matroska_parse_index (MatroskaDemuxContext *matroska)
  1261. {
  1262. int res = 0;
  1263. uint32_t id;
  1264. MatroskaDemuxIndex idx;
  1265. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing index...\n");
  1266. while (res == 0) {
  1267. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1268. res = AVERROR(EIO);
  1269. break;
  1270. } else if (matroska->level_up) {
  1271. matroska->level_up--;
  1272. break;
  1273. }
  1274. switch (id) {
  1275. /* one single index entry ('point') */
  1276. case MATROSKA_ID_POINTENTRY:
  1277. if ((res = ebml_read_master(matroska, &id)) < 0)
  1278. break;
  1279. /* in the end, we hope to fill one entry with a
  1280. * timestamp, a file position and a tracknum */
  1281. idx.pos = (uint64_t) -1;
  1282. idx.time = (uint64_t) -1;
  1283. idx.track = (uint16_t) -1;
  1284. while (res == 0) {
  1285. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1286. res = AVERROR(EIO);
  1287. break;
  1288. } else if (matroska->level_up) {
  1289. matroska->level_up--;
  1290. break;
  1291. }
  1292. switch (id) {
  1293. /* one single index entry ('point') */
  1294. case MATROSKA_ID_CUETIME: {
  1295. uint64_t time;
  1296. if ((res = ebml_read_uint(matroska, &id,
  1297. &time)) < 0)
  1298. break;
  1299. idx.time = time * matroska->time_scale;
  1300. break;
  1301. }
  1302. /* position in the file + track to which it
  1303. * belongs */
  1304. case MATROSKA_ID_CUETRACKPOSITION:
  1305. if ((res = ebml_read_master(matroska, &id)) < 0)
  1306. break;
  1307. while (res == 0) {
  1308. if (!(id = ebml_peek_id (matroska,
  1309. &matroska->level_up))) {
  1310. res = AVERROR(EIO);
  1311. break;
  1312. } else if (matroska->level_up) {
  1313. matroska->level_up--;
  1314. break;
  1315. }
  1316. switch (id) {
  1317. /* track number */
  1318. case MATROSKA_ID_CUETRACK: {
  1319. uint64_t num;
  1320. if ((res = ebml_read_uint(matroska,
  1321. &id, &num)) < 0)
  1322. break;
  1323. idx.track = num;
  1324. break;
  1325. }
  1326. /* position in file */
  1327. case MATROSKA_ID_CUECLUSTERPOSITION: {
  1328. uint64_t num;
  1329. if ((res = ebml_read_uint(matroska,
  1330. &id, &num)) < 0)
  1331. break;
  1332. idx.pos = num+matroska->segment_start;
  1333. break;
  1334. }
  1335. default:
  1336. av_log(matroska->ctx, AV_LOG_INFO,
  1337. "Unknown entry 0x%x in "
  1338. "CuesTrackPositions\n", id);
  1339. /* fall-through */
  1340. case EBML_ID_VOID:
  1341. res = ebml_read_skip(matroska);
  1342. break;
  1343. }
  1344. if (matroska->level_up) {
  1345. matroska->level_up--;
  1346. break;
  1347. }
  1348. }
  1349. break;
  1350. default:
  1351. av_log(matroska->ctx, AV_LOG_INFO,
  1352. "Unknown entry 0x%x in cuespoint "
  1353. "index\n", id);
  1354. /* fall-through */
  1355. case EBML_ID_VOID:
  1356. res = ebml_read_skip(matroska);
  1357. break;
  1358. }
  1359. if (matroska->level_up) {
  1360. matroska->level_up--;
  1361. break;
  1362. }
  1363. }
  1364. /* so let's see if we got what we wanted */
  1365. if (idx.pos != (uint64_t) -1 &&
  1366. idx.time != (uint64_t) -1 &&
  1367. idx.track != (uint16_t) -1) {
  1368. if (matroska->num_indexes % 32 == 0) {
  1369. /* re-allocate bigger index */
  1370. matroska->index =
  1371. av_realloc(matroska->index,
  1372. (matroska->num_indexes + 32) *
  1373. sizeof(MatroskaDemuxIndex));
  1374. }
  1375. matroska->index[matroska->num_indexes] = idx;
  1376. matroska->num_indexes++;
  1377. }
  1378. break;
  1379. default:
  1380. av_log(matroska->ctx, AV_LOG_INFO,
  1381. "Unknown entry 0x%x in cues header\n", id);
  1382. /* fall-through */
  1383. case EBML_ID_VOID:
  1384. res = ebml_read_skip(matroska);
  1385. break;
  1386. }
  1387. if (matroska->level_up) {
  1388. matroska->level_up--;
  1389. break;
  1390. }
  1391. }
  1392. return res;
  1393. }
  1394. static int
  1395. matroska_parse_metadata (MatroskaDemuxContext *matroska)
  1396. {
  1397. int res = 0;
  1398. uint32_t id;
  1399. while (res == 0) {
  1400. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1401. res = AVERROR(EIO);
  1402. break;
  1403. } else if (matroska->level_up) {
  1404. matroska->level_up--;
  1405. break;
  1406. }
  1407. switch (id) {
  1408. /* Hm, this is unsupported... */
  1409. default:
  1410. av_log(matroska->ctx, AV_LOG_INFO,
  1411. "Unknown entry 0x%x in metadata header\n", id);
  1412. /* fall-through */
  1413. case EBML_ID_VOID:
  1414. res = ebml_read_skip(matroska);
  1415. break;
  1416. }
  1417. if (matroska->level_up) {
  1418. matroska->level_up--;
  1419. break;
  1420. }
  1421. }
  1422. return res;
  1423. }
  1424. static int
  1425. matroska_parse_seekhead (MatroskaDemuxContext *matroska)
  1426. {
  1427. int res = 0;
  1428. uint32_t id;
  1429. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing seekhead...\n");
  1430. while (res == 0) {
  1431. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1432. res = AVERROR(EIO);
  1433. break;
  1434. } else if (matroska->level_up) {
  1435. matroska->level_up--;
  1436. break;
  1437. }
  1438. switch (id) {
  1439. case MATROSKA_ID_SEEKENTRY: {
  1440. uint32_t seek_id = 0, peek_id_cache = 0;
  1441. uint64_t seek_pos = (uint64_t) -1, t;
  1442. if ((res = ebml_read_master(matroska, &id)) < 0)
  1443. break;
  1444. while (res == 0) {
  1445. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1446. res = AVERROR(EIO);
  1447. break;
  1448. } else if (matroska->level_up) {
  1449. matroska->level_up--;
  1450. break;
  1451. }
  1452. switch (id) {
  1453. case MATROSKA_ID_SEEKID:
  1454. res = ebml_read_uint(matroska, &id, &t);
  1455. seek_id = t;
  1456. break;
  1457. case MATROSKA_ID_SEEKPOSITION:
  1458. res = ebml_read_uint(matroska, &id, &seek_pos);
  1459. break;
  1460. default:
  1461. av_log(matroska->ctx, AV_LOG_INFO,
  1462. "Unknown seekhead ID 0x%x\n", id);
  1463. /* fall-through */
  1464. case EBML_ID_VOID:
  1465. res = ebml_read_skip(matroska);
  1466. break;
  1467. }
  1468. if (matroska->level_up) {
  1469. matroska->level_up--;
  1470. break;
  1471. }
  1472. }
  1473. if (!seek_id || seek_pos == (uint64_t) -1) {
  1474. av_log(matroska->ctx, AV_LOG_INFO,
  1475. "Incomplete seekhead entry (0x%x/%"PRIu64")\n",
  1476. seek_id, seek_pos);
  1477. break;
  1478. }
  1479. switch (seek_id) {
  1480. case MATROSKA_ID_CUES:
  1481. case MATROSKA_ID_TAGS: {
  1482. uint32_t level_up = matroska->level_up;
  1483. offset_t before_pos;
  1484. uint64_t length;
  1485. MatroskaLevel level;
  1486. /* remember the peeked ID and the current position */
  1487. peek_id_cache = matroska->peek_id;
  1488. before_pos = url_ftell(&matroska->ctx->pb);
  1489. /* seek */
  1490. if ((res = ebml_read_seek(matroska, seek_pos +
  1491. matroska->segment_start)) < 0)
  1492. return res;
  1493. /* we don't want to lose our seekhead level, so we add
  1494. * a dummy. This is a crude hack. */
  1495. if (matroska->num_levels == EBML_MAX_DEPTH) {
  1496. av_log(matroska->ctx, AV_LOG_INFO,
  1497. "Max EBML element depth (%d) reached, "
  1498. "cannot parse further.\n", EBML_MAX_DEPTH);
  1499. return AVERROR_UNKNOWN;
  1500. }
  1501. level.start = 0;
  1502. level.length = (uint64_t)-1;
  1503. matroska->levels[matroska->num_levels] = level;
  1504. matroska->num_levels++;
  1505. /* check ID */
  1506. if (!(id = ebml_peek_id (matroska,
  1507. &matroska->level_up)))
  1508. goto finish;
  1509. if (id != seek_id) {
  1510. av_log(matroska->ctx, AV_LOG_INFO,
  1511. "We looked for ID=0x%x but got "
  1512. "ID=0x%x (pos=%"PRIu64")",
  1513. seek_id, id, seek_pos +
  1514. matroska->segment_start);
  1515. goto finish;
  1516. }
  1517. /* read master + parse */
  1518. if ((res = ebml_read_master(matroska, &id)) < 0)
  1519. goto finish;
  1520. switch (id) {
  1521. case MATROSKA_ID_CUES:
  1522. if (!(res = matroska_parse_index(matroska)) ||
  1523. url_feof(&matroska->ctx->pb)) {
  1524. matroska->index_parsed = 1;
  1525. res = 0;
  1526. }
  1527. break;
  1528. case MATROSKA_ID_TAGS:
  1529. if (!(res = matroska_parse_metadata(matroska)) ||
  1530. url_feof(&matroska->ctx->pb)) {
  1531. matroska->metadata_parsed = 1;
  1532. res = 0;
  1533. }
  1534. break;
  1535. }
  1536. finish:
  1537. /* remove dummy level */
  1538. while (matroska->num_levels) {
  1539. matroska->num_levels--;
  1540. length =
  1541. matroska->levels[matroska->num_levels].length;
  1542. if (length == (uint64_t)-1)
  1543. break;
  1544. }
  1545. /* seek back */
  1546. if ((res = ebml_read_seek(matroska, before_pos)) < 0)
  1547. return res;
  1548. matroska->peek_id = peek_id_cache;
  1549. matroska->level_up = level_up;
  1550. break;
  1551. }
  1552. default:
  1553. av_log(matroska->ctx, AV_LOG_INFO,
  1554. "Ignoring seekhead entry for ID=0x%x\n",
  1555. seek_id);
  1556. break;
  1557. }
  1558. break;
  1559. }
  1560. default:
  1561. av_log(matroska->ctx, AV_LOG_INFO,
  1562. "Unknown seekhead ID 0x%x\n", id);
  1563. /* fall-through */
  1564. case EBML_ID_VOID:
  1565. res = ebml_read_skip(matroska);
  1566. break;
  1567. }
  1568. if (matroska->level_up) {
  1569. matroska->level_up--;
  1570. break;
  1571. }
  1572. }
  1573. return res;
  1574. }
  1575. #define ARRAY_SIZE(x) (sizeof(x)/sizeof(*x))
  1576. static int
  1577. matroska_aac_profile (char *codec_id)
  1578. {
  1579. static const char *aac_profiles[] = {
  1580. "MAIN", "LC", "SSR"
  1581. };
  1582. int profile;
  1583. for (profile=0; profile<ARRAY_SIZE(aac_profiles); profile++)
  1584. if (strstr(codec_id, aac_profiles[profile]))
  1585. break;
  1586. return profile + 1;
  1587. }
  1588. static int
  1589. matroska_aac_sri (int samplerate)
  1590. {
  1591. static const int aac_sample_rates[] = {
  1592. 96000, 88200, 64000, 48000, 44100, 32000,
  1593. 24000, 22050, 16000, 12000, 11025, 8000,
  1594. };
  1595. int sri;
  1596. for (sri=0; sri<ARRAY_SIZE(aac_sample_rates); sri++)
  1597. if (aac_sample_rates[sri] == samplerate)
  1598. break;
  1599. return sri;
  1600. }
  1601. static int
  1602. matroska_read_header (AVFormatContext *s,
  1603. AVFormatParameters *ap)
  1604. {
  1605. MatroskaDemuxContext *matroska = s->priv_data;
  1606. char *doctype;
  1607. int version, last_level, res = 0;
  1608. uint32_t id;
  1609. matroska->ctx = s;
  1610. /* First read the EBML header. */
  1611. doctype = NULL;
  1612. if ((res = ebml_read_header(matroska, &doctype, &version)) < 0)
  1613. return res;
  1614. if ((doctype == NULL) || strcmp(doctype, "matroska")) {
  1615. av_log(matroska->ctx, AV_LOG_ERROR,
  1616. "Wrong EBML doctype ('%s' != 'matroska').\n",
  1617. doctype ? doctype : "(none)");
  1618. if (doctype)
  1619. av_free(doctype);
  1620. return AVERROR_NOFMT;
  1621. }
  1622. av_free(doctype);
  1623. if (version > 2) {
  1624. av_log(matroska->ctx, AV_LOG_ERROR,
  1625. "Matroska demuxer version 2 too old for file version %d\n",
  1626. version);
  1627. return AVERROR_NOFMT;
  1628. }
  1629. /* The next thing is a segment. */
  1630. while (1) {
  1631. if (!(id = ebml_peek_id(matroska, &last_level)))
  1632. return AVERROR(EIO);
  1633. if (id == MATROSKA_ID_SEGMENT)
  1634. break;
  1635. /* oi! */
  1636. av_log(matroska->ctx, AV_LOG_INFO,
  1637. "Expected a Segment ID (0x%x), but received 0x%x!\n",
  1638. MATROSKA_ID_SEGMENT, id);
  1639. if ((res = ebml_read_skip(matroska)) < 0)
  1640. return res;
  1641. }
  1642. /* We now have a Matroska segment.
  1643. * Seeks are from the beginning of the segment,
  1644. * after the segment ID/length. */
  1645. if ((res = ebml_read_master(matroska, &id)) < 0)
  1646. return res;
  1647. matroska->segment_start = url_ftell(&s->pb);
  1648. matroska->time_scale = 1000000;
  1649. /* we've found our segment, start reading the different contents in here */
  1650. while (res == 0) {
  1651. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1652. res = AVERROR(EIO);
  1653. break;
  1654. } else if (matroska->level_up) {
  1655. matroska->level_up--;
  1656. break;
  1657. }
  1658. switch (id) {
  1659. /* stream info */
  1660. case MATROSKA_ID_INFO: {
  1661. if ((res = ebml_read_master(matroska, &id)) < 0)
  1662. break;
  1663. res = matroska_parse_info(matroska);
  1664. break;
  1665. }
  1666. /* track info headers */
  1667. case MATROSKA_ID_TRACKS: {
  1668. if ((res = ebml_read_master(matroska, &id)) < 0)
  1669. break;
  1670. res = matroska_parse_tracks(matroska);
  1671. break;
  1672. }
  1673. /* stream index */
  1674. case MATROSKA_ID_CUES: {
  1675. if (!matroska->index_parsed) {
  1676. if ((res = ebml_read_master(matroska, &id)) < 0)
  1677. break;
  1678. res = matroska_parse_index(matroska);
  1679. } else
  1680. res = ebml_read_skip(matroska);
  1681. break;
  1682. }
  1683. /* metadata */
  1684. case MATROSKA_ID_TAGS: {
  1685. if (!matroska->metadata_parsed) {
  1686. if ((res = ebml_read_master(matroska, &id)) < 0)
  1687. break;
  1688. res = matroska_parse_metadata(matroska);
  1689. } else
  1690. res = ebml_read_skip(matroska);
  1691. break;
  1692. }
  1693. /* file index (if seekable, seek to Cues/Tags to parse it) */
  1694. case MATROSKA_ID_SEEKHEAD: {
  1695. if ((res = ebml_read_master(matroska, &id)) < 0)
  1696. break;
  1697. res = matroska_parse_seekhead(matroska);
  1698. break;
  1699. }
  1700. case MATROSKA_ID_CLUSTER: {
  1701. /* Do not read the master - this will be done in the next
  1702. * call to matroska_read_packet. */
  1703. res = 1;
  1704. break;
  1705. }
  1706. default:
  1707. av_log(matroska->ctx, AV_LOG_INFO,
  1708. "Unknown matroska file header ID 0x%x\n", id);
  1709. /* fall-through */
  1710. case EBML_ID_VOID:
  1711. res = ebml_read_skip(matroska);
  1712. break;
  1713. }
  1714. if (matroska->level_up) {
  1715. matroska->level_up--;
  1716. break;
  1717. }
  1718. }
  1719. /* Have we found a cluster? */
  1720. if (ebml_peek_id(matroska, NULL) == MATROSKA_ID_CLUSTER) {
  1721. int i, j;
  1722. MatroskaTrack *track;
  1723. AVStream *st;
  1724. for (i = 0; i < matroska->num_tracks; i++) {
  1725. enum CodecID codec_id = CODEC_ID_NONE;
  1726. uint8_t *extradata = NULL;
  1727. int extradata_size = 0;
  1728. int extradata_offset = 0;
  1729. track = matroska->tracks[i];
  1730. track->stream_index = -1;
  1731. /* Apply some sanity checks. */
  1732. if (track->codec_id == NULL)
  1733. continue;
  1734. for(j=0; ff_mkv_codec_tags[j].str; j++){
  1735. if(!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
  1736. strlen(ff_mkv_codec_tags[j].str))){
  1737. codec_id= ff_mkv_codec_tags[j].id;
  1738. break;
  1739. }
  1740. }
  1741. /* Set the FourCC from the CodecID. */
  1742. /* This is the MS compatibility mode which stores a
  1743. * BITMAPINFOHEADER in the CodecPrivate. */
  1744. if (!strcmp(track->codec_id,
  1745. MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC) &&
  1746. (track->codec_priv_size >= 40) &&
  1747. (track->codec_priv != NULL)) {
  1748. MatroskaVideoTrack *vtrack = (MatroskaVideoTrack *) track;
  1749. /* Offset of biCompression. Stored in LE. */
  1750. vtrack->fourcc = AV_RL32(track->codec_priv + 16);
  1751. codec_id = codec_get_id(codec_bmp_tags, vtrack->fourcc);
  1752. }
  1753. /* This is the MS compatibility mode which stores a
  1754. * WAVEFORMATEX in the CodecPrivate. */
  1755. else if (!strcmp(track->codec_id,
  1756. MATROSKA_CODEC_ID_AUDIO_ACM) &&
  1757. (track->codec_priv_size >= 18) &&
  1758. (track->codec_priv != NULL)) {
  1759. uint16_t tag;
  1760. /* Offset of wFormatTag. Stored in LE. */
  1761. tag = AV_RL16(track->codec_priv);
  1762. codec_id = codec_get_id(codec_wav_tags, tag);
  1763. }
  1764. else if (codec_id == CODEC_ID_AAC && !track->codec_priv_size) {
  1765. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *) track;
  1766. int profile = matroska_aac_profile(track->codec_id);
  1767. int sri = matroska_aac_sri(audiotrack->internal_samplerate);
  1768. extradata = av_malloc(5);
  1769. if (extradata == NULL)
  1770. return AVERROR(ENOMEM);
  1771. extradata[0] = (profile << 3) | ((sri&0x0E) >> 1);
  1772. extradata[1] = ((sri&0x01) << 7) | (audiotrack->channels<<3);
  1773. if (strstr(track->codec_id, "SBR")) {
  1774. sri = matroska_aac_sri(audiotrack->samplerate);
  1775. extradata[2] = 0x56;
  1776. extradata[3] = 0xE5;
  1777. extradata[4] = 0x80 | (sri<<3);
  1778. extradata_size = 5;
  1779. } else {
  1780. extradata_size = 2;
  1781. }
  1782. }
  1783. else if (codec_id == CODEC_ID_TTA) {
  1784. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *) track;
  1785. ByteIOContext b;
  1786. extradata_size = 30;
  1787. extradata = av_mallocz(extradata_size);
  1788. if (extradata == NULL)
  1789. return AVERROR(ENOMEM);
  1790. init_put_byte(&b, extradata, extradata_size, 1,
  1791. NULL, NULL, NULL, NULL);
  1792. put_buffer(&b, (uint8_t *) "TTA1", 4);
  1793. put_le16(&b, 1);
  1794. put_le16(&b, audiotrack->channels);
  1795. put_le16(&b, audiotrack->bitdepth);
  1796. put_le32(&b, audiotrack->samplerate);
  1797. put_le32(&b, matroska->ctx->duration * audiotrack->samplerate);
  1798. }
  1799. else if (codec_id == CODEC_ID_RV10 || codec_id == CODEC_ID_RV20 ||
  1800. codec_id == CODEC_ID_RV30 || codec_id == CODEC_ID_RV40) {
  1801. extradata_offset = 26;
  1802. track->codec_priv_size -= extradata_offset;
  1803. track->flags |= MATROSKA_TRACK_REAL_V;
  1804. }
  1805. else if (codec_id == CODEC_ID_RA_144) {
  1806. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1807. audiotrack->samplerate = 8000;
  1808. audiotrack->channels = 1;
  1809. }
  1810. else if (codec_id == CODEC_ID_RA_288 ||
  1811. codec_id == CODEC_ID_COOK ||
  1812. codec_id == CODEC_ID_ATRAC3) {
  1813. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1814. ByteIOContext b;
  1815. init_put_byte(&b, track->codec_priv, track->codec_priv_size, 0,
  1816. NULL, NULL, NULL, NULL);
  1817. url_fskip(&b, 24);
  1818. audiotrack->coded_framesize = get_be32(&b);
  1819. url_fskip(&b, 12);
  1820. audiotrack->sub_packet_h = get_be16(&b);
  1821. audiotrack->frame_size = get_be16(&b);
  1822. audiotrack->sub_packet_size = get_be16(&b);
  1823. audiotrack->buf = av_malloc(audiotrack->frame_size * audiotrack->sub_packet_h);
  1824. if (codec_id == CODEC_ID_RA_288) {
  1825. audiotrack->block_align = audiotrack->coded_framesize;
  1826. track->codec_priv_size = 0;
  1827. } else {
  1828. audiotrack->block_align = audiotrack->sub_packet_size;
  1829. extradata_offset = 78;
  1830. track->codec_priv_size -= extradata_offset;
  1831. }
  1832. }
  1833. else if (codec_id == CODEC_ID_TEXT) {
  1834. MatroskaSubtitleTrack *subtrack=(MatroskaSubtitleTrack *)track;
  1835. if (!strcmp(track->codec_id, "S_TEXT/ASS") ||
  1836. !strcmp(track->codec_id, "S_TEXT/SSA") ||
  1837. !strcmp(track->codec_id, "S_ASS") ||
  1838. !strcmp(track->codec_id, "S_SSA"))
  1839. subtrack->ass = 1;
  1840. }
  1841. if (codec_id == CODEC_ID_NONE) {
  1842. av_log(matroska->ctx, AV_LOG_INFO,
  1843. "Unknown/unsupported CodecID %s.\n",
  1844. track->codec_id);
  1845. }
  1846. track->stream_index = matroska->num_streams;
  1847. matroska->num_streams++;
  1848. st = av_new_stream(s, track->stream_index);
  1849. if (st == NULL)
  1850. return AVERROR(ENOMEM);
  1851. av_set_pts_info(st, 64, matroska->time_scale, 1000*1000*1000); /* 64 bit pts in ns */
  1852. st->codec->codec_id = codec_id;
  1853. st->start_time = 0;
  1854. if (strcmp(track->language, "und"))
  1855. strcpy(st->language, track->language);
  1856. if (track->default_duration)
  1857. av_reduce(&st->codec->time_base.num, &st->codec->time_base.den,
  1858. track->default_duration, 1000000000, 30000);
  1859. if(extradata){
  1860. st->codec->extradata = extradata;
  1861. st->codec->extradata_size = extradata_size;
  1862. } else if(track->codec_priv && track->codec_priv_size > 0){
  1863. st->codec->extradata = av_malloc(track->codec_priv_size);
  1864. if(st->codec->extradata == NULL)
  1865. return AVERROR(ENOMEM);
  1866. st->codec->extradata_size = track->codec_priv_size;
  1867. memcpy(st->codec->extradata,track->codec_priv+extradata_offset,
  1868. track->codec_priv_size);
  1869. }
  1870. if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
  1871. MatroskaVideoTrack *videotrack = (MatroskaVideoTrack *)track;
  1872. st->codec->codec_type = CODEC_TYPE_VIDEO;
  1873. st->codec->codec_tag = videotrack->fourcc;
  1874. st->codec->width = videotrack->pixel_width;
  1875. st->codec->height = videotrack->pixel_height;
  1876. if (videotrack->display_width == 0)
  1877. videotrack->display_width= videotrack->pixel_width;
  1878. if (videotrack->display_height == 0)
  1879. videotrack->display_height= videotrack->pixel_height;
  1880. av_reduce(&st->codec->sample_aspect_ratio.num,
  1881. &st->codec->sample_aspect_ratio.den,
  1882. st->codec->height * videotrack->display_width,
  1883. st->codec-> width * videotrack->display_height,
  1884. 255);
  1885. st->need_parsing = AVSTREAM_PARSE_HEADERS;
  1886. } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
  1887. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1888. st->codec->codec_type = CODEC_TYPE_AUDIO;
  1889. st->codec->sample_rate = audiotrack->samplerate;
  1890. st->codec->channels = audiotrack->channels;
  1891. st->codec->block_align = audiotrack->block_align;
  1892. } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
  1893. st->codec->codec_type = CODEC_TYPE_SUBTITLE;
  1894. }
  1895. /* What do we do with private data? E.g. for Vorbis. */
  1896. }
  1897. res = 0;
  1898. }
  1899. if (matroska->index_parsed) {
  1900. int i, track, stream;
  1901. for (i=0; i<matroska->num_indexes; i++) {
  1902. MatroskaDemuxIndex *idx = &matroska->index[i];
  1903. track = matroska_find_track_by_num(matroska, idx->track);
  1904. stream = matroska->tracks[track]->stream_index;
  1905. if (stream >= 0)
  1906. av_add_index_entry(matroska->ctx->streams[stream],
  1907. idx->pos, idx->time/matroska->time_scale,
  1908. 0, 0, AVINDEX_KEYFRAME);
  1909. }
  1910. }
  1911. return res;
  1912. }
  1913. static inline int
  1914. rv_offset(uint8_t *data, int slice, int slices)
  1915. {
  1916. return AV_RL32(data+8*slice+4) + 8*slices;
  1917. }
  1918. static int
  1919. matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size,
  1920. int64_t pos, uint64_t cluster_time, uint64_t duration,
  1921. int is_keyframe, int is_bframe)
  1922. {
  1923. int res = 0;
  1924. int track;
  1925. AVStream *st;
  1926. AVPacket *pkt;
  1927. uint8_t *origdata = data;
  1928. int16_t block_time;
  1929. uint32_t *lace_size = NULL;
  1930. int n, flags, laces = 0;
  1931. uint64_t num;
  1932. /* first byte(s): tracknum */
  1933. if ((n = matroska_ebmlnum_uint(data, size, &num)) < 0) {
  1934. av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
  1935. av_free(origdata);
  1936. return res;
  1937. }
  1938. data += n;
  1939. size -= n;
  1940. /* fetch track from num */
  1941. track = matroska_find_track_by_num(matroska, num);
  1942. if (size <= 3 || track < 0 || track >= matroska->num_tracks) {
  1943. av_log(matroska->ctx, AV_LOG_INFO,
  1944. "Invalid stream %d or size %u\n", track, size);
  1945. av_free(origdata);
  1946. return res;
  1947. }
  1948. if (matroska->tracks[track]->stream_index < 0)
  1949. return res;
  1950. st = matroska->ctx->streams[matroska->tracks[track]->stream_index];
  1951. if (st->discard >= AVDISCARD_ALL) {
  1952. av_free(origdata);
  1953. return res;
  1954. }
  1955. if (duration == AV_NOPTS_VALUE)
  1956. duration = matroska->tracks[track]->default_duration / matroska->time_scale;
  1957. /* block_time (relative to cluster time) */
  1958. block_time = AV_RB16(data);
  1959. data += 2;
  1960. flags = *data++;
  1961. size -= 3;
  1962. if (is_keyframe == -1)
  1963. is_keyframe = flags & 0x80 ? PKT_FLAG_KEY : 0;
  1964. if (matroska->skip_to_keyframe) {
  1965. if (!is_keyframe || st != matroska->skip_to_stream)
  1966. return res;
  1967. matroska->skip_to_keyframe = 0;
  1968. }
  1969. switch ((flags & 0x06) >> 1) {
  1970. case 0x0: /* no lacing */
  1971. laces = 1;
  1972. lace_size = av_mallocz(sizeof(int));
  1973. lace_size[0] = size;
  1974. break;
  1975. case 0x1: /* xiph lacing */
  1976. case 0x2: /* fixed-size lacing */
  1977. case 0x3: /* EBML lacing */
  1978. if (size == 0) {
  1979. res = -1;
  1980. break;
  1981. }
  1982. laces = (*data) + 1;
  1983. data += 1;
  1984. size -= 1;
  1985. lace_size = av_mallocz(laces * sizeof(int));
  1986. switch ((flags & 0x06) >> 1) {
  1987. case 0x1: /* xiph lacing */ {
  1988. uint8_t temp;
  1989. uint32_t total = 0;
  1990. for (n = 0; res == 0 && n < laces - 1; n++) {
  1991. while (1) {
  1992. if (size == 0) {
  1993. res = -1;
  1994. break;
  1995. }
  1996. temp = *data;
  1997. lace_size[n] += temp;
  1998. data += 1;
  1999. size -= 1;
  2000. if (temp != 0xff)
  2001. break;
  2002. }
  2003. total += lace_size[n];
  2004. }
  2005. lace_size[n] = size - total;
  2006. break;
  2007. }
  2008. case 0x2: /* fixed-size lacing */
  2009. for (n = 0; n < laces; n++)
  2010. lace_size[n] = size / laces;
  2011. break;
  2012. case 0x3: /* EBML lacing */ {
  2013. uint32_t total;
  2014. n = matroska_ebmlnum_uint(data, size, &num);
  2015. if (n < 0) {
  2016. av_log(matroska->ctx, AV_LOG_INFO,
  2017. "EBML block data error\n");
  2018. break;
  2019. }
  2020. data += n;
  2021. size -= n;
  2022. total = lace_size[0] = num;
  2023. for (n = 1; res == 0 && n < laces - 1; n++) {
  2024. int64_t snum;
  2025. int r;
  2026. r = matroska_ebmlnum_sint (data, size, &snum);
  2027. if (r < 0) {
  2028. av_log(matroska->ctx, AV_LOG_INFO,
  2029. "EBML block data error\n");
  2030. break;
  2031. }
  2032. data += r;
  2033. size -= r;
  2034. lace_size[n] = lace_size[n - 1] + snum;
  2035. total += lace_size[n];
  2036. }
  2037. lace_size[n] = size - total;
  2038. break;
  2039. }
  2040. }
  2041. break;
  2042. }
  2043. if (res == 0) {
  2044. int real_v = matroska->tracks[track]->flags & MATROSKA_TRACK_REAL_V;
  2045. uint64_t timecode = AV_NOPTS_VALUE;
  2046. if (cluster_time != (uint64_t)-1
  2047. && (block_time >= 0 || cluster_time >= -block_time))
  2048. timecode = cluster_time + block_time;
  2049. for (n = 0; n < laces; n++) {
  2050. int slice, slices = 1;
  2051. if (real_v) {
  2052. slices = *data++ + 1;
  2053. lace_size[n]--;
  2054. }
  2055. for (slice=0; slice<slices; slice++) {
  2056. int slice_size, slice_offset = 0;
  2057. if (real_v)
  2058. slice_offset = rv_offset(data, slice, slices);
  2059. if (slice+1 == slices)
  2060. slice_size = lace_size[n] - slice_offset;
  2061. else
  2062. slice_size = rv_offset(data, slice+1, slices) - slice_offset;
  2063. if (st->codec->codec_id == CODEC_ID_RA_288 ||
  2064. st->codec->codec_id == CODEC_ID_COOK ||
  2065. st->codec->codec_id == CODEC_ID_ATRAC3) {
  2066. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)matroska->tracks[track];
  2067. int a = st->codec->block_align;
  2068. int sps = audiotrack->sub_packet_size;
  2069. int cfs = audiotrack->coded_framesize;
  2070. int h = audiotrack->sub_packet_h;
  2071. int y = audiotrack->sub_packet_cnt;
  2072. int w = audiotrack->frame_size;
  2073. int x;
  2074. if (!audiotrack->pkt_cnt) {
  2075. if (st->codec->codec_id == CODEC_ID_RA_288)
  2076. for (x=0; x<h/2; x++)
  2077. memcpy(audiotrack->buf+x*2*w+y*cfs,
  2078. data+x*cfs, cfs);
  2079. else
  2080. for (x=0; x<w/sps; x++)
  2081. memcpy(audiotrack->buf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), data+x*sps, sps);
  2082. if (++audiotrack->sub_packet_cnt >= h) {
  2083. audiotrack->sub_packet_cnt = 0;
  2084. audiotrack->pkt_cnt = h*w / a;
  2085. }
  2086. }
  2087. while (audiotrack->pkt_cnt) {
  2088. pkt = av_mallocz(sizeof(AVPacket));
  2089. av_new_packet(pkt, a);
  2090. memcpy(pkt->data, audiotrack->buf
  2091. + a * (h*w / a - audiotrack->pkt_cnt--), a);
  2092. pkt->pos = pos;
  2093. pkt->stream_index = matroska->tracks[track]->stream_index;
  2094. matroska_queue_packet(matroska, pkt);
  2095. }
  2096. } else {
  2097. int offset = 0;
  2098. if (st->codec->codec_id == CODEC_ID_TEXT
  2099. && ((MatroskaSubtitleTrack *)(matroska->tracks[track]))->ass) {
  2100. int i;
  2101. for (i=0; i<8 && data[slice_offset+offset]; offset++)
  2102. if (data[slice_offset+offset] == ',')
  2103. i++;
  2104. }
  2105. pkt = av_mallocz(sizeof(AVPacket));
  2106. /* XXX: prevent data copy... */
  2107. if (av_new_packet(pkt, slice_size-offset) < 0) {
  2108. res = AVERROR(ENOMEM);
  2109. n = laces-1;
  2110. break;
  2111. }
  2112. memcpy (pkt->data, data+slice_offset+offset, slice_size-offset);
  2113. if (n == 0)
  2114. pkt->flags = is_keyframe;
  2115. pkt->stream_index = matroska->tracks[track]->stream_index;
  2116. pkt->pts = timecode;
  2117. pkt->pos = pos;
  2118. pkt->duration = duration;
  2119. matroska_queue_packet(matroska, pkt);
  2120. }
  2121. if (timecode != AV_NOPTS_VALUE)
  2122. timecode = duration ? timecode + duration : AV_NOPTS_VALUE;
  2123. }
  2124. data += lace_size[n];
  2125. }
  2126. }
  2127. av_free(lace_size);
  2128. av_free(origdata);
  2129. return res;
  2130. }
  2131. static int
  2132. matroska_parse_blockgroup (MatroskaDemuxContext *matroska,
  2133. uint64_t cluster_time)
  2134. {
  2135. int res = 0;
  2136. uint32_t id;
  2137. int is_bframe = 0;
  2138. int is_keyframe = PKT_FLAG_KEY, last_num_packets = matroska->num_packets;
  2139. uint64_t duration = AV_NOPTS_VALUE;
  2140. uint8_t *data;
  2141. int size = 0;
  2142. int64_t pos = 0;
  2143. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing blockgroup...\n");
  2144. while (res == 0) {
  2145. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2146. res = AVERROR(EIO);
  2147. break;
  2148. } else if (matroska->level_up) {
  2149. matroska->level_up--;
  2150. break;
  2151. }
  2152. switch (id) {
  2153. /* one block inside the group. Note, block parsing is one
  2154. * of the harder things, so this code is a bit complicated.
  2155. * See http://www.matroska.org/ for documentation. */
  2156. case MATROSKA_ID_BLOCK: {
  2157. pos = url_ftell(&matroska->ctx->pb);
  2158. res = ebml_read_binary(matroska, &id, &data, &size);
  2159. break;
  2160. }
  2161. case MATROSKA_ID_BLOCKDURATION: {
  2162. if ((res = ebml_read_uint(matroska, &id, &duration)) < 0)
  2163. break;
  2164. break;
  2165. }
  2166. case MATROSKA_ID_BLOCKREFERENCE: {
  2167. int64_t num;
  2168. /* We've found a reference, so not even the first frame in
  2169. * the lace is a key frame. */
  2170. is_keyframe = 0;
  2171. if (last_num_packets != matroska->num_packets)
  2172. matroska->packets[last_num_packets]->flags = 0;
  2173. if ((res = ebml_read_sint(matroska, &id, &num)) < 0)
  2174. break;
  2175. if (num > 0)
  2176. is_bframe = 1;
  2177. break;
  2178. }
  2179. default:
  2180. av_log(matroska->ctx, AV_LOG_INFO,
  2181. "Unknown entry 0x%x in blockgroup data\n", id);
  2182. /* fall-through */
  2183. case EBML_ID_VOID:
  2184. res = ebml_read_skip(matroska);
  2185. break;
  2186. }
  2187. if (matroska->level_up) {
  2188. matroska->level_up--;
  2189. break;
  2190. }
  2191. }
  2192. if (res)
  2193. return res;
  2194. if (size > 0)
  2195. res = matroska_parse_block(matroska, data, size, pos, cluster_time,
  2196. duration, is_keyframe, is_bframe);
  2197. return res;
  2198. }
  2199. static int
  2200. matroska_parse_cluster (MatroskaDemuxContext *matroska)
  2201. {
  2202. int res = 0;
  2203. uint32_t id;
  2204. uint64_t cluster_time = 0;
  2205. uint8_t *data;
  2206. int64_t pos;
  2207. int size;
  2208. av_log(matroska->ctx, AV_LOG_DEBUG,
  2209. "parsing cluster at %"PRId64"\n", url_ftell(&matroska->ctx->pb));
  2210. while (res == 0) {
  2211. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2212. res = AVERROR(EIO);
  2213. break;
  2214. } else if (matroska->level_up) {
  2215. matroska->level_up--;
  2216. break;
  2217. }
  2218. switch (id) {
  2219. /* cluster timecode */
  2220. case MATROSKA_ID_CLUSTERTIMECODE: {
  2221. uint64_t num;
  2222. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  2223. break;
  2224. cluster_time = num;
  2225. break;
  2226. }
  2227. /* a group of blocks inside a cluster */
  2228. case MATROSKA_ID_BLOCKGROUP:
  2229. if ((res = ebml_read_master(matroska, &id)) < 0)
  2230. break;
  2231. res = matroska_parse_blockgroup(matroska, cluster_time);
  2232. break;
  2233. case MATROSKA_ID_SIMPLEBLOCK:
  2234. pos = url_ftell(&matroska->ctx->pb);
  2235. res = ebml_read_binary(matroska, &id, &data, &size);
  2236. if (res == 0)
  2237. res = matroska_parse_block(matroska, data, size, pos,
  2238. cluster_time, AV_NOPTS_VALUE,
  2239. -1, 0);
  2240. break;
  2241. default:
  2242. av_log(matroska->ctx, AV_LOG_INFO,
  2243. "Unknown entry 0x%x in cluster data\n", id);
  2244. /* fall-through */
  2245. case EBML_ID_VOID:
  2246. res = ebml_read_skip(matroska);
  2247. break;
  2248. }
  2249. if (matroska->level_up) {
  2250. matroska->level_up--;
  2251. break;
  2252. }
  2253. }
  2254. return res;
  2255. }
  2256. static int
  2257. matroska_read_packet (AVFormatContext *s,
  2258. AVPacket *pkt)
  2259. {
  2260. MatroskaDemuxContext *matroska = s->priv_data;
  2261. int res;
  2262. uint32_t id;
  2263. /* Read stream until we have a packet queued. */
  2264. while (matroska_deliver_packet(matroska, pkt)) {
  2265. /* Have we already reached the end? */
  2266. if (matroska->done)
  2267. return AVERROR(EIO);
  2268. res = 0;
  2269. while (res == 0) {
  2270. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2271. return AVERROR(EIO);
  2272. } else if (matroska->level_up) {
  2273. matroska->level_up--;
  2274. break;
  2275. }
  2276. switch (id) {
  2277. case MATROSKA_ID_CLUSTER:
  2278. if ((res = ebml_read_master(matroska, &id)) < 0)
  2279. break;
  2280. if ((res = matroska_parse_cluster(matroska)) == 0)
  2281. res = 1; /* Parsed one cluster, let's get out. */
  2282. break;
  2283. default:
  2284. case EBML_ID_VOID:
  2285. res = ebml_read_skip(matroska);
  2286. break;
  2287. }
  2288. if (matroska->level_up) {
  2289. matroska->level_up--;
  2290. break;
  2291. }
  2292. }
  2293. if (res == -1)
  2294. matroska->done = 1;
  2295. }
  2296. return 0;
  2297. }
  2298. static int
  2299. matroska_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp,
  2300. int flags)
  2301. {
  2302. MatroskaDemuxContext *matroska = s->priv_data;
  2303. AVStream *st = s->streams[stream_index];
  2304. int index;
  2305. /* find index entry */
  2306. index = av_index_search_timestamp(st, timestamp, flags);
  2307. if (index < 0)
  2308. return 0;
  2309. /* do the seek */
  2310. url_fseek(&s->pb, st->index_entries[index].pos, SEEK_SET);
  2311. matroska->skip_to_keyframe = !(flags & AVSEEK_FLAG_ANY);
  2312. matroska->skip_to_stream = st;
  2313. matroska->num_packets = 0;
  2314. matroska->peek_id = 0;
  2315. return 0;
  2316. }
  2317. static int
  2318. matroska_read_close (AVFormatContext *s)
  2319. {
  2320. MatroskaDemuxContext *matroska = s->priv_data;
  2321. int n = 0;
  2322. av_free(matroska->writing_app);
  2323. av_free(matroska->muxing_app);
  2324. av_free(matroska->index);
  2325. if (matroska->packets != NULL) {
  2326. for (n = 0; n < matroska->num_packets; n++) {
  2327. av_free_packet(matroska->packets[n]);
  2328. av_free(matroska->packets[n]);
  2329. }
  2330. av_free(matroska->packets);
  2331. }
  2332. for (n = 0; n < matroska->num_tracks; n++) {
  2333. MatroskaTrack *track = matroska->tracks[n];
  2334. av_free(track->codec_id);
  2335. av_free(track->codec_name);
  2336. av_free(track->codec_priv);
  2337. av_free(track->name);
  2338. if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
  2339. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  2340. av_free(audiotrack->buf);
  2341. }
  2342. av_free(track);
  2343. }
  2344. return 0;
  2345. }
  2346. AVInputFormat matroska_demuxer = {
  2347. "matroska",
  2348. "Matroska file format",
  2349. sizeof(MatroskaDemuxContext),
  2350. matroska_probe,
  2351. matroska_read_header,
  2352. matroska_read_packet,
  2353. matroska_read_close,
  2354. matroska_read_seek,
  2355. };