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.

2731 lines
87KB

  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 matroska.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. uint32_t stream_index;
  41. char *name;
  42. char *language;
  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. //..
  81. } MatroskaSubtitleTrack;
  82. #define MAX_TRACK_SIZE (FFMAX(FFMAX(sizeof(MatroskaVideoTrack), \
  83. sizeof(MatroskaAudioTrack)), \
  84. sizeof(MatroskaSubtitleTrack)))
  85. typedef struct MatroskaLevel {
  86. uint64_t start;
  87. uint64_t length;
  88. } MatroskaLevel;
  89. typedef struct MatroskaDemuxIndex {
  90. uint64_t pos; /* of the corresponding *cluster*! */
  91. uint16_t track; /* reference to 'num' */
  92. uint64_t time; /* in nanoseconds */
  93. } MatroskaDemuxIndex;
  94. typedef struct MatroskaDemuxContext {
  95. AVFormatContext *ctx;
  96. /* ebml stuff */
  97. int num_levels;
  98. MatroskaLevel levels[EBML_MAX_DEPTH];
  99. int level_up;
  100. /* matroska stuff */
  101. char *writing_app;
  102. char *muxing_app;
  103. int64_t created;
  104. /* timescale in the file */
  105. int64_t time_scale;
  106. /* num_streams is the number of streams that av_new_stream() was called
  107. * for ( = that are available to the calling program). */
  108. int num_tracks;
  109. int num_streams;
  110. MatroskaTrack *tracks[MAX_STREAMS];
  111. /* cache for ID peeking */
  112. uint32_t peek_id;
  113. /* byte position of the segment inside the stream */
  114. offset_t segment_start;
  115. /* The packet queue. */
  116. AVPacket **packets;
  117. int num_packets;
  118. /* have we already parse metadata/cues/clusters? */
  119. int metadata_parsed;
  120. int index_parsed;
  121. int done;
  122. /* The index for seeking. */
  123. int num_indexes;
  124. MatroskaDemuxIndex *index;
  125. /* What to skip before effectively reading a packet. */
  126. int skip_to_keyframe;
  127. AVStream *skip_to_stream;
  128. } MatroskaDemuxContext;
  129. /*
  130. * The first few functions handle EBML file parsing. The rest
  131. * is the document interpretation. Matroska really just is a
  132. * EBML file.
  133. */
  134. /*
  135. * Return: the amount of levels in the hierarchy that the
  136. * current element lies higher than the previous one.
  137. * The opposite isn't done - that's auto-done using master
  138. * element reading.
  139. */
  140. static int
  141. ebml_read_element_level_up (MatroskaDemuxContext *matroska)
  142. {
  143. ByteIOContext *pb = &matroska->ctx->pb;
  144. offset_t pos = url_ftell(pb);
  145. int num = 0;
  146. while (matroska->num_levels > 0) {
  147. MatroskaLevel *level = &matroska->levels[matroska->num_levels - 1];
  148. if (pos >= level->start + level->length) {
  149. matroska->num_levels--;
  150. num++;
  151. } else {
  152. break;
  153. }
  154. }
  155. return num;
  156. }
  157. /*
  158. * Read: an "EBML number", which is defined as a variable-length
  159. * array of bytes. The first byte indicates the length by giving a
  160. * number of 0-bits followed by a one. The position of the first
  161. * "one" bit inside the first byte indicates the length of this
  162. * number.
  163. * Returns: num. of bytes read. < 0 on error.
  164. */
  165. static int
  166. ebml_read_num (MatroskaDemuxContext *matroska,
  167. int max_size,
  168. uint64_t *number)
  169. {
  170. ByteIOContext *pb = &matroska->ctx->pb;
  171. int len_mask = 0x80, read = 1, n = 1;
  172. int64_t total = 0;
  173. /* the first byte tells us the length in bytes - get_byte() can normally
  174. * return 0, but since that's not a valid first ebmlID byte, we can
  175. * use it safely here to catch EOS. */
  176. if (!(total = get_byte(pb))) {
  177. /* we might encounter EOS here */
  178. if (!url_feof(pb)) {
  179. offset_t pos = url_ftell(pb);
  180. av_log(matroska->ctx, AV_LOG_ERROR,
  181. "Read error at pos. %"PRIu64" (0x%"PRIx64")\n",
  182. pos, pos);
  183. }
  184. return AVERROR_IO; /* EOS or actual I/O error */
  185. }
  186. /* get the length of the EBML number */
  187. while (read <= max_size && !(total & len_mask)) {
  188. read++;
  189. len_mask >>= 1;
  190. }
  191. if (read > max_size) {
  192. offset_t pos = url_ftell(pb) - 1;
  193. av_log(matroska->ctx, AV_LOG_ERROR,
  194. "Invalid EBML number size tag 0x%02x at pos %"PRIu64" (0x%"PRIx64")\n",
  195. (uint8_t) total, pos, pos);
  196. return AVERROR_INVALIDDATA;
  197. }
  198. /* read out length */
  199. total &= ~len_mask;
  200. while (n++ < read)
  201. total = (total << 8) | get_byte(pb);
  202. *number = total;
  203. return read;
  204. }
  205. /*
  206. * Read: the element content data ID.
  207. * Return: the number of bytes read or < 0 on error.
  208. */
  209. static int
  210. ebml_read_element_id (MatroskaDemuxContext *matroska,
  211. uint32_t *id,
  212. int *level_up)
  213. {
  214. int read;
  215. uint64_t total;
  216. /* if we re-call this, use our cached ID */
  217. if (matroska->peek_id != 0) {
  218. if (level_up)
  219. *level_up = 0;
  220. *id = matroska->peek_id;
  221. return 0;
  222. }
  223. /* read out the "EBML number", include tag in ID */
  224. if ((read = ebml_read_num(matroska, 4, &total)) < 0)
  225. return read;
  226. *id = matroska->peek_id = total | (1 << (read * 7));
  227. /* level tracking */
  228. if (level_up)
  229. *level_up = ebml_read_element_level_up(matroska);
  230. return read;
  231. }
  232. /*
  233. * Read: element content length.
  234. * Return: the number of bytes read or < 0 on error.
  235. */
  236. static int
  237. ebml_read_element_length (MatroskaDemuxContext *matroska,
  238. uint64_t *length)
  239. {
  240. /* clear cache since we're now beyond that data point */
  241. matroska->peek_id = 0;
  242. /* read out the "EBML number", include tag in ID */
  243. return ebml_read_num(matroska, 8, length);
  244. }
  245. /*
  246. * Return: the ID of the next element, or 0 on error.
  247. * Level_up contains the amount of levels that this
  248. * next element lies higher than the previous one.
  249. */
  250. static uint32_t
  251. ebml_peek_id (MatroskaDemuxContext *matroska,
  252. int *level_up)
  253. {
  254. uint32_t id;
  255. assert(level_up != NULL);
  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_NOMEM;
  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_IO;
  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_NOTSUPP;
  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_NOMEM;
  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_IO;
  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_IO;
  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 ((p->buf[0] << 24 | p->buf[1] << 16 |
  715. p->buf[2] << 8 | p->buf[3]) != EBML_ID_HEADER)
  716. return 0;
  717. /* length of header */
  718. total = p->buf[4];
  719. while (size <= 8 && !(total & len_mask)) {
  720. size++;
  721. len_mask >>= 1;
  722. }
  723. if (size > 8)
  724. return 0;
  725. total &= (len_mask - 1);
  726. while (n < size)
  727. total = (total << 8) | p->buf[4 + n++];
  728. /* does the probe data contain the whole header? */
  729. if (p->buf_size < 4 + size + total)
  730. return 0;
  731. /* the header must contain the document type 'matroska'. For now,
  732. * we don't parse the whole header but simply check for the
  733. * availability of that array of characters inside the header.
  734. * Not fully fool-proof, but good enough. */
  735. for (n = 4 + size; n <= 4 + size + total - sizeof(probe_data); n++)
  736. if (!memcmp (&p->buf[n], probe_data, sizeof(probe_data)))
  737. return AVPROBE_SCORE_MAX;
  738. return 0;
  739. }
  740. /*
  741. * From here on, it's all XML-style DTD stuff... Needs no comments.
  742. */
  743. static int
  744. matroska_parse_info (MatroskaDemuxContext *matroska)
  745. {
  746. int res = 0;
  747. uint32_t id;
  748. av_log(matroska->ctx, AV_LOG_DEBUG, "Parsing info...\n");
  749. while (res == 0) {
  750. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  751. res = AVERROR_IO;
  752. break;
  753. } else if (matroska->level_up) {
  754. matroska->level_up--;
  755. break;
  756. }
  757. switch (id) {
  758. /* cluster timecode */
  759. case MATROSKA_ID_TIMECODESCALE: {
  760. uint64_t num;
  761. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  762. break;
  763. matroska->time_scale = num;
  764. break;
  765. }
  766. case MATROSKA_ID_DURATION: {
  767. double num;
  768. if ((res = ebml_read_float(matroska, &id, &num)) < 0)
  769. break;
  770. matroska->ctx->duration = num * matroska->time_scale * 1000 / AV_TIME_BASE;
  771. break;
  772. }
  773. case MATROSKA_ID_TITLE: {
  774. char *text;
  775. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  776. break;
  777. strncpy(matroska->ctx->title, text,
  778. sizeof(matroska->ctx->title)-1);
  779. av_free(text);
  780. break;
  781. }
  782. case MATROSKA_ID_WRITINGAPP: {
  783. char *text;
  784. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  785. break;
  786. matroska->writing_app = text;
  787. break;
  788. }
  789. case MATROSKA_ID_MUXINGAPP: {
  790. char *text;
  791. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  792. break;
  793. matroska->muxing_app = text;
  794. break;
  795. }
  796. case MATROSKA_ID_DATEUTC: {
  797. int64_t time;
  798. if ((res = ebml_read_date(matroska, &id, &time)) < 0)
  799. break;
  800. matroska->created = time;
  801. break;
  802. }
  803. default:
  804. av_log(matroska->ctx, AV_LOG_INFO,
  805. "Unknown entry 0x%x in info header\n", id);
  806. /* fall-through */
  807. case EBML_ID_VOID:
  808. res = ebml_read_skip(matroska);
  809. break;
  810. }
  811. if (matroska->level_up) {
  812. matroska->level_up--;
  813. break;
  814. }
  815. }
  816. return res;
  817. }
  818. static int
  819. matroska_add_stream (MatroskaDemuxContext *matroska)
  820. {
  821. int res = 0;
  822. uint32_t id;
  823. MatroskaTrack *track;
  824. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing track, adding stream..,\n");
  825. /* Allocate a generic track. As soon as we know its type we'll realloc. */
  826. track = av_mallocz(MAX_TRACK_SIZE);
  827. matroska->num_tracks++;
  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_IO;
  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_IO;
  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/matroska->time_scale;
  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. track->default_duration = 1000000000/(matroska->time_scale*num);
  924. break;
  925. }
  926. /* width of the size to display the video at */
  927. case MATROSKA_ID_VIDEODISPLAYWIDTH: {
  928. uint64_t num;
  929. if ((res = ebml_read_uint(matroska, &id,
  930. &num)) < 0)
  931. break;
  932. videotrack->display_width = num;
  933. break;
  934. }
  935. /* height of the size to display the video at */
  936. case MATROSKA_ID_VIDEODISPLAYHEIGHT: {
  937. uint64_t num;
  938. if ((res = ebml_read_uint(matroska, &id,
  939. &num)) < 0)
  940. break;
  941. videotrack->display_height = num;
  942. break;
  943. }
  944. /* width of the video in the file */
  945. case MATROSKA_ID_VIDEOPIXELWIDTH: {
  946. uint64_t num;
  947. if ((res = ebml_read_uint(matroska, &id,
  948. &num)) < 0)
  949. break;
  950. videotrack->pixel_width = num;
  951. break;
  952. }
  953. /* height of the video in the file */
  954. case MATROSKA_ID_VIDEOPIXELHEIGHT: {
  955. uint64_t num;
  956. if ((res = ebml_read_uint(matroska, &id,
  957. &num)) < 0)
  958. break;
  959. videotrack->pixel_height = num;
  960. break;
  961. }
  962. /* whether the video is interlaced */
  963. case MATROSKA_ID_VIDEOFLAGINTERLACED: {
  964. uint64_t num;
  965. if ((res = ebml_read_uint(matroska, &id,
  966. &num)) < 0)
  967. break;
  968. if (num)
  969. track->flags |=
  970. MATROSKA_VIDEOTRACK_INTERLACED;
  971. else
  972. track->flags &=
  973. ~MATROSKA_VIDEOTRACK_INTERLACED;
  974. break;
  975. }
  976. /* stereo mode (whether the video has two streams,
  977. * where one is for the left eye and the other for
  978. * the right eye, which creates a 3D-like
  979. * effect) */
  980. case MATROSKA_ID_VIDEOSTEREOMODE: {
  981. uint64_t num;
  982. if ((res = ebml_read_uint(matroska, &id,
  983. &num)) < 0)
  984. break;
  985. if (num != MATROSKA_EYE_MODE_MONO &&
  986. num != MATROSKA_EYE_MODE_LEFT &&
  987. num != MATROSKA_EYE_MODE_RIGHT &&
  988. num != MATROSKA_EYE_MODE_BOTH) {
  989. av_log(matroska->ctx, AV_LOG_INFO,
  990. "Ignoring unknown eye mode 0x%x\n",
  991. (uint32_t) num);
  992. break;
  993. }
  994. videotrack->eye_mode = num;
  995. break;
  996. }
  997. /* aspect ratio behaviour */
  998. case MATROSKA_ID_VIDEOASPECTRATIO: {
  999. uint64_t num;
  1000. if ((res = ebml_read_uint(matroska, &id,
  1001. &num)) < 0)
  1002. break;
  1003. if (num != MATROSKA_ASPECT_RATIO_MODE_FREE &&
  1004. num != MATROSKA_ASPECT_RATIO_MODE_KEEP &&
  1005. num != MATROSKA_ASPECT_RATIO_MODE_FIXED) {
  1006. av_log(matroska->ctx, AV_LOG_INFO,
  1007. "Ignoring unknown aspect ratio 0x%x\n",
  1008. (uint32_t) num);
  1009. break;
  1010. }
  1011. videotrack->ar_mode = num;
  1012. break;
  1013. }
  1014. /* colourspace (only matters for raw video)
  1015. * fourcc */
  1016. case MATROSKA_ID_VIDEOCOLOURSPACE: {
  1017. uint64_t num;
  1018. if ((res = ebml_read_uint(matroska, &id,
  1019. &num)) < 0)
  1020. break;
  1021. videotrack->fourcc = num;
  1022. break;
  1023. }
  1024. default:
  1025. av_log(matroska->ctx, AV_LOG_INFO,
  1026. "Unknown video track header entry "
  1027. "0x%x - ignoring\n", id);
  1028. /* pass-through */
  1029. case EBML_ID_VOID:
  1030. res = ebml_read_skip(matroska);
  1031. break;
  1032. }
  1033. if (matroska->level_up) {
  1034. matroska->level_up--;
  1035. break;
  1036. }
  1037. }
  1038. break;
  1039. }
  1040. /* tracktype specific stuff for audio */
  1041. case MATROSKA_ID_TRACKAUDIO: {
  1042. MatroskaAudioTrack *audiotrack;
  1043. if (!track->type)
  1044. track->type = MATROSKA_TRACK_TYPE_AUDIO;
  1045. if (track->type != MATROSKA_TRACK_TYPE_AUDIO) {
  1046. av_log(matroska->ctx, AV_LOG_INFO,
  1047. "audio data in non-audio track - ignoring\n");
  1048. res = AVERROR_INVALIDDATA;
  1049. break;
  1050. } else if ((res = ebml_read_master(matroska, &id)) < 0)
  1051. break;
  1052. audiotrack = (MatroskaAudioTrack *)track;
  1053. audiotrack->channels = 1;
  1054. audiotrack->samplerate = 8000;
  1055. while (res == 0) {
  1056. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1057. res = AVERROR_IO;
  1058. break;
  1059. } else if (matroska->level_up > 0) {
  1060. matroska->level_up--;
  1061. break;
  1062. }
  1063. switch (id) {
  1064. /* samplerate */
  1065. case MATROSKA_ID_AUDIOSAMPLINGFREQ: {
  1066. double num;
  1067. if ((res = ebml_read_float(matroska, &id,
  1068. &num)) < 0)
  1069. break;
  1070. audiotrack->internal_samplerate =
  1071. audiotrack->samplerate = num;
  1072. break;
  1073. }
  1074. case MATROSKA_ID_AUDIOOUTSAMPLINGFREQ: {
  1075. double num;
  1076. if ((res = ebml_read_float(matroska, &id,
  1077. &num)) < 0)
  1078. break;
  1079. audiotrack->samplerate = num;
  1080. break;
  1081. }
  1082. /* bitdepth */
  1083. case MATROSKA_ID_AUDIOBITDEPTH: {
  1084. uint64_t num;
  1085. if ((res = ebml_read_uint(matroska, &id,
  1086. &num)) < 0)
  1087. break;
  1088. audiotrack->bitdepth = num;
  1089. break;
  1090. }
  1091. /* channels */
  1092. case MATROSKA_ID_AUDIOCHANNELS: {
  1093. uint64_t num;
  1094. if ((res = ebml_read_uint(matroska, &id,
  1095. &num)) < 0)
  1096. break;
  1097. audiotrack->channels = num;
  1098. break;
  1099. }
  1100. default:
  1101. av_log(matroska->ctx, AV_LOG_INFO,
  1102. "Unknown audio track header entry "
  1103. "0x%x - ignoring\n", id);
  1104. /* pass-through */
  1105. case EBML_ID_VOID:
  1106. res = ebml_read_skip(matroska);
  1107. break;
  1108. }
  1109. if (matroska->level_up) {
  1110. matroska->level_up--;
  1111. break;
  1112. }
  1113. }
  1114. break;
  1115. }
  1116. /* codec identifier */
  1117. case MATROSKA_ID_CODECID: {
  1118. char *text;
  1119. if ((res = ebml_read_ascii(matroska, &id, &text)) < 0)
  1120. break;
  1121. track->codec_id = text;
  1122. break;
  1123. }
  1124. /* codec private data */
  1125. case MATROSKA_ID_CODECPRIVATE: {
  1126. uint8_t *data;
  1127. int size;
  1128. if ((res = ebml_read_binary(matroska, &id, &data, &size) < 0))
  1129. break;
  1130. track->codec_priv = data;
  1131. track->codec_priv_size = size;
  1132. break;
  1133. }
  1134. /* name of the codec */
  1135. case MATROSKA_ID_CODECNAME: {
  1136. char *text;
  1137. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  1138. break;
  1139. track->codec_name = text;
  1140. break;
  1141. }
  1142. /* name of this track */
  1143. case MATROSKA_ID_TRACKNAME: {
  1144. char *text;
  1145. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  1146. break;
  1147. track->name = text;
  1148. break;
  1149. }
  1150. /* language (matters for audio/subtitles, mostly) */
  1151. case MATROSKA_ID_TRACKLANGUAGE: {
  1152. char *text;
  1153. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  1154. break;
  1155. track->language = text;
  1156. break;
  1157. }
  1158. /* whether this is actually used */
  1159. case MATROSKA_ID_TRACKFLAGENABLED: {
  1160. uint64_t num;
  1161. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1162. break;
  1163. if (num)
  1164. track->flags |= MATROSKA_TRACK_ENABLED;
  1165. else
  1166. track->flags &= ~MATROSKA_TRACK_ENABLED;
  1167. break;
  1168. }
  1169. /* whether it's the default for this track type */
  1170. case MATROSKA_ID_TRACKFLAGDEFAULT: {
  1171. uint64_t num;
  1172. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1173. break;
  1174. if (num)
  1175. track->flags |= MATROSKA_TRACK_DEFAULT;
  1176. else
  1177. track->flags &= ~MATROSKA_TRACK_DEFAULT;
  1178. break;
  1179. }
  1180. /* lacing (like MPEG, where blocks don't end/start on frame
  1181. * boundaries) */
  1182. case MATROSKA_ID_TRACKFLAGLACING: {
  1183. uint64_t num;
  1184. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1185. break;
  1186. if (num)
  1187. track->flags |= MATROSKA_TRACK_LACING;
  1188. else
  1189. track->flags &= ~MATROSKA_TRACK_LACING;
  1190. break;
  1191. }
  1192. /* default length (in time) of one data block in this track */
  1193. case MATROSKA_ID_TRACKDEFAULTDURATION: {
  1194. uint64_t num;
  1195. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1196. break;
  1197. track->default_duration = num / matroska->time_scale;
  1198. break;
  1199. }
  1200. default:
  1201. av_log(matroska->ctx, AV_LOG_INFO,
  1202. "Unknown track header entry 0x%x - ignoring\n", id);
  1203. /* pass-through */
  1204. case EBML_ID_VOID:
  1205. /* we ignore these because they're nothing useful. */
  1206. case MATROSKA_ID_CODECINFOURL:
  1207. case MATROSKA_ID_CODECDOWNLOADURL:
  1208. case MATROSKA_ID_TRACKMINCACHE:
  1209. case MATROSKA_ID_TRACKMAXCACHE:
  1210. res = ebml_read_skip(matroska);
  1211. break;
  1212. }
  1213. if (matroska->level_up) {
  1214. matroska->level_up--;
  1215. break;
  1216. }
  1217. }
  1218. return res;
  1219. }
  1220. static int
  1221. matroska_parse_tracks (MatroskaDemuxContext *matroska)
  1222. {
  1223. int res = 0;
  1224. uint32_t id;
  1225. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing tracks...\n");
  1226. while (res == 0) {
  1227. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1228. res = AVERROR_IO;
  1229. break;
  1230. } else if (matroska->level_up) {
  1231. matroska->level_up--;
  1232. break;
  1233. }
  1234. switch (id) {
  1235. /* one track within the "all-tracks" header */
  1236. case MATROSKA_ID_TRACKENTRY:
  1237. res = matroska_add_stream(matroska);
  1238. break;
  1239. default:
  1240. av_log(matroska->ctx, AV_LOG_INFO,
  1241. "Unknown entry 0x%x in track header\n", id);
  1242. /* fall-through */
  1243. case EBML_ID_VOID:
  1244. res = ebml_read_skip(matroska);
  1245. break;
  1246. }
  1247. if (matroska->level_up) {
  1248. matroska->level_up--;
  1249. break;
  1250. }
  1251. }
  1252. return res;
  1253. }
  1254. static int
  1255. matroska_parse_index (MatroskaDemuxContext *matroska)
  1256. {
  1257. int res = 0;
  1258. uint32_t id;
  1259. MatroskaDemuxIndex idx;
  1260. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing index...\n");
  1261. while (res == 0) {
  1262. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1263. res = AVERROR_IO;
  1264. break;
  1265. } else if (matroska->level_up) {
  1266. matroska->level_up--;
  1267. break;
  1268. }
  1269. switch (id) {
  1270. /* one single index entry ('point') */
  1271. case MATROSKA_ID_POINTENTRY:
  1272. if ((res = ebml_read_master(matroska, &id)) < 0)
  1273. break;
  1274. /* in the end, we hope to fill one entry with a
  1275. * timestamp, a file position and a tracknum */
  1276. idx.pos = (uint64_t) -1;
  1277. idx.time = (uint64_t) -1;
  1278. idx.track = (uint16_t) -1;
  1279. while (res == 0) {
  1280. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1281. res = AVERROR_IO;
  1282. break;
  1283. } else if (matroska->level_up) {
  1284. matroska->level_up--;
  1285. break;
  1286. }
  1287. switch (id) {
  1288. /* one single index entry ('point') */
  1289. case MATROSKA_ID_CUETIME: {
  1290. uint64_t time;
  1291. if ((res = ebml_read_uint(matroska, &id,
  1292. &time)) < 0)
  1293. break;
  1294. idx.time = time * matroska->time_scale;
  1295. break;
  1296. }
  1297. /* position in the file + track to which it
  1298. * belongs */
  1299. case MATROSKA_ID_CUETRACKPOSITION:
  1300. if ((res = ebml_read_master(matroska, &id)) < 0)
  1301. break;
  1302. while (res == 0) {
  1303. if (!(id = ebml_peek_id (matroska,
  1304. &matroska->level_up))) {
  1305. res = AVERROR_IO;
  1306. break;
  1307. } else if (matroska->level_up) {
  1308. matroska->level_up--;
  1309. break;
  1310. }
  1311. switch (id) {
  1312. /* track number */
  1313. case MATROSKA_ID_CUETRACK: {
  1314. uint64_t num;
  1315. if ((res = ebml_read_uint(matroska,
  1316. &id, &num)) < 0)
  1317. break;
  1318. idx.track = num;
  1319. break;
  1320. }
  1321. /* position in file */
  1322. case MATROSKA_ID_CUECLUSTERPOSITION: {
  1323. uint64_t num;
  1324. if ((res = ebml_read_uint(matroska,
  1325. &id, &num)) < 0)
  1326. break;
  1327. idx.pos = num+matroska->segment_start;
  1328. break;
  1329. }
  1330. default:
  1331. av_log(matroska->ctx, AV_LOG_INFO,
  1332. "Unknown entry 0x%x in "
  1333. "CuesTrackPositions\n", id);
  1334. /* fall-through */
  1335. case EBML_ID_VOID:
  1336. res = ebml_read_skip(matroska);
  1337. break;
  1338. }
  1339. if (matroska->level_up) {
  1340. matroska->level_up--;
  1341. break;
  1342. }
  1343. }
  1344. break;
  1345. default:
  1346. av_log(matroska->ctx, AV_LOG_INFO,
  1347. "Unknown entry 0x%x in cuespoint "
  1348. "index\n", id);
  1349. /* fall-through */
  1350. case EBML_ID_VOID:
  1351. res = ebml_read_skip(matroska);
  1352. break;
  1353. }
  1354. if (matroska->level_up) {
  1355. matroska->level_up--;
  1356. break;
  1357. }
  1358. }
  1359. /* so let's see if we got what we wanted */
  1360. if (idx.pos != (uint64_t) -1 &&
  1361. idx.time != (uint64_t) -1 &&
  1362. idx.track != (uint16_t) -1) {
  1363. if (matroska->num_indexes % 32 == 0) {
  1364. /* re-allocate bigger index */
  1365. matroska->index =
  1366. av_realloc(matroska->index,
  1367. (matroska->num_indexes + 32) *
  1368. sizeof(MatroskaDemuxIndex));
  1369. }
  1370. matroska->index[matroska->num_indexes] = idx;
  1371. matroska->num_indexes++;
  1372. }
  1373. break;
  1374. default:
  1375. av_log(matroska->ctx, AV_LOG_INFO,
  1376. "Unknown entry 0x%x in cues header\n", id);
  1377. /* fall-through */
  1378. case EBML_ID_VOID:
  1379. res = ebml_read_skip(matroska);
  1380. break;
  1381. }
  1382. if (matroska->level_up) {
  1383. matroska->level_up--;
  1384. break;
  1385. }
  1386. }
  1387. return res;
  1388. }
  1389. static int
  1390. matroska_parse_metadata (MatroskaDemuxContext *matroska)
  1391. {
  1392. int res = 0;
  1393. uint32_t id;
  1394. while (res == 0) {
  1395. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1396. res = AVERROR_IO;
  1397. break;
  1398. } else if (matroska->level_up) {
  1399. matroska->level_up--;
  1400. break;
  1401. }
  1402. switch (id) {
  1403. /* Hm, this is unsupported... */
  1404. default:
  1405. av_log(matroska->ctx, AV_LOG_INFO,
  1406. "Unknown entry 0x%x in metadata header\n", id);
  1407. /* fall-through */
  1408. case EBML_ID_VOID:
  1409. res = ebml_read_skip(matroska);
  1410. break;
  1411. }
  1412. if (matroska->level_up) {
  1413. matroska->level_up--;
  1414. break;
  1415. }
  1416. }
  1417. return res;
  1418. }
  1419. static int
  1420. matroska_parse_seekhead (MatroskaDemuxContext *matroska)
  1421. {
  1422. int res = 0;
  1423. uint32_t id;
  1424. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing seekhead...\n");
  1425. while (res == 0) {
  1426. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1427. res = AVERROR_IO;
  1428. break;
  1429. } else if (matroska->level_up) {
  1430. matroska->level_up--;
  1431. break;
  1432. }
  1433. switch (id) {
  1434. case MATROSKA_ID_SEEKENTRY: {
  1435. uint32_t seek_id = 0, peek_id_cache = 0;
  1436. uint64_t seek_pos = (uint64_t) -1, t;
  1437. if ((res = ebml_read_master(matroska, &id)) < 0)
  1438. break;
  1439. while (res == 0) {
  1440. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1441. res = AVERROR_IO;
  1442. break;
  1443. } else if (matroska->level_up) {
  1444. matroska->level_up--;
  1445. break;
  1446. }
  1447. switch (id) {
  1448. case MATROSKA_ID_SEEKID:
  1449. res = ebml_read_uint(matroska, &id, &t);
  1450. seek_id = t;
  1451. break;
  1452. case MATROSKA_ID_SEEKPOSITION:
  1453. res = ebml_read_uint(matroska, &id, &seek_pos);
  1454. break;
  1455. default:
  1456. av_log(matroska->ctx, AV_LOG_INFO,
  1457. "Unknown seekhead ID 0x%x\n", id);
  1458. /* fall-through */
  1459. case EBML_ID_VOID:
  1460. res = ebml_read_skip(matroska);
  1461. break;
  1462. }
  1463. if (matroska->level_up) {
  1464. matroska->level_up--;
  1465. break;
  1466. }
  1467. }
  1468. if (!seek_id || seek_pos == (uint64_t) -1) {
  1469. av_log(matroska->ctx, AV_LOG_INFO,
  1470. "Incomplete seekhead entry (0x%x/%"PRIu64")\n",
  1471. seek_id, seek_pos);
  1472. break;
  1473. }
  1474. switch (seek_id) {
  1475. case MATROSKA_ID_CUES:
  1476. case MATROSKA_ID_TAGS: {
  1477. uint32_t level_up = matroska->level_up;
  1478. offset_t before_pos;
  1479. uint64_t length;
  1480. MatroskaLevel level;
  1481. /* remember the peeked ID and the current position */
  1482. peek_id_cache = matroska->peek_id;
  1483. before_pos = url_ftell(&matroska->ctx->pb);
  1484. /* seek */
  1485. if ((res = ebml_read_seek(matroska, seek_pos +
  1486. matroska->segment_start)) < 0)
  1487. return res;
  1488. /* we don't want to lose our seekhead level, so we add
  1489. * a dummy. This is a crude hack. */
  1490. if (matroska->num_levels == EBML_MAX_DEPTH) {
  1491. av_log(matroska->ctx, AV_LOG_INFO,
  1492. "Max EBML element depth (%d) reached, "
  1493. "cannot parse further.\n", EBML_MAX_DEPTH);
  1494. return AVERROR_UNKNOWN;
  1495. }
  1496. level.start = 0;
  1497. level.length = (uint64_t)-1;
  1498. matroska->levels[matroska->num_levels] = level;
  1499. matroska->num_levels++;
  1500. /* check ID */
  1501. if (!(id = ebml_peek_id (matroska,
  1502. &matroska->level_up)))
  1503. goto finish;
  1504. if (id != seek_id) {
  1505. av_log(matroska->ctx, AV_LOG_INFO,
  1506. "We looked for ID=0x%x but got "
  1507. "ID=0x%x (pos=%"PRIu64")",
  1508. seek_id, id, seek_pos +
  1509. matroska->segment_start);
  1510. goto finish;
  1511. }
  1512. /* read master + parse */
  1513. if ((res = ebml_read_master(matroska, &id)) < 0)
  1514. goto finish;
  1515. switch (id) {
  1516. case MATROSKA_ID_CUES:
  1517. if (!(res = matroska_parse_index(matroska)) ||
  1518. url_feof(&matroska->ctx->pb)) {
  1519. matroska->index_parsed = 1;
  1520. res = 0;
  1521. }
  1522. break;
  1523. case MATROSKA_ID_TAGS:
  1524. if (!(res = matroska_parse_metadata(matroska)) ||
  1525. url_feof(&matroska->ctx->pb)) {
  1526. matroska->metadata_parsed = 1;
  1527. res = 0;
  1528. }
  1529. break;
  1530. }
  1531. finish:
  1532. /* remove dummy level */
  1533. while (matroska->num_levels) {
  1534. matroska->num_levels--;
  1535. length =
  1536. matroska->levels[matroska->num_levels].length;
  1537. if (length == (uint64_t)-1)
  1538. break;
  1539. }
  1540. /* seek back */
  1541. if ((res = ebml_read_seek(matroska, before_pos)) < 0)
  1542. return res;
  1543. matroska->peek_id = peek_id_cache;
  1544. matroska->level_up = level_up;
  1545. break;
  1546. }
  1547. default:
  1548. av_log(matroska->ctx, AV_LOG_INFO,
  1549. "Ignoring seekhead entry for ID=0x%x\n",
  1550. seek_id);
  1551. break;
  1552. }
  1553. break;
  1554. }
  1555. default:
  1556. av_log(matroska->ctx, AV_LOG_INFO,
  1557. "Unknown seekhead ID 0x%x\n", id);
  1558. /* fall-through */
  1559. case EBML_ID_VOID:
  1560. res = ebml_read_skip(matroska);
  1561. break;
  1562. }
  1563. if (matroska->level_up) {
  1564. matroska->level_up--;
  1565. break;
  1566. }
  1567. }
  1568. return res;
  1569. }
  1570. #define ARRAY_SIZE(x) (sizeof(x)/sizeof(*x))
  1571. static int
  1572. matroska_aac_profile (char *codec_id)
  1573. {
  1574. static const char *aac_profiles[] = {
  1575. "MAIN", "LC", "SSR"
  1576. };
  1577. int profile;
  1578. for (profile=0; profile<ARRAY_SIZE(aac_profiles); profile++)
  1579. if (strstr(codec_id, aac_profiles[profile]))
  1580. break;
  1581. return profile + 1;
  1582. }
  1583. static int
  1584. matroska_aac_sri (int samplerate)
  1585. {
  1586. static const int aac_sample_rates[] = {
  1587. 96000, 88200, 64000, 48000, 44100, 32000,
  1588. 24000, 22050, 16000, 12000, 11025, 8000,
  1589. };
  1590. int sri;
  1591. for (sri=0; sri<ARRAY_SIZE(aac_sample_rates); sri++)
  1592. if (aac_sample_rates[sri] == samplerate)
  1593. break;
  1594. return sri;
  1595. }
  1596. static int
  1597. matroska_read_header (AVFormatContext *s,
  1598. AVFormatParameters *ap)
  1599. {
  1600. MatroskaDemuxContext *matroska = s->priv_data;
  1601. char *doctype;
  1602. int version, last_level, res = 0;
  1603. uint32_t id;
  1604. matroska->ctx = s;
  1605. /* First read the EBML header. */
  1606. doctype = NULL;
  1607. if ((res = ebml_read_header(matroska, &doctype, &version)) < 0)
  1608. return res;
  1609. if ((doctype == NULL) || strcmp(doctype, "matroska")) {
  1610. av_log(matroska->ctx, AV_LOG_ERROR,
  1611. "Wrong EBML doctype ('%s' != 'matroska').\n",
  1612. doctype ? doctype : "(none)");
  1613. if (doctype)
  1614. av_free(doctype);
  1615. return AVERROR_NOFMT;
  1616. }
  1617. av_free(doctype);
  1618. if (version > 2) {
  1619. av_log(matroska->ctx, AV_LOG_ERROR,
  1620. "Matroska demuxer version 2 too old for file version %d\n",
  1621. version);
  1622. return AVERROR_NOFMT;
  1623. }
  1624. /* The next thing is a segment. */
  1625. while (1) {
  1626. if (!(id = ebml_peek_id(matroska, &last_level)))
  1627. return AVERROR_IO;
  1628. if (id == MATROSKA_ID_SEGMENT)
  1629. break;
  1630. /* oi! */
  1631. av_log(matroska->ctx, AV_LOG_INFO,
  1632. "Expected a Segment ID (0x%x), but received 0x%x!\n",
  1633. MATROSKA_ID_SEGMENT, id);
  1634. if ((res = ebml_read_skip(matroska)) < 0)
  1635. return res;
  1636. }
  1637. /* We now have a Matroska segment.
  1638. * Seeks are from the beginning of the segment,
  1639. * after the segment ID/length. */
  1640. if ((res = ebml_read_master(matroska, &id)) < 0)
  1641. return res;
  1642. matroska->segment_start = url_ftell(&s->pb);
  1643. matroska->time_scale = 1000000;
  1644. /* we've found our segment, start reading the different contents in here */
  1645. while (res == 0) {
  1646. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1647. res = AVERROR_IO;
  1648. break;
  1649. } else if (matroska->level_up) {
  1650. matroska->level_up--;
  1651. break;
  1652. }
  1653. switch (id) {
  1654. /* stream info */
  1655. case MATROSKA_ID_INFO: {
  1656. if ((res = ebml_read_master(matroska, &id)) < 0)
  1657. break;
  1658. res = matroska_parse_info(matroska);
  1659. break;
  1660. }
  1661. /* track info headers */
  1662. case MATROSKA_ID_TRACKS: {
  1663. if ((res = ebml_read_master(matroska, &id)) < 0)
  1664. break;
  1665. res = matroska_parse_tracks(matroska);
  1666. break;
  1667. }
  1668. /* stream index */
  1669. case MATROSKA_ID_CUES: {
  1670. if (!matroska->index_parsed) {
  1671. if ((res = ebml_read_master(matroska, &id)) < 0)
  1672. break;
  1673. res = matroska_parse_index(matroska);
  1674. } else
  1675. res = ebml_read_skip(matroska);
  1676. break;
  1677. }
  1678. /* metadata */
  1679. case MATROSKA_ID_TAGS: {
  1680. if (!matroska->metadata_parsed) {
  1681. if ((res = ebml_read_master(matroska, &id)) < 0)
  1682. break;
  1683. res = matroska_parse_metadata(matroska);
  1684. } else
  1685. res = ebml_read_skip(matroska);
  1686. break;
  1687. }
  1688. /* file index (if seekable, seek to Cues/Tags to parse it) */
  1689. case MATROSKA_ID_SEEKHEAD: {
  1690. if ((res = ebml_read_master(matroska, &id)) < 0)
  1691. break;
  1692. res = matroska_parse_seekhead(matroska);
  1693. break;
  1694. }
  1695. case MATROSKA_ID_CLUSTER: {
  1696. /* Do not read the master - this will be done in the next
  1697. * call to matroska_read_packet. */
  1698. res = 1;
  1699. break;
  1700. }
  1701. default:
  1702. av_log(matroska->ctx, AV_LOG_INFO,
  1703. "Unknown matroska file header ID 0x%x\n", id);
  1704. /* fall-through */
  1705. case EBML_ID_VOID:
  1706. res = ebml_read_skip(matroska);
  1707. break;
  1708. }
  1709. if (matroska->level_up) {
  1710. matroska->level_up--;
  1711. break;
  1712. }
  1713. }
  1714. /* Have we found a cluster? */
  1715. if (ebml_peek_id(matroska, NULL) == MATROSKA_ID_CLUSTER) {
  1716. int i, j;
  1717. MatroskaTrack *track;
  1718. AVStream *st;
  1719. for (i = 0; i < matroska->num_tracks; i++) {
  1720. enum CodecID codec_id = CODEC_ID_NONE;
  1721. uint8_t *extradata = NULL;
  1722. int extradata_size = 0;
  1723. int extradata_offset = 0;
  1724. track = matroska->tracks[i];
  1725. /* libavformat does not really support subtitles.
  1726. * Also apply some sanity checks. */
  1727. if ((track->type == MATROSKA_TRACK_TYPE_SUBTITLE) ||
  1728. (track->codec_id == NULL))
  1729. continue;
  1730. for(j=0; ff_mkv_codec_tags[j].str; j++){
  1731. if(!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
  1732. strlen(ff_mkv_codec_tags[j].str))){
  1733. codec_id= ff_mkv_codec_tags[j].id;
  1734. break;
  1735. }
  1736. }
  1737. /* Set the FourCC from the CodecID. */
  1738. /* This is the MS compatibility mode which stores a
  1739. * BITMAPINFOHEADER in the CodecPrivate. */
  1740. if (!strcmp(track->codec_id,
  1741. MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC) &&
  1742. (track->codec_priv_size >= 40) &&
  1743. (track->codec_priv != NULL)) {
  1744. unsigned char *p;
  1745. /* Offset of biCompression. Stored in LE. */
  1746. p = (unsigned char *)track->codec_priv + 16;
  1747. ((MatroskaVideoTrack *)track)->fourcc = (p[3] << 24) |
  1748. (p[2] << 16) | (p[1] << 8) | p[0];
  1749. codec_id = codec_get_id(codec_bmp_tags, ((MatroskaVideoTrack *)track)->fourcc);
  1750. }
  1751. /* This is the MS compatibility mode which stores a
  1752. * WAVEFORMATEX in the CodecPrivate. */
  1753. else if (!strcmp(track->codec_id,
  1754. MATROSKA_CODEC_ID_AUDIO_ACM) &&
  1755. (track->codec_priv_size >= 18) &&
  1756. (track->codec_priv != NULL)) {
  1757. unsigned char *p;
  1758. uint16_t tag;
  1759. /* Offset of wFormatTag. Stored in LE. */
  1760. p = (unsigned char *)track->codec_priv;
  1761. tag = (p[1] << 8) | p[0];
  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_NOMEM;
  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. track->default_duration = 1024*1000 / audiotrack->internal_samplerate;
  1783. }
  1784. else if (codec_id == CODEC_ID_TTA) {
  1785. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *) track;
  1786. ByteIOContext b;
  1787. extradata_size = 30;
  1788. extradata = av_mallocz(extradata_size);
  1789. if (extradata == NULL)
  1790. return AVERROR_NOMEM;
  1791. init_put_byte(&b, extradata, extradata_size, 1,
  1792. NULL, NULL, NULL, NULL);
  1793. put_buffer(&b, (uint8_t *) "TTA1", 4);
  1794. put_le16(&b, 1);
  1795. put_le16(&b, audiotrack->channels);
  1796. put_le16(&b, audiotrack->bitdepth);
  1797. put_le32(&b, audiotrack->samplerate);
  1798. put_le32(&b, matroska->ctx->duration * audiotrack->samplerate);
  1799. }
  1800. else if (codec_id == CODEC_ID_RV10 || codec_id == CODEC_ID_RV20 ||
  1801. codec_id == CODEC_ID_RV30 || codec_id == CODEC_ID_RV40) {
  1802. extradata_offset = 26;
  1803. track->codec_priv_size -= extradata_offset;
  1804. track->flags |= MATROSKA_TRACK_REAL_V;
  1805. }
  1806. else if (codec_id == CODEC_ID_RA_144) {
  1807. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1808. audiotrack->samplerate = 8000;
  1809. audiotrack->channels = 1;
  1810. }
  1811. else if (codec_id == CODEC_ID_RA_288 ||
  1812. codec_id == CODEC_ID_COOK ||
  1813. codec_id == CODEC_ID_ATRAC3) {
  1814. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1815. ByteIOContext b;
  1816. init_put_byte(&b, track->codec_priv, track->codec_priv_size, 0,
  1817. NULL, NULL, NULL, NULL);
  1818. url_fskip(&b, 24);
  1819. audiotrack->coded_framesize = get_be32(&b);
  1820. url_fskip(&b, 12);
  1821. audiotrack->sub_packet_h = get_be16(&b);
  1822. audiotrack->frame_size = get_be16(&b);
  1823. audiotrack->sub_packet_size = get_be16(&b);
  1824. audiotrack->buf = av_malloc(audiotrack->frame_size * audiotrack->sub_packet_h);
  1825. if (codec_id == CODEC_ID_RA_288) {
  1826. audiotrack->block_align = audiotrack->coded_framesize;
  1827. track->codec_priv_size = 0;
  1828. } else {
  1829. audiotrack->block_align = audiotrack->sub_packet_size;
  1830. extradata_offset = 78;
  1831. track->codec_priv_size -= extradata_offset;
  1832. }
  1833. }
  1834. if (codec_id == CODEC_ID_NONE) {
  1835. av_log(matroska->ctx, AV_LOG_INFO,
  1836. "Unknown/unsupported CodecID %s.\n",
  1837. track->codec_id);
  1838. }
  1839. track->stream_index = matroska->num_streams;
  1840. matroska->num_streams++;
  1841. st = av_new_stream(s, track->stream_index);
  1842. if (st == NULL)
  1843. return AVERROR_NOMEM;
  1844. av_set_pts_info(st, 64, matroska->time_scale, 1000*1000*1000); /* 64 bit pts in ns */
  1845. st->codec->codec_id = codec_id;
  1846. st->start_time = 0;
  1847. if (track->default_duration)
  1848. av_reduce(&st->codec->time_base.num, &st->codec->time_base.den,
  1849. track->default_duration, 1000, 30000);
  1850. if(extradata){
  1851. st->codec->extradata = extradata;
  1852. st->codec->extradata_size = extradata_size;
  1853. } else if(track->codec_priv && track->codec_priv_size > 0){
  1854. st->codec->extradata = av_malloc(track->codec_priv_size);
  1855. if(st->codec->extradata == NULL)
  1856. return AVERROR_NOMEM;
  1857. st->codec->extradata_size = track->codec_priv_size;
  1858. memcpy(st->codec->extradata,track->codec_priv+extradata_offset,
  1859. track->codec_priv_size);
  1860. }
  1861. if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
  1862. MatroskaVideoTrack *videotrack = (MatroskaVideoTrack *)track;
  1863. st->codec->codec_type = CODEC_TYPE_VIDEO;
  1864. st->codec->codec_tag = videotrack->fourcc;
  1865. st->codec->width = videotrack->pixel_width;
  1866. st->codec->height = videotrack->pixel_height;
  1867. if (videotrack->display_width == 0)
  1868. videotrack->display_width= videotrack->pixel_width;
  1869. if (videotrack->display_height == 0)
  1870. videotrack->display_height= videotrack->pixel_height;
  1871. av_reduce(&st->codec->sample_aspect_ratio.num,
  1872. &st->codec->sample_aspect_ratio.den,
  1873. st->codec->height * videotrack->display_width,
  1874. st->codec-> width * videotrack->display_height,
  1875. 255);
  1876. st->need_parsing = AVSTREAM_PARSE_HEADERS;
  1877. } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
  1878. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1879. st->codec->codec_type = CODEC_TYPE_AUDIO;
  1880. st->codec->sample_rate = audiotrack->samplerate;
  1881. st->codec->channels = audiotrack->channels;
  1882. st->codec->block_align = audiotrack->block_align;
  1883. } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
  1884. st->codec->codec_type = CODEC_TYPE_SUBTITLE;
  1885. }
  1886. /* What do we do with private data? E.g. for Vorbis. */
  1887. }
  1888. res = 0;
  1889. }
  1890. if (matroska->index_parsed) {
  1891. int i, track, stream;
  1892. for (i=0; i<matroska->num_indexes; i++) {
  1893. MatroskaDemuxIndex *idx = &matroska->index[i];
  1894. track = matroska_find_track_by_num(matroska, idx->track);
  1895. stream = matroska->tracks[track]->stream_index;
  1896. av_add_index_entry(matroska->ctx->streams[stream],
  1897. idx->pos, idx->time/matroska->time_scale,
  1898. 0, 0, AVINDEX_KEYFRAME);
  1899. }
  1900. }
  1901. return res;
  1902. }
  1903. static inline int
  1904. rv_offset(uint8_t *data, int slice, int slices)
  1905. {
  1906. return AV_RL32(data+8*slice+4) + 8*slices;
  1907. }
  1908. static int
  1909. matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size,
  1910. int64_t pos, uint64_t cluster_time, uint64_t duration,
  1911. int is_keyframe, int is_bframe)
  1912. {
  1913. int res = 0;
  1914. int track;
  1915. AVStream *st;
  1916. AVPacket *pkt;
  1917. uint8_t *origdata = data;
  1918. int16_t block_time;
  1919. uint32_t *lace_size = NULL;
  1920. int n, flags, laces = 0;
  1921. uint64_t num;
  1922. /* first byte(s): tracknum */
  1923. if ((n = matroska_ebmlnum_uint(data, size, &num)) < 0) {
  1924. av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
  1925. av_free(origdata);
  1926. return res;
  1927. }
  1928. data += n;
  1929. size -= n;
  1930. /* fetch track from num */
  1931. track = matroska_find_track_by_num(matroska, num);
  1932. if (size <= 3 || track < 0 || track >= matroska->num_tracks) {
  1933. av_log(matroska->ctx, AV_LOG_INFO,
  1934. "Invalid stream %d or size %u\n", track, size);
  1935. av_free(origdata);
  1936. return res;
  1937. }
  1938. st = matroska->ctx->streams[matroska->tracks[track]->stream_index];
  1939. if (st->discard >= AVDISCARD_ALL) {
  1940. av_free(origdata);
  1941. return res;
  1942. }
  1943. if (duration == AV_NOPTS_VALUE)
  1944. duration = matroska->tracks[track]->default_duration;
  1945. /* block_time (relative to cluster time) */
  1946. block_time = (data[0] << 8) | data[1];
  1947. data += 2;
  1948. size -= 2;
  1949. flags = *data;
  1950. data += 1;
  1951. size -= 1;
  1952. if (is_keyframe == -1)
  1953. is_keyframe = flags & 1 ? PKT_FLAG_KEY : 0;
  1954. if (matroska->skip_to_keyframe) {
  1955. if (!is_keyframe || st != matroska->skip_to_stream)
  1956. return res;
  1957. matroska->skip_to_keyframe = 0;
  1958. }
  1959. switch ((flags & 0x06) >> 1) {
  1960. case 0x0: /* no lacing */
  1961. laces = 1;
  1962. lace_size = av_mallocz(sizeof(int));
  1963. lace_size[0] = size;
  1964. break;
  1965. case 0x1: /* xiph lacing */
  1966. case 0x2: /* fixed-size lacing */
  1967. case 0x3: /* EBML lacing */
  1968. if (size == 0) {
  1969. res = -1;
  1970. break;
  1971. }
  1972. laces = (*data) + 1;
  1973. data += 1;
  1974. size -= 1;
  1975. lace_size = av_mallocz(laces * sizeof(int));
  1976. switch ((flags & 0x06) >> 1) {
  1977. case 0x1: /* xiph lacing */ {
  1978. uint8_t temp;
  1979. uint32_t total = 0;
  1980. for (n = 0; res == 0 && n < laces - 1; n++) {
  1981. while (1) {
  1982. if (size == 0) {
  1983. res = -1;
  1984. break;
  1985. }
  1986. temp = *data;
  1987. lace_size[n] += temp;
  1988. data += 1;
  1989. size -= 1;
  1990. if (temp != 0xff)
  1991. break;
  1992. }
  1993. total += lace_size[n];
  1994. }
  1995. lace_size[n] = size - total;
  1996. break;
  1997. }
  1998. case 0x2: /* fixed-size lacing */
  1999. for (n = 0; n < laces; n++)
  2000. lace_size[n] = size / laces;
  2001. break;
  2002. case 0x3: /* EBML lacing */ {
  2003. uint32_t total;
  2004. n = matroska_ebmlnum_uint(data, size, &num);
  2005. if (n < 0) {
  2006. av_log(matroska->ctx, AV_LOG_INFO,
  2007. "EBML block data error\n");
  2008. break;
  2009. }
  2010. data += n;
  2011. size -= n;
  2012. total = lace_size[0] = num;
  2013. for (n = 1; res == 0 && n < laces - 1; n++) {
  2014. int64_t snum;
  2015. int r;
  2016. r = matroska_ebmlnum_sint (data, size, &snum);
  2017. if (r < 0) {
  2018. av_log(matroska->ctx, AV_LOG_INFO,
  2019. "EBML block data error\n");
  2020. break;
  2021. }
  2022. data += r;
  2023. size -= r;
  2024. lace_size[n] = lace_size[n - 1] + snum;
  2025. total += lace_size[n];
  2026. }
  2027. lace_size[n] = size - total;
  2028. break;
  2029. }
  2030. }
  2031. break;
  2032. }
  2033. if (res == 0) {
  2034. int real_v = matroska->tracks[track]->flags & MATROSKA_TRACK_REAL_V;
  2035. uint64_t timecode = AV_NOPTS_VALUE;
  2036. if (cluster_time != (uint64_t)-1 && cluster_time + block_time >= 0)
  2037. timecode = cluster_time + block_time;
  2038. for (n = 0; n < laces; n++) {
  2039. int slice, slices = 1;
  2040. if (real_v) {
  2041. slices = *data++ + 1;
  2042. lace_size[n]--;
  2043. }
  2044. for (slice=0; slice<slices; slice++) {
  2045. int slice_size, slice_offset = 0;
  2046. if (real_v)
  2047. slice_offset = rv_offset(data, slice, slices);
  2048. if (slice+1 == slices)
  2049. slice_size = lace_size[n] - slice_offset;
  2050. else
  2051. slice_size = rv_offset(data, slice+1, slices) - slice_offset;
  2052. if (st->codec->codec_id == CODEC_ID_RA_288 ||
  2053. st->codec->codec_id == CODEC_ID_COOK ||
  2054. st->codec->codec_id == CODEC_ID_ATRAC3) {
  2055. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)matroska->tracks[track];
  2056. int a = st->codec->block_align;
  2057. int sps = audiotrack->sub_packet_size;
  2058. int cfs = audiotrack->coded_framesize;
  2059. int h = audiotrack->sub_packet_h;
  2060. int y = audiotrack->sub_packet_cnt;
  2061. int w = audiotrack->frame_size;
  2062. int x;
  2063. if (!audiotrack->pkt_cnt) {
  2064. if (st->codec->codec_id == CODEC_ID_RA_288)
  2065. for (x=0; x<h/2; x++)
  2066. memcpy(audiotrack->buf+x*2*w+y*cfs,
  2067. data+x*cfs, cfs);
  2068. else
  2069. for (x=0; x<w/sps; x++)
  2070. memcpy(audiotrack->buf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), data+x*sps, sps);
  2071. if (++audiotrack->sub_packet_cnt >= h) {
  2072. audiotrack->sub_packet_cnt = 0;
  2073. audiotrack->pkt_cnt = h*w / a;
  2074. }
  2075. }
  2076. while (audiotrack->pkt_cnt) {
  2077. pkt = av_mallocz(sizeof(AVPacket));
  2078. av_new_packet(pkt, a);
  2079. memcpy(pkt->data, audiotrack->buf
  2080. + a * (h*w / a - audiotrack->pkt_cnt--), a);
  2081. pkt->pos = pos;
  2082. pkt->stream_index = matroska->tracks[track]->stream_index;
  2083. matroska_queue_packet(matroska, pkt);
  2084. }
  2085. } else {
  2086. pkt = av_mallocz(sizeof(AVPacket));
  2087. /* XXX: prevent data copy... */
  2088. if (av_new_packet(pkt, slice_size) < 0) {
  2089. res = AVERROR_NOMEM;
  2090. n = laces-1;
  2091. break;
  2092. }
  2093. memcpy (pkt->data, data+slice_offset, slice_size);
  2094. if (n == 0)
  2095. pkt->flags = is_keyframe;
  2096. pkt->stream_index = matroska->tracks[track]->stream_index;
  2097. pkt->pts = timecode;
  2098. pkt->pos = pos;
  2099. pkt->duration = duration;
  2100. matroska_queue_packet(matroska, pkt);
  2101. }
  2102. if (timecode != AV_NOPTS_VALUE)
  2103. timecode = duration ? timecode + duration : AV_NOPTS_VALUE;
  2104. }
  2105. data += lace_size[n];
  2106. }
  2107. }
  2108. av_free(lace_size);
  2109. av_free(origdata);
  2110. return res;
  2111. }
  2112. static int
  2113. matroska_parse_blockgroup (MatroskaDemuxContext *matroska,
  2114. uint64_t cluster_time)
  2115. {
  2116. int res = 0;
  2117. uint32_t id;
  2118. int is_bframe = 0;
  2119. int is_keyframe = PKT_FLAG_KEY, last_num_packets = matroska->num_packets;
  2120. uint64_t duration = AV_NOPTS_VALUE;
  2121. uint8_t *data;
  2122. int size = 0;
  2123. int64_t pos = 0;
  2124. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing blockgroup...\n");
  2125. while (res == 0) {
  2126. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2127. res = AVERROR_IO;
  2128. break;
  2129. } else if (matroska->level_up) {
  2130. matroska->level_up--;
  2131. break;
  2132. }
  2133. switch (id) {
  2134. /* one block inside the group. Note, block parsing is one
  2135. * of the harder things, so this code is a bit complicated.
  2136. * See http://www.matroska.org/ for documentation. */
  2137. case MATROSKA_ID_BLOCK: {
  2138. pos = url_ftell(&matroska->ctx->pb);
  2139. res = ebml_read_binary(matroska, &id, &data, &size);
  2140. break;
  2141. }
  2142. case MATROSKA_ID_BLOCKDURATION: {
  2143. if ((res = ebml_read_uint(matroska, &id, &duration)) < 0)
  2144. break;
  2145. duration /= matroska->time_scale;
  2146. break;
  2147. }
  2148. case MATROSKA_ID_BLOCKREFERENCE: {
  2149. int64_t num;
  2150. /* We've found a reference, so not even the first frame in
  2151. * the lace is a key frame. */
  2152. is_keyframe = 0;
  2153. if (last_num_packets != matroska->num_packets)
  2154. matroska->packets[last_num_packets]->flags = 0;
  2155. if ((res = ebml_read_sint(matroska, &id, &num)) < 0)
  2156. break;
  2157. if (num > 0)
  2158. is_bframe = 1;
  2159. break;
  2160. }
  2161. default:
  2162. av_log(matroska->ctx, AV_LOG_INFO,
  2163. "Unknown entry 0x%x in blockgroup data\n", id);
  2164. /* fall-through */
  2165. case EBML_ID_VOID:
  2166. res = ebml_read_skip(matroska);
  2167. break;
  2168. }
  2169. if (matroska->level_up) {
  2170. matroska->level_up--;
  2171. break;
  2172. }
  2173. }
  2174. if (res)
  2175. return res;
  2176. if (size > 0)
  2177. res = matroska_parse_block(matroska, data, size, pos, cluster_time,
  2178. duration, is_keyframe, is_bframe);
  2179. return res;
  2180. }
  2181. static int
  2182. matroska_parse_cluster (MatroskaDemuxContext *matroska)
  2183. {
  2184. int res = 0;
  2185. uint32_t id;
  2186. uint64_t cluster_time = 0;
  2187. uint8_t *data;
  2188. int64_t pos;
  2189. int size;
  2190. av_log(matroska->ctx, AV_LOG_DEBUG,
  2191. "parsing cluster at %"PRId64"\n", url_ftell(&matroska->ctx->pb));
  2192. while (res == 0) {
  2193. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2194. res = AVERROR_IO;
  2195. break;
  2196. } else if (matroska->level_up) {
  2197. matroska->level_up--;
  2198. break;
  2199. }
  2200. switch (id) {
  2201. /* cluster timecode */
  2202. case MATROSKA_ID_CLUSTERTIMECODE: {
  2203. uint64_t num;
  2204. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  2205. break;
  2206. cluster_time = num;
  2207. break;
  2208. }
  2209. /* a group of blocks inside a cluster */
  2210. case MATROSKA_ID_BLOCKGROUP:
  2211. if ((res = ebml_read_master(matroska, &id)) < 0)
  2212. break;
  2213. res = matroska_parse_blockgroup(matroska, cluster_time);
  2214. break;
  2215. case MATROSKA_ID_SIMPLEBLOCK:
  2216. pos = url_ftell(&matroska->ctx->pb);
  2217. res = ebml_read_binary(matroska, &id, &data, &size);
  2218. if (res == 0)
  2219. res = matroska_parse_block(matroska, data, size, pos,
  2220. cluster_time, AV_NOPTS_VALUE,
  2221. -1, 0);
  2222. break;
  2223. default:
  2224. av_log(matroska->ctx, AV_LOG_INFO,
  2225. "Unknown entry 0x%x in cluster data\n", id);
  2226. /* fall-through */
  2227. case EBML_ID_VOID:
  2228. res = ebml_read_skip(matroska);
  2229. break;
  2230. }
  2231. if (matroska->level_up) {
  2232. matroska->level_up--;
  2233. break;
  2234. }
  2235. }
  2236. return res;
  2237. }
  2238. static int
  2239. matroska_read_packet (AVFormatContext *s,
  2240. AVPacket *pkt)
  2241. {
  2242. MatroskaDemuxContext *matroska = s->priv_data;
  2243. int res;
  2244. uint32_t id;
  2245. /* Read stream until we have a packet queued. */
  2246. while (matroska_deliver_packet(matroska, pkt)) {
  2247. /* Have we already reached the end? */
  2248. if (matroska->done)
  2249. return AVERROR_IO;
  2250. res = 0;
  2251. while (res == 0) {
  2252. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2253. return AVERROR_IO;
  2254. } else if (matroska->level_up) {
  2255. matroska->level_up--;
  2256. break;
  2257. }
  2258. switch (id) {
  2259. case MATROSKA_ID_CLUSTER:
  2260. if ((res = ebml_read_master(matroska, &id)) < 0)
  2261. break;
  2262. if ((res = matroska_parse_cluster(matroska)) == 0)
  2263. res = 1; /* Parsed one cluster, let's get out. */
  2264. break;
  2265. default:
  2266. case EBML_ID_VOID:
  2267. res = ebml_read_skip(matroska);
  2268. break;
  2269. }
  2270. if (matroska->level_up) {
  2271. matroska->level_up--;
  2272. break;
  2273. }
  2274. }
  2275. if (res == -1)
  2276. matroska->done = 1;
  2277. }
  2278. return 0;
  2279. }
  2280. static int
  2281. matroska_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp,
  2282. int flags)
  2283. {
  2284. MatroskaDemuxContext *matroska = s->priv_data;
  2285. AVStream *st = s->streams[stream_index];
  2286. int index;
  2287. /* find index entry */
  2288. index = av_index_search_timestamp(st, timestamp, flags);
  2289. if (index < 0)
  2290. return 0;
  2291. /* do the seek */
  2292. url_fseek(&s->pb, st->index_entries[index].pos, SEEK_SET);
  2293. matroska->skip_to_keyframe = !(flags & AVSEEK_FLAG_ANY);
  2294. matroska->skip_to_stream = st;
  2295. matroska->num_packets = 0;
  2296. matroska->peek_id = 0;
  2297. return 0;
  2298. }
  2299. static int
  2300. matroska_read_close (AVFormatContext *s)
  2301. {
  2302. MatroskaDemuxContext *matroska = s->priv_data;
  2303. int n = 0;
  2304. av_free(matroska->writing_app);
  2305. av_free(matroska->muxing_app);
  2306. av_free(matroska->index);
  2307. if (matroska->packets != NULL) {
  2308. for (n = 0; n < matroska->num_packets; n++) {
  2309. av_free_packet(matroska->packets[n]);
  2310. av_free(matroska->packets[n]);
  2311. }
  2312. av_free(matroska->packets);
  2313. }
  2314. for (n = 0; n < matroska->num_tracks; n++) {
  2315. MatroskaTrack *track = matroska->tracks[n];
  2316. av_free(track->codec_id);
  2317. av_free(track->codec_name);
  2318. av_free(track->codec_priv);
  2319. av_free(track->name);
  2320. av_free(track->language);
  2321. if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
  2322. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  2323. av_free(audiotrack->buf);
  2324. }
  2325. av_free(track);
  2326. }
  2327. return 0;
  2328. }
  2329. AVInputFormat matroska_demuxer = {
  2330. "matroska",
  2331. "Matroska file format",
  2332. sizeof(MatroskaDemuxContext),
  2333. matroska_probe,
  2334. matroska_read_header,
  2335. matroska_read_packet,
  2336. matroska_read_close,
  2337. matroska_read_seek,
  2338. };