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.

2733 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 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. //..
  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 (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_IO;
  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_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, *end;
  1153. if ((res = ebml_read_utf8(matroska, &id, &text)) < 0)
  1154. break;
  1155. if ((end = strchr(text, '-')))
  1156. *end = '\0';
  1157. if (strlen(text) == 3)
  1158. strcpy(track->language, text);
  1159. av_free(text);
  1160. break;
  1161. }
  1162. /* whether this is actually used */
  1163. case MATROSKA_ID_TRACKFLAGENABLED: {
  1164. uint64_t num;
  1165. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1166. break;
  1167. if (num)
  1168. track->flags |= MATROSKA_TRACK_ENABLED;
  1169. else
  1170. track->flags &= ~MATROSKA_TRACK_ENABLED;
  1171. break;
  1172. }
  1173. /* whether it's the default for this track type */
  1174. case MATROSKA_ID_TRACKFLAGDEFAULT: {
  1175. uint64_t num;
  1176. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1177. break;
  1178. if (num)
  1179. track->flags |= MATROSKA_TRACK_DEFAULT;
  1180. else
  1181. track->flags &= ~MATROSKA_TRACK_DEFAULT;
  1182. break;
  1183. }
  1184. /* lacing (like MPEG, where blocks don't end/start on frame
  1185. * boundaries) */
  1186. case MATROSKA_ID_TRACKFLAGLACING: {
  1187. uint64_t num;
  1188. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1189. break;
  1190. if (num)
  1191. track->flags |= MATROSKA_TRACK_LACING;
  1192. else
  1193. track->flags &= ~MATROSKA_TRACK_LACING;
  1194. break;
  1195. }
  1196. /* default length (in time) of one data block in this track */
  1197. case MATROSKA_ID_TRACKDEFAULTDURATION: {
  1198. uint64_t num;
  1199. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  1200. break;
  1201. track->default_duration = num / matroska->time_scale;
  1202. break;
  1203. }
  1204. default:
  1205. av_log(matroska->ctx, AV_LOG_INFO,
  1206. "Unknown track header entry 0x%x - ignoring\n", id);
  1207. /* pass-through */
  1208. case EBML_ID_VOID:
  1209. /* we ignore these because they're nothing useful. */
  1210. case MATROSKA_ID_CODECINFOURL:
  1211. case MATROSKA_ID_CODECDOWNLOADURL:
  1212. case MATROSKA_ID_TRACKMINCACHE:
  1213. case MATROSKA_ID_TRACKMAXCACHE:
  1214. res = ebml_read_skip(matroska);
  1215. break;
  1216. }
  1217. if (matroska->level_up) {
  1218. matroska->level_up--;
  1219. break;
  1220. }
  1221. }
  1222. return res;
  1223. }
  1224. static int
  1225. matroska_parse_tracks (MatroskaDemuxContext *matroska)
  1226. {
  1227. int res = 0;
  1228. uint32_t id;
  1229. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing tracks...\n");
  1230. while (res == 0) {
  1231. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1232. res = AVERROR_IO;
  1233. break;
  1234. } else if (matroska->level_up) {
  1235. matroska->level_up--;
  1236. break;
  1237. }
  1238. switch (id) {
  1239. /* one track within the "all-tracks" header */
  1240. case MATROSKA_ID_TRACKENTRY:
  1241. res = matroska_add_stream(matroska);
  1242. break;
  1243. default:
  1244. av_log(matroska->ctx, AV_LOG_INFO,
  1245. "Unknown entry 0x%x in track header\n", id);
  1246. /* fall-through */
  1247. case EBML_ID_VOID:
  1248. res = ebml_read_skip(matroska);
  1249. break;
  1250. }
  1251. if (matroska->level_up) {
  1252. matroska->level_up--;
  1253. break;
  1254. }
  1255. }
  1256. return res;
  1257. }
  1258. static int
  1259. matroska_parse_index (MatroskaDemuxContext *matroska)
  1260. {
  1261. int res = 0;
  1262. uint32_t id;
  1263. MatroskaDemuxIndex idx;
  1264. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing index...\n");
  1265. while (res == 0) {
  1266. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1267. res = AVERROR_IO;
  1268. break;
  1269. } else if (matroska->level_up) {
  1270. matroska->level_up--;
  1271. break;
  1272. }
  1273. switch (id) {
  1274. /* one single index entry ('point') */
  1275. case MATROSKA_ID_POINTENTRY:
  1276. if ((res = ebml_read_master(matroska, &id)) < 0)
  1277. break;
  1278. /* in the end, we hope to fill one entry with a
  1279. * timestamp, a file position and a tracknum */
  1280. idx.pos = (uint64_t) -1;
  1281. idx.time = (uint64_t) -1;
  1282. idx.track = (uint16_t) -1;
  1283. while (res == 0) {
  1284. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1285. res = AVERROR_IO;
  1286. break;
  1287. } else if (matroska->level_up) {
  1288. matroska->level_up--;
  1289. break;
  1290. }
  1291. switch (id) {
  1292. /* one single index entry ('point') */
  1293. case MATROSKA_ID_CUETIME: {
  1294. uint64_t time;
  1295. if ((res = ebml_read_uint(matroska, &id,
  1296. &time)) < 0)
  1297. break;
  1298. idx.time = time * matroska->time_scale;
  1299. break;
  1300. }
  1301. /* position in the file + track to which it
  1302. * belongs */
  1303. case MATROSKA_ID_CUETRACKPOSITION:
  1304. if ((res = ebml_read_master(matroska, &id)) < 0)
  1305. break;
  1306. while (res == 0) {
  1307. if (!(id = ebml_peek_id (matroska,
  1308. &matroska->level_up))) {
  1309. res = AVERROR_IO;
  1310. break;
  1311. } else if (matroska->level_up) {
  1312. matroska->level_up--;
  1313. break;
  1314. }
  1315. switch (id) {
  1316. /* track number */
  1317. case MATROSKA_ID_CUETRACK: {
  1318. uint64_t num;
  1319. if ((res = ebml_read_uint(matroska,
  1320. &id, &num)) < 0)
  1321. break;
  1322. idx.track = num;
  1323. break;
  1324. }
  1325. /* position in file */
  1326. case MATROSKA_ID_CUECLUSTERPOSITION: {
  1327. uint64_t num;
  1328. if ((res = ebml_read_uint(matroska,
  1329. &id, &num)) < 0)
  1330. break;
  1331. idx.pos = num+matroska->segment_start;
  1332. break;
  1333. }
  1334. default:
  1335. av_log(matroska->ctx, AV_LOG_INFO,
  1336. "Unknown entry 0x%x in "
  1337. "CuesTrackPositions\n", id);
  1338. /* fall-through */
  1339. case EBML_ID_VOID:
  1340. res = ebml_read_skip(matroska);
  1341. break;
  1342. }
  1343. if (matroska->level_up) {
  1344. matroska->level_up--;
  1345. break;
  1346. }
  1347. }
  1348. break;
  1349. default:
  1350. av_log(matroska->ctx, AV_LOG_INFO,
  1351. "Unknown entry 0x%x in cuespoint "
  1352. "index\n", id);
  1353. /* fall-through */
  1354. case EBML_ID_VOID:
  1355. res = ebml_read_skip(matroska);
  1356. break;
  1357. }
  1358. if (matroska->level_up) {
  1359. matroska->level_up--;
  1360. break;
  1361. }
  1362. }
  1363. /* so let's see if we got what we wanted */
  1364. if (idx.pos != (uint64_t) -1 &&
  1365. idx.time != (uint64_t) -1 &&
  1366. idx.track != (uint16_t) -1) {
  1367. if (matroska->num_indexes % 32 == 0) {
  1368. /* re-allocate bigger index */
  1369. matroska->index =
  1370. av_realloc(matroska->index,
  1371. (matroska->num_indexes + 32) *
  1372. sizeof(MatroskaDemuxIndex));
  1373. }
  1374. matroska->index[matroska->num_indexes] = idx;
  1375. matroska->num_indexes++;
  1376. }
  1377. break;
  1378. default:
  1379. av_log(matroska->ctx, AV_LOG_INFO,
  1380. "Unknown entry 0x%x in cues header\n", id);
  1381. /* fall-through */
  1382. case EBML_ID_VOID:
  1383. res = ebml_read_skip(matroska);
  1384. break;
  1385. }
  1386. if (matroska->level_up) {
  1387. matroska->level_up--;
  1388. break;
  1389. }
  1390. }
  1391. return res;
  1392. }
  1393. static int
  1394. matroska_parse_metadata (MatroskaDemuxContext *matroska)
  1395. {
  1396. int res = 0;
  1397. uint32_t id;
  1398. while (res == 0) {
  1399. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1400. res = AVERROR_IO;
  1401. break;
  1402. } else if (matroska->level_up) {
  1403. matroska->level_up--;
  1404. break;
  1405. }
  1406. switch (id) {
  1407. /* Hm, this is unsupported... */
  1408. default:
  1409. av_log(matroska->ctx, AV_LOG_INFO,
  1410. "Unknown entry 0x%x in metadata header\n", id);
  1411. /* fall-through */
  1412. case EBML_ID_VOID:
  1413. res = ebml_read_skip(matroska);
  1414. break;
  1415. }
  1416. if (matroska->level_up) {
  1417. matroska->level_up--;
  1418. break;
  1419. }
  1420. }
  1421. return res;
  1422. }
  1423. static int
  1424. matroska_parse_seekhead (MatroskaDemuxContext *matroska)
  1425. {
  1426. int res = 0;
  1427. uint32_t id;
  1428. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing seekhead...\n");
  1429. while (res == 0) {
  1430. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1431. res = AVERROR_IO;
  1432. break;
  1433. } else if (matroska->level_up) {
  1434. matroska->level_up--;
  1435. break;
  1436. }
  1437. switch (id) {
  1438. case MATROSKA_ID_SEEKENTRY: {
  1439. uint32_t seek_id = 0, peek_id_cache = 0;
  1440. uint64_t seek_pos = (uint64_t) -1, t;
  1441. if ((res = ebml_read_master(matroska, &id)) < 0)
  1442. break;
  1443. while (res == 0) {
  1444. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1445. res = AVERROR_IO;
  1446. break;
  1447. } else if (matroska->level_up) {
  1448. matroska->level_up--;
  1449. break;
  1450. }
  1451. switch (id) {
  1452. case MATROSKA_ID_SEEKID:
  1453. res = ebml_read_uint(matroska, &id, &t);
  1454. seek_id = t;
  1455. break;
  1456. case MATROSKA_ID_SEEKPOSITION:
  1457. res = ebml_read_uint(matroska, &id, &seek_pos);
  1458. break;
  1459. default:
  1460. av_log(matroska->ctx, AV_LOG_INFO,
  1461. "Unknown seekhead ID 0x%x\n", id);
  1462. /* fall-through */
  1463. case EBML_ID_VOID:
  1464. res = ebml_read_skip(matroska);
  1465. break;
  1466. }
  1467. if (matroska->level_up) {
  1468. matroska->level_up--;
  1469. break;
  1470. }
  1471. }
  1472. if (!seek_id || seek_pos == (uint64_t) -1) {
  1473. av_log(matroska->ctx, AV_LOG_INFO,
  1474. "Incomplete seekhead entry (0x%x/%"PRIu64")\n",
  1475. seek_id, seek_pos);
  1476. break;
  1477. }
  1478. switch (seek_id) {
  1479. case MATROSKA_ID_CUES:
  1480. case MATROSKA_ID_TAGS: {
  1481. uint32_t level_up = matroska->level_up;
  1482. offset_t before_pos;
  1483. uint64_t length;
  1484. MatroskaLevel level;
  1485. /* remember the peeked ID and the current position */
  1486. peek_id_cache = matroska->peek_id;
  1487. before_pos = url_ftell(&matroska->ctx->pb);
  1488. /* seek */
  1489. if ((res = ebml_read_seek(matroska, seek_pos +
  1490. matroska->segment_start)) < 0)
  1491. return res;
  1492. /* we don't want to lose our seekhead level, so we add
  1493. * a dummy. This is a crude hack. */
  1494. if (matroska->num_levels == EBML_MAX_DEPTH) {
  1495. av_log(matroska->ctx, AV_LOG_INFO,
  1496. "Max EBML element depth (%d) reached, "
  1497. "cannot parse further.\n", EBML_MAX_DEPTH);
  1498. return AVERROR_UNKNOWN;
  1499. }
  1500. level.start = 0;
  1501. level.length = (uint64_t)-1;
  1502. matroska->levels[matroska->num_levels] = level;
  1503. matroska->num_levels++;
  1504. /* check ID */
  1505. if (!(id = ebml_peek_id (matroska,
  1506. &matroska->level_up)))
  1507. goto finish;
  1508. if (id != seek_id) {
  1509. av_log(matroska->ctx, AV_LOG_INFO,
  1510. "We looked for ID=0x%x but got "
  1511. "ID=0x%x (pos=%"PRIu64")",
  1512. seek_id, id, seek_pos +
  1513. matroska->segment_start);
  1514. goto finish;
  1515. }
  1516. /* read master + parse */
  1517. if ((res = ebml_read_master(matroska, &id)) < 0)
  1518. goto finish;
  1519. switch (id) {
  1520. case MATROSKA_ID_CUES:
  1521. if (!(res = matroska_parse_index(matroska)) ||
  1522. url_feof(&matroska->ctx->pb)) {
  1523. matroska->index_parsed = 1;
  1524. res = 0;
  1525. }
  1526. break;
  1527. case MATROSKA_ID_TAGS:
  1528. if (!(res = matroska_parse_metadata(matroska)) ||
  1529. url_feof(&matroska->ctx->pb)) {
  1530. matroska->metadata_parsed = 1;
  1531. res = 0;
  1532. }
  1533. break;
  1534. }
  1535. finish:
  1536. /* remove dummy level */
  1537. while (matroska->num_levels) {
  1538. matroska->num_levels--;
  1539. length =
  1540. matroska->levels[matroska->num_levels].length;
  1541. if (length == (uint64_t)-1)
  1542. break;
  1543. }
  1544. /* seek back */
  1545. if ((res = ebml_read_seek(matroska, before_pos)) < 0)
  1546. return res;
  1547. matroska->peek_id = peek_id_cache;
  1548. matroska->level_up = level_up;
  1549. break;
  1550. }
  1551. default:
  1552. av_log(matroska->ctx, AV_LOG_INFO,
  1553. "Ignoring seekhead entry for ID=0x%x\n",
  1554. seek_id);
  1555. break;
  1556. }
  1557. break;
  1558. }
  1559. default:
  1560. av_log(matroska->ctx, AV_LOG_INFO,
  1561. "Unknown seekhead ID 0x%x\n", id);
  1562. /* fall-through */
  1563. case EBML_ID_VOID:
  1564. res = ebml_read_skip(matroska);
  1565. break;
  1566. }
  1567. if (matroska->level_up) {
  1568. matroska->level_up--;
  1569. break;
  1570. }
  1571. }
  1572. return res;
  1573. }
  1574. #define ARRAY_SIZE(x) (sizeof(x)/sizeof(*x))
  1575. static int
  1576. matroska_aac_profile (char *codec_id)
  1577. {
  1578. static const char *aac_profiles[] = {
  1579. "MAIN", "LC", "SSR"
  1580. };
  1581. int profile;
  1582. for (profile=0; profile<ARRAY_SIZE(aac_profiles); profile++)
  1583. if (strstr(codec_id, aac_profiles[profile]))
  1584. break;
  1585. return profile + 1;
  1586. }
  1587. static int
  1588. matroska_aac_sri (int samplerate)
  1589. {
  1590. static const int aac_sample_rates[] = {
  1591. 96000, 88200, 64000, 48000, 44100, 32000,
  1592. 24000, 22050, 16000, 12000, 11025, 8000,
  1593. };
  1594. int sri;
  1595. for (sri=0; sri<ARRAY_SIZE(aac_sample_rates); sri++)
  1596. if (aac_sample_rates[sri] == samplerate)
  1597. break;
  1598. return sri;
  1599. }
  1600. static int
  1601. matroska_read_header (AVFormatContext *s,
  1602. AVFormatParameters *ap)
  1603. {
  1604. MatroskaDemuxContext *matroska = s->priv_data;
  1605. char *doctype;
  1606. int version, last_level, res = 0;
  1607. uint32_t id;
  1608. matroska->ctx = s;
  1609. /* First read the EBML header. */
  1610. doctype = NULL;
  1611. if ((res = ebml_read_header(matroska, &doctype, &version)) < 0)
  1612. return res;
  1613. if ((doctype == NULL) || strcmp(doctype, "matroska")) {
  1614. av_log(matroska->ctx, AV_LOG_ERROR,
  1615. "Wrong EBML doctype ('%s' != 'matroska').\n",
  1616. doctype ? doctype : "(none)");
  1617. if (doctype)
  1618. av_free(doctype);
  1619. return AVERROR_NOFMT;
  1620. }
  1621. av_free(doctype);
  1622. if (version > 2) {
  1623. av_log(matroska->ctx, AV_LOG_ERROR,
  1624. "Matroska demuxer version 2 too old for file version %d\n",
  1625. version);
  1626. return AVERROR_NOFMT;
  1627. }
  1628. /* The next thing is a segment. */
  1629. while (1) {
  1630. if (!(id = ebml_peek_id(matroska, &last_level)))
  1631. return AVERROR_IO;
  1632. if (id == MATROSKA_ID_SEGMENT)
  1633. break;
  1634. /* oi! */
  1635. av_log(matroska->ctx, AV_LOG_INFO,
  1636. "Expected a Segment ID (0x%x), but received 0x%x!\n",
  1637. MATROSKA_ID_SEGMENT, id);
  1638. if ((res = ebml_read_skip(matroska)) < 0)
  1639. return res;
  1640. }
  1641. /* We now have a Matroska segment.
  1642. * Seeks are from the beginning of the segment,
  1643. * after the segment ID/length. */
  1644. if ((res = ebml_read_master(matroska, &id)) < 0)
  1645. return res;
  1646. matroska->segment_start = url_ftell(&s->pb);
  1647. matroska->time_scale = 1000000;
  1648. /* we've found our segment, start reading the different contents in here */
  1649. while (res == 0) {
  1650. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  1651. res = AVERROR_IO;
  1652. break;
  1653. } else if (matroska->level_up) {
  1654. matroska->level_up--;
  1655. break;
  1656. }
  1657. switch (id) {
  1658. /* stream info */
  1659. case MATROSKA_ID_INFO: {
  1660. if ((res = ebml_read_master(matroska, &id)) < 0)
  1661. break;
  1662. res = matroska_parse_info(matroska);
  1663. break;
  1664. }
  1665. /* track info headers */
  1666. case MATROSKA_ID_TRACKS: {
  1667. if ((res = ebml_read_master(matroska, &id)) < 0)
  1668. break;
  1669. res = matroska_parse_tracks(matroska);
  1670. break;
  1671. }
  1672. /* stream index */
  1673. case MATROSKA_ID_CUES: {
  1674. if (!matroska->index_parsed) {
  1675. if ((res = ebml_read_master(matroska, &id)) < 0)
  1676. break;
  1677. res = matroska_parse_index(matroska);
  1678. } else
  1679. res = ebml_read_skip(matroska);
  1680. break;
  1681. }
  1682. /* metadata */
  1683. case MATROSKA_ID_TAGS: {
  1684. if (!matroska->metadata_parsed) {
  1685. if ((res = ebml_read_master(matroska, &id)) < 0)
  1686. break;
  1687. res = matroska_parse_metadata(matroska);
  1688. } else
  1689. res = ebml_read_skip(matroska);
  1690. break;
  1691. }
  1692. /* file index (if seekable, seek to Cues/Tags to parse it) */
  1693. case MATROSKA_ID_SEEKHEAD: {
  1694. if ((res = ebml_read_master(matroska, &id)) < 0)
  1695. break;
  1696. res = matroska_parse_seekhead(matroska);
  1697. break;
  1698. }
  1699. case MATROSKA_ID_CLUSTER: {
  1700. /* Do not read the master - this will be done in the next
  1701. * call to matroska_read_packet. */
  1702. res = 1;
  1703. break;
  1704. }
  1705. default:
  1706. av_log(matroska->ctx, AV_LOG_INFO,
  1707. "Unknown matroska file header ID 0x%x\n", id);
  1708. /* fall-through */
  1709. case EBML_ID_VOID:
  1710. res = ebml_read_skip(matroska);
  1711. break;
  1712. }
  1713. if (matroska->level_up) {
  1714. matroska->level_up--;
  1715. break;
  1716. }
  1717. }
  1718. /* Have we found a cluster? */
  1719. if (ebml_peek_id(matroska, NULL) == MATROSKA_ID_CLUSTER) {
  1720. int i, j;
  1721. MatroskaTrack *track;
  1722. AVStream *st;
  1723. for (i = 0; i < matroska->num_tracks; i++) {
  1724. enum CodecID codec_id = CODEC_ID_NONE;
  1725. uint8_t *extradata = NULL;
  1726. int extradata_size = 0;
  1727. int extradata_offset = 0;
  1728. track = matroska->tracks[i];
  1729. track->stream_index = -1;
  1730. /* libavformat does not really support subtitles.
  1731. * Also apply some sanity checks. */
  1732. if ((track->type == MATROSKA_TRACK_TYPE_SUBTITLE) ||
  1733. (track->codec_id == NULL))
  1734. continue;
  1735. for(j=0; ff_mkv_codec_tags[j].str; j++){
  1736. if(!strncmp(ff_mkv_codec_tags[j].str, track->codec_id,
  1737. strlen(ff_mkv_codec_tags[j].str))){
  1738. codec_id= ff_mkv_codec_tags[j].id;
  1739. break;
  1740. }
  1741. }
  1742. /* Set the FourCC from the CodecID. */
  1743. /* This is the MS compatibility mode which stores a
  1744. * BITMAPINFOHEADER in the CodecPrivate. */
  1745. if (!strcmp(track->codec_id,
  1746. MATROSKA_CODEC_ID_VIDEO_VFW_FOURCC) &&
  1747. (track->codec_priv_size >= 40) &&
  1748. (track->codec_priv != NULL)) {
  1749. MatroskaVideoTrack *vtrack = (MatroskaVideoTrack *) track;
  1750. /* Offset of biCompression. Stored in LE. */
  1751. vtrack->fourcc = AV_RL32(track->codec_priv + 16);
  1752. codec_id = codec_get_id(codec_bmp_tags, vtrack->fourcc);
  1753. }
  1754. /* This is the MS compatibility mode which stores a
  1755. * WAVEFORMATEX in the CodecPrivate. */
  1756. else if (!strcmp(track->codec_id,
  1757. MATROSKA_CODEC_ID_AUDIO_ACM) &&
  1758. (track->codec_priv_size >= 18) &&
  1759. (track->codec_priv != NULL)) {
  1760. uint16_t tag;
  1761. /* Offset of wFormatTag. Stored in LE. */
  1762. tag = AV_RL16(track->codec_priv);
  1763. codec_id = codec_get_id(codec_wav_tags, tag);
  1764. }
  1765. else if (codec_id == CODEC_ID_AAC && !track->codec_priv_size) {
  1766. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *) track;
  1767. int profile = matroska_aac_profile(track->codec_id);
  1768. int sri = matroska_aac_sri(audiotrack->internal_samplerate);
  1769. extradata = av_malloc(5);
  1770. if (extradata == NULL)
  1771. return AVERROR_NOMEM;
  1772. extradata[0] = (profile << 3) | ((sri&0x0E) >> 1);
  1773. extradata[1] = ((sri&0x01) << 7) | (audiotrack->channels<<3);
  1774. if (strstr(track->codec_id, "SBR")) {
  1775. sri = matroska_aac_sri(audiotrack->samplerate);
  1776. extradata[2] = 0x56;
  1777. extradata[3] = 0xE5;
  1778. extradata[4] = 0x80 | (sri<<3);
  1779. extradata_size = 5;
  1780. } else {
  1781. extradata_size = 2;
  1782. }
  1783. track->default_duration = 1024*1000 / audiotrack->internal_samplerate;
  1784. }
  1785. else if (codec_id == CODEC_ID_TTA) {
  1786. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *) track;
  1787. ByteIOContext b;
  1788. extradata_size = 30;
  1789. extradata = av_mallocz(extradata_size);
  1790. if (extradata == NULL)
  1791. return AVERROR_NOMEM;
  1792. init_put_byte(&b, extradata, extradata_size, 1,
  1793. NULL, NULL, NULL, NULL);
  1794. put_buffer(&b, (uint8_t *) "TTA1", 4);
  1795. put_le16(&b, 1);
  1796. put_le16(&b, audiotrack->channels);
  1797. put_le16(&b, audiotrack->bitdepth);
  1798. put_le32(&b, audiotrack->samplerate);
  1799. put_le32(&b, matroska->ctx->duration * audiotrack->samplerate);
  1800. }
  1801. else if (codec_id == CODEC_ID_RV10 || codec_id == CODEC_ID_RV20 ||
  1802. codec_id == CODEC_ID_RV30 || codec_id == CODEC_ID_RV40) {
  1803. extradata_offset = 26;
  1804. track->codec_priv_size -= extradata_offset;
  1805. track->flags |= MATROSKA_TRACK_REAL_V;
  1806. }
  1807. else if (codec_id == CODEC_ID_RA_144) {
  1808. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1809. audiotrack->samplerate = 8000;
  1810. audiotrack->channels = 1;
  1811. }
  1812. else if (codec_id == CODEC_ID_RA_288 ||
  1813. codec_id == CODEC_ID_COOK ||
  1814. codec_id == CODEC_ID_ATRAC3) {
  1815. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1816. ByteIOContext b;
  1817. init_put_byte(&b, track->codec_priv, track->codec_priv_size, 0,
  1818. NULL, NULL, NULL, NULL);
  1819. url_fskip(&b, 24);
  1820. audiotrack->coded_framesize = get_be32(&b);
  1821. url_fskip(&b, 12);
  1822. audiotrack->sub_packet_h = get_be16(&b);
  1823. audiotrack->frame_size = get_be16(&b);
  1824. audiotrack->sub_packet_size = get_be16(&b);
  1825. audiotrack->buf = av_malloc(audiotrack->frame_size * audiotrack->sub_packet_h);
  1826. if (codec_id == CODEC_ID_RA_288) {
  1827. audiotrack->block_align = audiotrack->coded_framesize;
  1828. track->codec_priv_size = 0;
  1829. } else {
  1830. audiotrack->block_align = audiotrack->sub_packet_size;
  1831. extradata_offset = 78;
  1832. track->codec_priv_size -= extradata_offset;
  1833. }
  1834. }
  1835. if (codec_id == CODEC_ID_NONE) {
  1836. av_log(matroska->ctx, AV_LOG_INFO,
  1837. "Unknown/unsupported CodecID %s.\n",
  1838. track->codec_id);
  1839. }
  1840. track->stream_index = matroska->num_streams;
  1841. matroska->num_streams++;
  1842. st = av_new_stream(s, track->stream_index);
  1843. if (st == NULL)
  1844. return AVERROR_NOMEM;
  1845. av_set_pts_info(st, 64, matroska->time_scale, 1000*1000*1000); /* 64 bit pts in ns */
  1846. st->codec->codec_id = codec_id;
  1847. st->start_time = 0;
  1848. if (strcmp(track->language, "und"))
  1849. strcpy(st->language, track->language);
  1850. if (track->default_duration)
  1851. av_reduce(&st->codec->time_base.num, &st->codec->time_base.den,
  1852. track->default_duration, 1000, 30000);
  1853. if(extradata){
  1854. st->codec->extradata = extradata;
  1855. st->codec->extradata_size = extradata_size;
  1856. } else if(track->codec_priv && track->codec_priv_size > 0){
  1857. st->codec->extradata = av_malloc(track->codec_priv_size);
  1858. if(st->codec->extradata == NULL)
  1859. return AVERROR_NOMEM;
  1860. st->codec->extradata_size = track->codec_priv_size;
  1861. memcpy(st->codec->extradata,track->codec_priv+extradata_offset,
  1862. track->codec_priv_size);
  1863. }
  1864. if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
  1865. MatroskaVideoTrack *videotrack = (MatroskaVideoTrack *)track;
  1866. st->codec->codec_type = CODEC_TYPE_VIDEO;
  1867. st->codec->codec_tag = videotrack->fourcc;
  1868. st->codec->width = videotrack->pixel_width;
  1869. st->codec->height = videotrack->pixel_height;
  1870. if (videotrack->display_width == 0)
  1871. videotrack->display_width= videotrack->pixel_width;
  1872. if (videotrack->display_height == 0)
  1873. videotrack->display_height= videotrack->pixel_height;
  1874. av_reduce(&st->codec->sample_aspect_ratio.num,
  1875. &st->codec->sample_aspect_ratio.den,
  1876. st->codec->height * videotrack->display_width,
  1877. st->codec-> width * videotrack->display_height,
  1878. 255);
  1879. st->need_parsing = AVSTREAM_PARSE_HEADERS;
  1880. } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
  1881. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  1882. st->codec->codec_type = CODEC_TYPE_AUDIO;
  1883. st->codec->sample_rate = audiotrack->samplerate;
  1884. st->codec->channels = audiotrack->channels;
  1885. st->codec->block_align = audiotrack->block_align;
  1886. } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
  1887. st->codec->codec_type = CODEC_TYPE_SUBTITLE;
  1888. }
  1889. /* What do we do with private data? E.g. for Vorbis. */
  1890. }
  1891. res = 0;
  1892. }
  1893. if (matroska->index_parsed) {
  1894. int i, track, stream;
  1895. for (i=0; i<matroska->num_indexes; i++) {
  1896. MatroskaDemuxIndex *idx = &matroska->index[i];
  1897. track = matroska_find_track_by_num(matroska, idx->track);
  1898. stream = matroska->tracks[track]->stream_index;
  1899. if (stream >= 0)
  1900. av_add_index_entry(matroska->ctx->streams[stream],
  1901. idx->pos, idx->time/matroska->time_scale,
  1902. 0, 0, AVINDEX_KEYFRAME);
  1903. }
  1904. }
  1905. return res;
  1906. }
  1907. static inline int
  1908. rv_offset(uint8_t *data, int slice, int slices)
  1909. {
  1910. return AV_RL32(data+8*slice+4) + 8*slices;
  1911. }
  1912. static int
  1913. matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size,
  1914. int64_t pos, uint64_t cluster_time, uint64_t duration,
  1915. int is_keyframe, int is_bframe)
  1916. {
  1917. int res = 0;
  1918. int track;
  1919. AVStream *st;
  1920. AVPacket *pkt;
  1921. uint8_t *origdata = data;
  1922. int16_t block_time;
  1923. uint32_t *lace_size = NULL;
  1924. int n, flags, laces = 0;
  1925. uint64_t num;
  1926. /* first byte(s): tracknum */
  1927. if ((n = matroska_ebmlnum_uint(data, size, &num)) < 0) {
  1928. av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
  1929. av_free(origdata);
  1930. return res;
  1931. }
  1932. data += n;
  1933. size -= n;
  1934. /* fetch track from num */
  1935. track = matroska_find_track_by_num(matroska, num);
  1936. if (size <= 3 || track < 0 || track >= matroska->num_tracks) {
  1937. av_log(matroska->ctx, AV_LOG_INFO,
  1938. "Invalid stream %d or size %u\n", track, size);
  1939. av_free(origdata);
  1940. return res;
  1941. }
  1942. if (matroska->tracks[track]->stream_index < 0)
  1943. return res;
  1944. st = matroska->ctx->streams[matroska->tracks[track]->stream_index];
  1945. if (st->discard >= AVDISCARD_ALL) {
  1946. av_free(origdata);
  1947. return res;
  1948. }
  1949. if (duration == AV_NOPTS_VALUE)
  1950. duration = matroska->tracks[track]->default_duration;
  1951. /* block_time (relative to cluster time) */
  1952. block_time = AV_RB16(data);
  1953. data += 2;
  1954. flags = *data++;
  1955. size -= 3;
  1956. if (is_keyframe == -1)
  1957. is_keyframe = flags & 1 ? PKT_FLAG_KEY : 0;
  1958. if (matroska->skip_to_keyframe) {
  1959. if (!is_keyframe || st != matroska->skip_to_stream)
  1960. return res;
  1961. matroska->skip_to_keyframe = 0;
  1962. }
  1963. switch ((flags & 0x06) >> 1) {
  1964. case 0x0: /* no lacing */
  1965. laces = 1;
  1966. lace_size = av_mallocz(sizeof(int));
  1967. lace_size[0] = size;
  1968. break;
  1969. case 0x1: /* xiph lacing */
  1970. case 0x2: /* fixed-size lacing */
  1971. case 0x3: /* EBML lacing */
  1972. if (size == 0) {
  1973. res = -1;
  1974. break;
  1975. }
  1976. laces = (*data) + 1;
  1977. data += 1;
  1978. size -= 1;
  1979. lace_size = av_mallocz(laces * sizeof(int));
  1980. switch ((flags & 0x06) >> 1) {
  1981. case 0x1: /* xiph lacing */ {
  1982. uint8_t temp;
  1983. uint32_t total = 0;
  1984. for (n = 0; res == 0 && n < laces - 1; n++) {
  1985. while (1) {
  1986. if (size == 0) {
  1987. res = -1;
  1988. break;
  1989. }
  1990. temp = *data;
  1991. lace_size[n] += temp;
  1992. data += 1;
  1993. size -= 1;
  1994. if (temp != 0xff)
  1995. break;
  1996. }
  1997. total += lace_size[n];
  1998. }
  1999. lace_size[n] = size - total;
  2000. break;
  2001. }
  2002. case 0x2: /* fixed-size lacing */
  2003. for (n = 0; n < laces; n++)
  2004. lace_size[n] = size / laces;
  2005. break;
  2006. case 0x3: /* EBML lacing */ {
  2007. uint32_t total;
  2008. n = matroska_ebmlnum_uint(data, size, &num);
  2009. if (n < 0) {
  2010. av_log(matroska->ctx, AV_LOG_INFO,
  2011. "EBML block data error\n");
  2012. break;
  2013. }
  2014. data += n;
  2015. size -= n;
  2016. total = lace_size[0] = num;
  2017. for (n = 1; res == 0 && n < laces - 1; n++) {
  2018. int64_t snum;
  2019. int r;
  2020. r = matroska_ebmlnum_sint (data, size, &snum);
  2021. if (r < 0) {
  2022. av_log(matroska->ctx, AV_LOG_INFO,
  2023. "EBML block data error\n");
  2024. break;
  2025. }
  2026. data += r;
  2027. size -= r;
  2028. lace_size[n] = lace_size[n - 1] + snum;
  2029. total += lace_size[n];
  2030. }
  2031. lace_size[n] = size - total;
  2032. break;
  2033. }
  2034. }
  2035. break;
  2036. }
  2037. if (res == 0) {
  2038. int real_v = matroska->tracks[track]->flags & MATROSKA_TRACK_REAL_V;
  2039. uint64_t timecode = AV_NOPTS_VALUE;
  2040. if (cluster_time != (uint64_t)-1 && cluster_time + block_time >= 0)
  2041. timecode = cluster_time + block_time;
  2042. for (n = 0; n < laces; n++) {
  2043. int slice, slices = 1;
  2044. if (real_v) {
  2045. slices = *data++ + 1;
  2046. lace_size[n]--;
  2047. }
  2048. for (slice=0; slice<slices; slice++) {
  2049. int slice_size, slice_offset = 0;
  2050. if (real_v)
  2051. slice_offset = rv_offset(data, slice, slices);
  2052. if (slice+1 == slices)
  2053. slice_size = lace_size[n] - slice_offset;
  2054. else
  2055. slice_size = rv_offset(data, slice+1, slices) - slice_offset;
  2056. if (st->codec->codec_id == CODEC_ID_RA_288 ||
  2057. st->codec->codec_id == CODEC_ID_COOK ||
  2058. st->codec->codec_id == CODEC_ID_ATRAC3) {
  2059. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)matroska->tracks[track];
  2060. int a = st->codec->block_align;
  2061. int sps = audiotrack->sub_packet_size;
  2062. int cfs = audiotrack->coded_framesize;
  2063. int h = audiotrack->sub_packet_h;
  2064. int y = audiotrack->sub_packet_cnt;
  2065. int w = audiotrack->frame_size;
  2066. int x;
  2067. if (!audiotrack->pkt_cnt) {
  2068. if (st->codec->codec_id == CODEC_ID_RA_288)
  2069. for (x=0; x<h/2; x++)
  2070. memcpy(audiotrack->buf+x*2*w+y*cfs,
  2071. data+x*cfs, cfs);
  2072. else
  2073. for (x=0; x<w/sps; x++)
  2074. memcpy(audiotrack->buf+sps*(h*x+((h+1)/2)*(y&1)+(y>>1)), data+x*sps, sps);
  2075. if (++audiotrack->sub_packet_cnt >= h) {
  2076. audiotrack->sub_packet_cnt = 0;
  2077. audiotrack->pkt_cnt = h*w / a;
  2078. }
  2079. }
  2080. while (audiotrack->pkt_cnt) {
  2081. pkt = av_mallocz(sizeof(AVPacket));
  2082. av_new_packet(pkt, a);
  2083. memcpy(pkt->data, audiotrack->buf
  2084. + a * (h*w / a - audiotrack->pkt_cnt--), a);
  2085. pkt->pos = pos;
  2086. pkt->stream_index = matroska->tracks[track]->stream_index;
  2087. matroska_queue_packet(matroska, pkt);
  2088. }
  2089. } else {
  2090. pkt = av_mallocz(sizeof(AVPacket));
  2091. /* XXX: prevent data copy... */
  2092. if (av_new_packet(pkt, slice_size) < 0) {
  2093. res = AVERROR_NOMEM;
  2094. n = laces-1;
  2095. break;
  2096. }
  2097. memcpy (pkt->data, data+slice_offset, slice_size);
  2098. if (n == 0)
  2099. pkt->flags = is_keyframe;
  2100. pkt->stream_index = matroska->tracks[track]->stream_index;
  2101. pkt->pts = timecode;
  2102. pkt->pos = pos;
  2103. pkt->duration = duration;
  2104. matroska_queue_packet(matroska, pkt);
  2105. }
  2106. if (timecode != AV_NOPTS_VALUE)
  2107. timecode = duration ? timecode + duration : AV_NOPTS_VALUE;
  2108. }
  2109. data += lace_size[n];
  2110. }
  2111. }
  2112. av_free(lace_size);
  2113. av_free(origdata);
  2114. return res;
  2115. }
  2116. static int
  2117. matroska_parse_blockgroup (MatroskaDemuxContext *matroska,
  2118. uint64_t cluster_time)
  2119. {
  2120. int res = 0;
  2121. uint32_t id;
  2122. int is_bframe = 0;
  2123. int is_keyframe = PKT_FLAG_KEY, last_num_packets = matroska->num_packets;
  2124. uint64_t duration = AV_NOPTS_VALUE;
  2125. uint8_t *data;
  2126. int size = 0;
  2127. int64_t pos = 0;
  2128. av_log(matroska->ctx, AV_LOG_DEBUG, "parsing blockgroup...\n");
  2129. while (res == 0) {
  2130. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2131. res = AVERROR_IO;
  2132. break;
  2133. } else if (matroska->level_up) {
  2134. matroska->level_up--;
  2135. break;
  2136. }
  2137. switch (id) {
  2138. /* one block inside the group. Note, block parsing is one
  2139. * of the harder things, so this code is a bit complicated.
  2140. * See http://www.matroska.org/ for documentation. */
  2141. case MATROSKA_ID_BLOCK: {
  2142. pos = url_ftell(&matroska->ctx->pb);
  2143. res = ebml_read_binary(matroska, &id, &data, &size);
  2144. break;
  2145. }
  2146. case MATROSKA_ID_BLOCKDURATION: {
  2147. if ((res = ebml_read_uint(matroska, &id, &duration)) < 0)
  2148. break;
  2149. break;
  2150. }
  2151. case MATROSKA_ID_BLOCKREFERENCE: {
  2152. int64_t num;
  2153. /* We've found a reference, so not even the first frame in
  2154. * the lace is a key frame. */
  2155. is_keyframe = 0;
  2156. if (last_num_packets != matroska->num_packets)
  2157. matroska->packets[last_num_packets]->flags = 0;
  2158. if ((res = ebml_read_sint(matroska, &id, &num)) < 0)
  2159. break;
  2160. if (num > 0)
  2161. is_bframe = 1;
  2162. break;
  2163. }
  2164. default:
  2165. av_log(matroska->ctx, AV_LOG_INFO,
  2166. "Unknown entry 0x%x in blockgroup data\n", id);
  2167. /* fall-through */
  2168. case EBML_ID_VOID:
  2169. res = ebml_read_skip(matroska);
  2170. break;
  2171. }
  2172. if (matroska->level_up) {
  2173. matroska->level_up--;
  2174. break;
  2175. }
  2176. }
  2177. if (res)
  2178. return res;
  2179. if (size > 0)
  2180. res = matroska_parse_block(matroska, data, size, pos, cluster_time,
  2181. duration, is_keyframe, is_bframe);
  2182. return res;
  2183. }
  2184. static int
  2185. matroska_parse_cluster (MatroskaDemuxContext *matroska)
  2186. {
  2187. int res = 0;
  2188. uint32_t id;
  2189. uint64_t cluster_time = 0;
  2190. uint8_t *data;
  2191. int64_t pos;
  2192. int size;
  2193. av_log(matroska->ctx, AV_LOG_DEBUG,
  2194. "parsing cluster at %"PRId64"\n", url_ftell(&matroska->ctx->pb));
  2195. while (res == 0) {
  2196. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2197. res = AVERROR_IO;
  2198. break;
  2199. } else if (matroska->level_up) {
  2200. matroska->level_up--;
  2201. break;
  2202. }
  2203. switch (id) {
  2204. /* cluster timecode */
  2205. case MATROSKA_ID_CLUSTERTIMECODE: {
  2206. uint64_t num;
  2207. if ((res = ebml_read_uint(matroska, &id, &num)) < 0)
  2208. break;
  2209. cluster_time = num;
  2210. break;
  2211. }
  2212. /* a group of blocks inside a cluster */
  2213. case MATROSKA_ID_BLOCKGROUP:
  2214. if ((res = ebml_read_master(matroska, &id)) < 0)
  2215. break;
  2216. res = matroska_parse_blockgroup(matroska, cluster_time);
  2217. break;
  2218. case MATROSKA_ID_SIMPLEBLOCK:
  2219. pos = url_ftell(&matroska->ctx->pb);
  2220. res = ebml_read_binary(matroska, &id, &data, &size);
  2221. if (res == 0)
  2222. res = matroska_parse_block(matroska, data, size, pos,
  2223. cluster_time, AV_NOPTS_VALUE,
  2224. -1, 0);
  2225. break;
  2226. default:
  2227. av_log(matroska->ctx, AV_LOG_INFO,
  2228. "Unknown entry 0x%x in cluster data\n", id);
  2229. /* fall-through */
  2230. case EBML_ID_VOID:
  2231. res = ebml_read_skip(matroska);
  2232. break;
  2233. }
  2234. if (matroska->level_up) {
  2235. matroska->level_up--;
  2236. break;
  2237. }
  2238. }
  2239. return res;
  2240. }
  2241. static int
  2242. matroska_read_packet (AVFormatContext *s,
  2243. AVPacket *pkt)
  2244. {
  2245. MatroskaDemuxContext *matroska = s->priv_data;
  2246. int res;
  2247. uint32_t id;
  2248. /* Read stream until we have a packet queued. */
  2249. while (matroska_deliver_packet(matroska, pkt)) {
  2250. /* Have we already reached the end? */
  2251. if (matroska->done)
  2252. return AVERROR_IO;
  2253. res = 0;
  2254. while (res == 0) {
  2255. if (!(id = ebml_peek_id(matroska, &matroska->level_up))) {
  2256. return AVERROR_IO;
  2257. } else if (matroska->level_up) {
  2258. matroska->level_up--;
  2259. break;
  2260. }
  2261. switch (id) {
  2262. case MATROSKA_ID_CLUSTER:
  2263. if ((res = ebml_read_master(matroska, &id)) < 0)
  2264. break;
  2265. if ((res = matroska_parse_cluster(matroska)) == 0)
  2266. res = 1; /* Parsed one cluster, let's get out. */
  2267. break;
  2268. default:
  2269. case EBML_ID_VOID:
  2270. res = ebml_read_skip(matroska);
  2271. break;
  2272. }
  2273. if (matroska->level_up) {
  2274. matroska->level_up--;
  2275. break;
  2276. }
  2277. }
  2278. if (res == -1)
  2279. matroska->done = 1;
  2280. }
  2281. return 0;
  2282. }
  2283. static int
  2284. matroska_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp,
  2285. int flags)
  2286. {
  2287. MatroskaDemuxContext *matroska = s->priv_data;
  2288. AVStream *st = s->streams[stream_index];
  2289. int index;
  2290. /* find index entry */
  2291. index = av_index_search_timestamp(st, timestamp, flags);
  2292. if (index < 0)
  2293. return 0;
  2294. /* do the seek */
  2295. url_fseek(&s->pb, st->index_entries[index].pos, SEEK_SET);
  2296. matroska->skip_to_keyframe = !(flags & AVSEEK_FLAG_ANY);
  2297. matroska->skip_to_stream = st;
  2298. matroska->num_packets = 0;
  2299. matroska->peek_id = 0;
  2300. return 0;
  2301. }
  2302. static int
  2303. matroska_read_close (AVFormatContext *s)
  2304. {
  2305. MatroskaDemuxContext *matroska = s->priv_data;
  2306. int n = 0;
  2307. av_free(matroska->writing_app);
  2308. av_free(matroska->muxing_app);
  2309. av_free(matroska->index);
  2310. if (matroska->packets != NULL) {
  2311. for (n = 0; n < matroska->num_packets; n++) {
  2312. av_free_packet(matroska->packets[n]);
  2313. av_free(matroska->packets[n]);
  2314. }
  2315. av_free(matroska->packets);
  2316. }
  2317. for (n = 0; n < matroska->num_tracks; n++) {
  2318. MatroskaTrack *track = matroska->tracks[n];
  2319. av_free(track->codec_id);
  2320. av_free(track->codec_name);
  2321. av_free(track->codec_priv);
  2322. av_free(track->name);
  2323. if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
  2324. MatroskaAudioTrack *audiotrack = (MatroskaAudioTrack *)track;
  2325. av_free(audiotrack->buf);
  2326. }
  2327. av_free(track);
  2328. }
  2329. return 0;
  2330. }
  2331. AVInputFormat matroska_demuxer = {
  2332. "matroska",
  2333. "Matroska file format",
  2334. sizeof(MatroskaDemuxContext),
  2335. matroska_probe,
  2336. matroska_read_header,
  2337. matroska_read_packet,
  2338. matroska_read_close,
  2339. matroska_read_seek,
  2340. };