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.

1133 lines
41KB

  1. /*
  2. * Windows Television (WTV) demuxer
  3. * Copyright (c) 2010-2011 Peter Ross <pross@xvid.org>
  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
  23. * Windows Television (WTV) demuxer
  24. * @author Peter Ross <pross@xvid.org>
  25. */
  26. #include <inttypes.h>
  27. #include "libavutil/channel_layout.h"
  28. #include "libavutil/intreadwrite.h"
  29. #include "libavutil/intfloat.h"
  30. #include "libavutil/time_internal.h"
  31. #include "avformat.h"
  32. #include "internal.h"
  33. #include "wtv.h"
  34. #include "mpegts.h"
  35. /* Macros for formating GUIDs */
  36. #define PRI_PRETTY_GUID \
  37. "%08"PRIx32"-%04"PRIx16"-%04"PRIx16"-%02x%02x%02x%02x%02x%02x%02x%02x"
  38. #define ARG_PRETTY_GUID(g) \
  39. AV_RL32(g),AV_RL16(g+4),AV_RL16(g+6),g[8],g[9],g[10],g[11],g[12],g[13],g[14],g[15]
  40. #define LEN_PRETTY_GUID 34
  41. /*
  42. *
  43. * File system routines
  44. *
  45. */
  46. typedef struct WtvFile {
  47. AVIOContext *pb_filesystem; /**< file system (AVFormatContext->pb) */
  48. int sector_bits; /**< sector shift bits; used to convert sector number into pb_filesystem offset */
  49. uint32_t *sectors; /**< file allocation table */
  50. int nb_sectors; /**< number of sectors */
  51. int error;
  52. int64_t position;
  53. int64_t length;
  54. } WtvFile;
  55. static int64_t seek_by_sector(AVIOContext *pb, int64_t sector, int64_t offset)
  56. {
  57. return avio_seek(pb, (sector << WTV_SECTOR_BITS) + offset, SEEK_SET);
  58. }
  59. /**
  60. * @return bytes read, 0 on end of file, or <0 on error
  61. */
  62. static int wtvfile_read_packet(void *opaque, uint8_t *buf, int buf_size)
  63. {
  64. WtvFile *wf = opaque;
  65. AVIOContext *pb = wf->pb_filesystem;
  66. int nread = 0;
  67. if (wf->error || pb->error)
  68. return -1;
  69. if (wf->position >= wf->length || avio_feof(pb))
  70. return 0;
  71. buf_size = FFMIN(buf_size, wf->length - wf->position);
  72. while(nread < buf_size) {
  73. int n;
  74. int remaining_in_sector = (1 << wf->sector_bits) - (wf->position & ((1 << wf->sector_bits) - 1));
  75. int read_request = FFMIN(buf_size - nread, remaining_in_sector);
  76. n = avio_read(pb, buf, read_request);
  77. if (n <= 0)
  78. break;
  79. nread += n;
  80. buf += n;
  81. wf->position += n;
  82. if (n == remaining_in_sector) {
  83. int i = wf->position >> wf->sector_bits;
  84. if (i >= wf->nb_sectors ||
  85. (wf->sectors[i] != wf->sectors[i - 1] + (1 << (wf->sector_bits - WTV_SECTOR_BITS)) &&
  86. seek_by_sector(pb, wf->sectors[i], 0) < 0)) {
  87. wf->error = 1;
  88. break;
  89. }
  90. }
  91. }
  92. return nread;
  93. }
  94. /**
  95. * @return position (or file length)
  96. */
  97. static int64_t wtvfile_seek(void *opaque, int64_t offset, int whence)
  98. {
  99. WtvFile *wf = opaque;
  100. AVIOContext *pb = wf->pb_filesystem;
  101. if (whence == AVSEEK_SIZE)
  102. return wf->length;
  103. else if (whence == SEEK_CUR)
  104. offset = wf->position + offset;
  105. else if (whence == SEEK_END)
  106. offset = wf->length;
  107. wf->error = offset < 0 || offset >= wf->length ||
  108. seek_by_sector(pb, wf->sectors[offset >> wf->sector_bits],
  109. offset & ((1 << wf->sector_bits) - 1)) < 0;
  110. wf->position = offset;
  111. return offset;
  112. }
  113. /**
  114. * read non-zero integers (le32) from input stream
  115. * @param pb
  116. * @param[out] data destination
  117. * @param count maximum number of integers to read
  118. * @return total number of integers read
  119. */
  120. static int read_ints(AVIOContext *pb, uint32_t *data, int count)
  121. {
  122. int i, total = 0;
  123. for (i = 0; i < count; i++) {
  124. if ((data[total] = avio_rl32(pb)))
  125. total++;
  126. }
  127. return total;
  128. }
  129. /**
  130. * Open file
  131. * @param first_sector First sector
  132. * @param length Length of file (bytes)
  133. * @param depth File allocation table depth
  134. * @return NULL on error
  135. */
  136. static AVIOContext * wtvfile_open_sector(int first_sector, uint64_t length, int depth, AVFormatContext *s)
  137. {
  138. AVIOContext *pb;
  139. WtvFile *wf;
  140. uint8_t *buffer;
  141. int64_t size;
  142. if (seek_by_sector(s->pb, first_sector, 0) < 0)
  143. return NULL;
  144. wf = av_mallocz(sizeof(WtvFile));
  145. if (!wf)
  146. return NULL;
  147. if (depth == 0) {
  148. wf->sectors = av_malloc(sizeof(uint32_t));
  149. if (!wf->sectors) {
  150. av_free(wf);
  151. return NULL;
  152. }
  153. wf->sectors[0] = first_sector;
  154. wf->nb_sectors = 1;
  155. } else if (depth == 1) {
  156. wf->sectors = av_malloc(WTV_SECTOR_SIZE);
  157. if (!wf->sectors) {
  158. av_free(wf);
  159. return NULL;
  160. }
  161. wf->nb_sectors = read_ints(s->pb, wf->sectors, WTV_SECTOR_SIZE / 4);
  162. } else if (depth == 2) {
  163. uint32_t sectors1[WTV_SECTOR_SIZE / 4];
  164. int nb_sectors1 = read_ints(s->pb, sectors1, WTV_SECTOR_SIZE / 4);
  165. int i;
  166. wf->sectors = av_malloc_array(nb_sectors1, 1 << WTV_SECTOR_BITS);
  167. if (!wf->sectors) {
  168. av_free(wf);
  169. return NULL;
  170. }
  171. wf->nb_sectors = 0;
  172. for (i = 0; i < nb_sectors1; i++) {
  173. if (seek_by_sector(s->pb, sectors1[i], 0) < 0)
  174. break;
  175. wf->nb_sectors += read_ints(s->pb, wf->sectors + i * WTV_SECTOR_SIZE / 4, WTV_SECTOR_SIZE / 4);
  176. }
  177. } else {
  178. av_log(s, AV_LOG_ERROR, "unsupported file allocation table depth (0x%x)\n", depth);
  179. av_free(wf);
  180. return NULL;
  181. }
  182. wf->sector_bits = length & (1ULL<<63) ? WTV_SECTOR_BITS : WTV_BIGSECTOR_BITS;
  183. if (!wf->nb_sectors) {
  184. av_freep(&wf->sectors);
  185. av_freep(&wf);
  186. return NULL;
  187. }
  188. size = avio_size(s->pb);
  189. if (size >= 0 && (int64_t)wf->sectors[wf->nb_sectors - 1] << WTV_SECTOR_BITS > size)
  190. av_log(s, AV_LOG_WARNING, "truncated file\n");
  191. /* check length */
  192. length &= 0xFFFFFFFFFFFF;
  193. if (length > ((int64_t)wf->nb_sectors << wf->sector_bits)) {
  194. av_log(s, AV_LOG_WARNING, "reported file length (0x%"PRIx64") exceeds number of available sectors (0x%"PRIx64")\n", length, (int64_t)wf->nb_sectors << wf->sector_bits);
  195. length = (int64_t)wf->nb_sectors << wf->sector_bits;
  196. }
  197. wf->length = length;
  198. /* seek to initial sector */
  199. wf->position = 0;
  200. if (seek_by_sector(s->pb, wf->sectors[0], 0) < 0) {
  201. av_freep(&wf->sectors);
  202. av_freep(&wf);
  203. return NULL;
  204. }
  205. wf->pb_filesystem = s->pb;
  206. buffer = av_malloc(1 << wf->sector_bits);
  207. if (!buffer) {
  208. av_freep(&wf->sectors);
  209. av_freep(&wf);
  210. return NULL;
  211. }
  212. pb = avio_alloc_context(buffer, 1 << wf->sector_bits, 0, wf,
  213. wtvfile_read_packet, NULL, wtvfile_seek);
  214. if (!pb) {
  215. av_freep(&buffer);
  216. av_freep(&wf->sectors);
  217. av_freep(&wf);
  218. }
  219. return pb;
  220. }
  221. /**
  222. * Open file using filename
  223. * @param[in] buf directory buffer
  224. * @param buf_size directory buffer size
  225. * @param[in] filename
  226. * @param filename_size size of filename
  227. * @return NULL on error
  228. */
  229. static AVIOContext * wtvfile_open2(AVFormatContext *s, const uint8_t *buf, int buf_size, const uint8_t *filename, int filename_size)
  230. {
  231. const uint8_t *buf_end = buf + buf_size;
  232. while(buf + 48 <= buf_end) {
  233. int dir_length, name_size, first_sector, depth;
  234. uint64_t file_length;
  235. const uint8_t *name;
  236. if (ff_guidcmp(buf, ff_dir_entry_guid)) {
  237. av_log(s, AV_LOG_ERROR, "unknown guid "FF_PRI_GUID", expected dir_entry_guid; "
  238. "remaining directory entries ignored\n", FF_ARG_GUID(buf));
  239. break;
  240. }
  241. dir_length = AV_RL16(buf + 16);
  242. file_length = AV_RL64(buf + 24);
  243. name_size = 2 * AV_RL32(buf + 32);
  244. if (name_size < 0) {
  245. av_log(s, AV_LOG_ERROR,
  246. "bad filename length, remaining directory entries ignored\n");
  247. break;
  248. }
  249. if (48 + (int64_t)name_size > buf_end - buf) {
  250. av_log(s, AV_LOG_ERROR, "filename exceeds buffer size; remaining directory entries ignored\n");
  251. break;
  252. }
  253. first_sector = AV_RL32(buf + 40 + name_size);
  254. depth = AV_RL32(buf + 44 + name_size);
  255. /* compare file name; test optional null terminator */
  256. name = buf + 40;
  257. if (name_size >= filename_size &&
  258. !memcmp(name, filename, filename_size) &&
  259. (name_size < filename_size + 2 || !AV_RN16(name + filename_size)))
  260. return wtvfile_open_sector(first_sector, file_length, depth, s);
  261. buf += dir_length;
  262. }
  263. return 0;
  264. }
  265. #define wtvfile_open(s, buf, buf_size, filename) \
  266. wtvfile_open2(s, buf, buf_size, filename, sizeof(filename))
  267. /**
  268. * Close file opened with wtvfile_open_sector(), or wtv_open()
  269. */
  270. static void wtvfile_close(AVIOContext *pb)
  271. {
  272. WtvFile *wf = pb->opaque;
  273. av_freep(&wf->sectors);
  274. av_freep(&pb->opaque);
  275. av_freep(&pb->buffer);
  276. av_free(pb);
  277. }
  278. /*
  279. *
  280. * Main demuxer
  281. *
  282. */
  283. typedef struct WtvStream {
  284. int seen_data;
  285. } WtvStream;
  286. typedef struct WtvContext {
  287. AVIOContext *pb; /**< timeline file */
  288. int64_t epoch;
  289. int64_t pts; /**< pts for next data chunk */
  290. int64_t last_valid_pts; /**< latest valid pts, used for interative seeking */
  291. /* maintain private seek index, as the AVIndexEntry->pos is relative to the
  292. start of the 'timeline' file, not the file system (AVFormatContext->pb) */
  293. AVIndexEntry *index_entries;
  294. int nb_index_entries;
  295. unsigned int index_entries_allocated_size;
  296. } WtvContext;
  297. /* WTV GUIDs */
  298. static const ff_asf_guid EVENTID_SubtitleSpanningEvent =
  299. {0x48,0xC0,0xCE,0x5D,0xB9,0xD0,0x63,0x41,0x87,0x2C,0x4F,0x32,0x22,0x3B,0xE8,0x8A};
  300. static const ff_asf_guid EVENTID_LanguageSpanningEvent =
  301. {0x6D,0x66,0x92,0xE2,0x02,0x9C,0x8D,0x44,0xAA,0x8D,0x78,0x1A,0x93,0xFD,0xC3,0x95};
  302. static const ff_asf_guid EVENTID_AudioDescriptorSpanningEvent =
  303. {0x1C,0xD4,0x7B,0x10,0xDA,0xA6,0x91,0x46,0x83,0x69,0x11,0xB2,0xCD,0xAA,0x28,0x8E};
  304. static const ff_asf_guid EVENTID_CtxADescriptorSpanningEvent =
  305. {0xE6,0xA2,0xB4,0x3A,0x47,0x42,0x34,0x4B,0x89,0x6C,0x30,0xAF,0xA5,0xD2,0x1C,0x24};
  306. static const ff_asf_guid EVENTID_CSDescriptorSpanningEvent =
  307. {0xD9,0x79,0xE7,0xEf,0xF0,0x97,0x86,0x47,0x80,0x0D,0x95,0xCF,0x50,0x5D,0xDC,0x66};
  308. static const ff_asf_guid EVENTID_DVBScramblingControlSpanningEvent =
  309. {0xC4,0xE1,0xD4,0x4B,0xA1,0x90,0x09,0x41,0x82,0x36,0x27,0xF0,0x0E,0x7D,0xCC,0x5B};
  310. static const ff_asf_guid EVENTID_StreamIDSpanningEvent =
  311. {0x68,0xAB,0xF1,0xCA,0x53,0xE1,0x41,0x4D,0xA6,0xB3,0xA7,0xC9,0x98,0xDB,0x75,0xEE};
  312. static const ff_asf_guid EVENTID_TeletextSpanningEvent =
  313. {0x50,0xD9,0x99,0x95,0x33,0x5F,0x17,0x46,0xAF,0x7C,0x1E,0x54,0xB5,0x10,0xDA,0xA3};
  314. static const ff_asf_guid EVENTID_AudioTypeSpanningEvent =
  315. {0xBE,0xBF,0x1C,0x50,0x49,0xB8,0xCE,0x42,0x9B,0xE9,0x3D,0xB8,0x69,0xFB,0x82,0xB3};
  316. /* Windows media GUIDs */
  317. /* Media types */
  318. static const ff_asf_guid mediasubtype_mpeg1payload =
  319. {0x81,0xEB,0x36,0xE4,0x4F,0x52,0xCE,0x11,0x9F,0x53,0x00,0x20,0xAF,0x0B,0xA7,0x70};
  320. static const ff_asf_guid mediatype_mpeg2_sections =
  321. {0x6C,0x17,0x5F,0x45,0x06,0x4B,0xCE,0x47,0x9A,0xEF,0x8C,0xAE,0xF7,0x3D,0xF7,0xB5};
  322. static const ff_asf_guid mediatype_mpeg2_pes =
  323. {0x20,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA};
  324. static const ff_asf_guid mediatype_mstvcaption =
  325. {0x89,0x8A,0x8B,0xB8,0x49,0xB0,0x80,0x4C,0xAD,0xCF,0x58,0x98,0x98,0x5E,0x22,0xC1};
  326. /* Media subtypes */
  327. static const ff_asf_guid mediasubtype_dvb_subtitle =
  328. {0xC3,0xCB,0xFF,0x34,0xB3,0xD5,0x71,0x41,0x90,0x02,0xD4,0xC6,0x03,0x01,0x69,0x7F};
  329. static const ff_asf_guid mediasubtype_teletext =
  330. {0xE3,0x76,0x2A,0xF7,0x0A,0xEB,0xD0,0x11,0xAC,0xE4,0x00,0x00,0xC0,0xCC,0x16,0xBA};
  331. static const ff_asf_guid mediasubtype_dtvccdata =
  332. {0xAA,0xDD,0x2A,0xF5,0xF0,0x36,0xF5,0x43,0x95,0xEA,0x6D,0x86,0x64,0x84,0x26,0x2A};
  333. static const ff_asf_guid mediasubtype_mpeg2_sections =
  334. {0x79,0x85,0x9F,0x4A,0xF8,0x6B,0x92,0x43,0x8A,0x6D,0xD2,0xDD,0x09,0xFA,0x78,0x61};
  335. static int read_probe(AVProbeData *p)
  336. {
  337. return ff_guidcmp(p->buf, ff_wtv_guid) ? 0 : AVPROBE_SCORE_MAX;
  338. }
  339. /**
  340. * Convert win32 FILETIME to ISO-8601 string
  341. * @return <0 on error
  342. */
  343. static int filetime_to_iso8601(char *buf, int buf_size, int64_t value)
  344. {
  345. time_t t = (value / 10000000LL) - 11644473600LL;
  346. struct tm tmbuf;
  347. struct tm *tm = gmtime_r(&t, &tmbuf);
  348. if (!tm)
  349. return -1;
  350. if (!strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", tm))
  351. return -1;
  352. return 0;
  353. }
  354. /**
  355. * Convert crazy time (100ns since 1 Jan 0001) to ISO-8601 string
  356. * @return <0 on error
  357. */
  358. static int crazytime_to_iso8601(char *buf, int buf_size, int64_t value)
  359. {
  360. time_t t = (value / 10000000LL) - 719162LL*86400LL;
  361. struct tm tmbuf;
  362. struct tm *tm = gmtime_r(&t, &tmbuf);
  363. if (!tm)
  364. return -1;
  365. if (!strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", tm))
  366. return -1;
  367. return 0;
  368. }
  369. /**
  370. * Convert OLE DATE to ISO-8601 string
  371. * @return <0 on error
  372. */
  373. static int oledate_to_iso8601(char *buf, int buf_size, int64_t value)
  374. {
  375. time_t t = (av_int2double(value) - 25569.0) * 86400;
  376. struct tm tmbuf;
  377. struct tm *tm= gmtime_r(&t, &tmbuf);
  378. if (!tm)
  379. return -1;
  380. if (!strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", tm))
  381. return -1;
  382. return 0;
  383. }
  384. static void get_attachment(AVFormatContext *s, AVIOContext *pb, int length)
  385. {
  386. char mime[1024];
  387. char description[1024];
  388. unsigned int filesize;
  389. AVStream *st;
  390. int ret;
  391. int64_t pos = avio_tell(pb);
  392. avio_get_str16le(pb, INT_MAX, mime, sizeof(mime));
  393. if (strcmp(mime, "image/jpeg"))
  394. goto done;
  395. avio_r8(pb);
  396. avio_get_str16le(pb, INT_MAX, description, sizeof(description));
  397. filesize = avio_rl32(pb);
  398. if (!filesize)
  399. goto done;
  400. st = avformat_new_stream(s, NULL);
  401. if (!st)
  402. goto done;
  403. av_dict_set(&st->metadata, "title", description, 0);
  404. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  405. st->codec->codec_id = AV_CODEC_ID_MJPEG;
  406. st->id = -1;
  407. ret = av_get_packet(pb, &st->attached_pic, filesize);
  408. if (ret < 0)
  409. goto done;
  410. st->attached_pic.stream_index = st->index;
  411. st->attached_pic.flags |= AV_PKT_FLAG_KEY;
  412. st->disposition |= AV_DISPOSITION_ATTACHED_PIC;
  413. done:
  414. avio_seek(pb, pos + length, SEEK_SET);
  415. }
  416. static void get_tag(AVFormatContext *s, AVIOContext *pb, const char *key, int type, int length)
  417. {
  418. int buf_size;
  419. char *buf;
  420. if (!strcmp(key, "WM/MediaThumbType")) {
  421. avio_skip(pb, length);
  422. return;
  423. }
  424. buf_size = FFMAX(2*length, LEN_PRETTY_GUID) + 1;
  425. buf = av_malloc(buf_size);
  426. if (!buf)
  427. return;
  428. if (type == 0 && length == 4) {
  429. snprintf(buf, buf_size, "%u", avio_rl32(pb));
  430. } else if (type == 1) {
  431. avio_get_str16le(pb, length, buf, buf_size);
  432. if (!strlen(buf)) {
  433. av_free(buf);
  434. return;
  435. }
  436. } else if (type == 3 && length == 4) {
  437. strcpy(buf, avio_rl32(pb) ? "true" : "false");
  438. } else if (type == 4 && length == 8) {
  439. int64_t num = avio_rl64(pb);
  440. if (!strcmp(key, "WM/EncodingTime") ||
  441. !strcmp(key, "WM/MediaOriginalBroadcastDateTime")) {
  442. if (filetime_to_iso8601(buf, buf_size, num) < 0) {
  443. av_free(buf);
  444. return;
  445. }
  446. } else if (!strcmp(key, "WM/WMRVEncodeTime") ||
  447. !strcmp(key, "WM/WMRVEndTime")) {
  448. if (crazytime_to_iso8601(buf, buf_size, num) < 0) {
  449. av_free(buf);
  450. return;
  451. }
  452. } else if (!strcmp(key, "WM/WMRVExpirationDate")) {
  453. if (oledate_to_iso8601(buf, buf_size, num) < 0 ) {
  454. av_free(buf);
  455. return;
  456. }
  457. } else if (!strcmp(key, "WM/WMRVBitrate"))
  458. snprintf(buf, buf_size, "%f", av_int2double(num));
  459. else
  460. snprintf(buf, buf_size, "%"PRIi64, num);
  461. } else if (type == 5 && length == 2) {
  462. snprintf(buf, buf_size, "%u", avio_rl16(pb));
  463. } else if (type == 6 && length == 16) {
  464. ff_asf_guid guid;
  465. avio_read(pb, guid, 16);
  466. snprintf(buf, buf_size, PRI_PRETTY_GUID, ARG_PRETTY_GUID(guid));
  467. } else if (type == 2 && !strcmp(key, "WM/Picture")) {
  468. get_attachment(s, pb, length);
  469. av_freep(&buf);
  470. return;
  471. } else {
  472. av_freep(&buf);
  473. av_log(s, AV_LOG_WARNING, "unsupported metadata entry; key:%s, type:%d, length:0x%x\n", key, type, length);
  474. avio_skip(pb, length);
  475. return;
  476. }
  477. av_dict_set(&s->metadata, key, buf, 0);
  478. av_freep(&buf);
  479. }
  480. /**
  481. * Parse metadata entries
  482. */
  483. static void parse_legacy_attrib(AVFormatContext *s, AVIOContext *pb)
  484. {
  485. ff_asf_guid guid;
  486. int length, type;
  487. while(!avio_feof(pb)) {
  488. char key[1024];
  489. ff_get_guid(pb, &guid);
  490. type = avio_rl32(pb);
  491. length = avio_rl32(pb);
  492. if (!length)
  493. break;
  494. if (ff_guidcmp(&guid, ff_metadata_guid)) {
  495. av_log(s, AV_LOG_WARNING, "unknown guid "FF_PRI_GUID", expected metadata_guid; "
  496. "remaining metadata entries ignored\n", FF_ARG_GUID(guid));
  497. break;
  498. }
  499. avio_get_str16le(pb, INT_MAX, key, sizeof(key));
  500. get_tag(s, pb, key, type, length);
  501. }
  502. ff_metadata_conv(&s->metadata, NULL, ff_asf_metadata_conv);
  503. }
  504. /**
  505. * parse VIDEOINFOHEADER2 structure
  506. * @return bytes consumed
  507. */
  508. static int parse_videoinfoheader2(AVFormatContext *s, AVStream *st)
  509. {
  510. WtvContext *wtv = s->priv_data;
  511. AVIOContext *pb = wtv->pb;
  512. avio_skip(pb, 72); // picture aspect ratio is unreliable
  513. st->codec->codec_tag = ff_get_bmp_header(pb, st, NULL);
  514. return 72 + 40;
  515. }
  516. /**
  517. * Parse MPEG1WAVEFORMATEX extradata structure
  518. */
  519. static void parse_mpeg1waveformatex(AVStream *st)
  520. {
  521. /* fwHeadLayer */
  522. switch (AV_RL16(st->codec->extradata)) {
  523. case 0x0001 : st->codec->codec_id = AV_CODEC_ID_MP1; break;
  524. case 0x0002 : st->codec->codec_id = AV_CODEC_ID_MP2; break;
  525. case 0x0004 : st->codec->codec_id = AV_CODEC_ID_MP3; break;
  526. }
  527. st->codec->bit_rate = AV_RL32(st->codec->extradata + 2); /* dwHeadBitrate */
  528. /* dwHeadMode */
  529. switch (AV_RL16(st->codec->extradata + 6)) {
  530. case 1 :
  531. case 2 :
  532. case 4 : st->codec->channels = 2;
  533. st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
  534. break;
  535. case 8 : st->codec->channels = 1;
  536. st->codec->channel_layout = AV_CH_LAYOUT_MONO;
  537. break;
  538. }
  539. }
  540. /**
  541. * Initialise stream
  542. * @param st Stream to initialise, or NULL to create and initialise new stream
  543. * @return NULL on error
  544. */
  545. static AVStream * new_stream(AVFormatContext *s, AVStream *st, int sid, int codec_type)
  546. {
  547. if (st) {
  548. if (st->codec->extradata) {
  549. av_freep(&st->codec->extradata);
  550. st->codec->extradata_size = 0;
  551. }
  552. } else {
  553. WtvStream *wst = av_mallocz(sizeof(WtvStream));
  554. if (!wst)
  555. return NULL;
  556. st = avformat_new_stream(s, NULL);
  557. if (!st) {
  558. av_free(wst);
  559. return NULL;
  560. }
  561. st->id = sid;
  562. st->priv_data = wst;
  563. }
  564. st->codec->codec_type = codec_type;
  565. st->need_parsing = AVSTREAM_PARSE_FULL;
  566. avpriv_set_pts_info(st, 64, 1, 10000000);
  567. return st;
  568. }
  569. /**
  570. * parse Media Type structure and populate stream
  571. * @param st Stream, or NULL to create new stream
  572. * @param mediatype Mediatype GUID
  573. * @param subtype Subtype GUID
  574. * @param formattype Format GUID
  575. * @param size Size of format buffer
  576. * @return NULL on error
  577. */
  578. static AVStream * parse_media_type(AVFormatContext *s, AVStream *st, int sid,
  579. ff_asf_guid mediatype, ff_asf_guid subtype,
  580. ff_asf_guid formattype, uint64_t size)
  581. {
  582. WtvContext *wtv = s->priv_data;
  583. AVIOContext *pb = wtv->pb;
  584. if (!ff_guidcmp(subtype, ff_mediasubtype_cpfilters_processed) &&
  585. !ff_guidcmp(formattype, ff_format_cpfilters_processed)) {
  586. ff_asf_guid actual_subtype;
  587. ff_asf_guid actual_formattype;
  588. if (size < 32) {
  589. av_log(s, AV_LOG_WARNING, "format buffer size underflow\n");
  590. avio_skip(pb, size);
  591. return NULL;
  592. }
  593. avio_skip(pb, size - 32);
  594. ff_get_guid(pb, &actual_subtype);
  595. ff_get_guid(pb, &actual_formattype);
  596. avio_seek(pb, -size, SEEK_CUR);
  597. st = parse_media_type(s, st, sid, mediatype, actual_subtype, actual_formattype, size - 32);
  598. avio_skip(pb, 32);
  599. return st;
  600. } else if (!ff_guidcmp(mediatype, ff_mediatype_audio)) {
  601. st = new_stream(s, st, sid, AVMEDIA_TYPE_AUDIO);
  602. if (!st)
  603. return NULL;
  604. if (!ff_guidcmp(formattype, ff_format_waveformatex)) {
  605. int ret = ff_get_wav_header(pb, st->codec, size, 0);
  606. if (ret < 0)
  607. return NULL;
  608. } else {
  609. if (ff_guidcmp(formattype, ff_format_none))
  610. av_log(s, AV_LOG_WARNING, "unknown formattype:"FF_PRI_GUID"\n", FF_ARG_GUID(formattype));
  611. avio_skip(pb, size);
  612. }
  613. if (!memcmp(subtype + 4, (const uint8_t[]){FF_MEDIASUBTYPE_BASE_GUID}, 12)) {
  614. st->codec->codec_id = ff_wav_codec_get_id(AV_RL32(subtype), st->codec->bits_per_coded_sample);
  615. } else if (!ff_guidcmp(subtype, mediasubtype_mpeg1payload)) {
  616. if (st->codec->extradata && st->codec->extradata_size >= 22)
  617. parse_mpeg1waveformatex(st);
  618. else
  619. av_log(s, AV_LOG_WARNING, "MPEG1WAVEFORMATEX underflow\n");
  620. } else {
  621. st->codec->codec_id = ff_codec_guid_get_id(ff_codec_wav_guids, subtype);
  622. if (st->codec->codec_id == AV_CODEC_ID_NONE)
  623. av_log(s, AV_LOG_WARNING, "unknown subtype:"FF_PRI_GUID"\n", FF_ARG_GUID(subtype));
  624. }
  625. return st;
  626. } else if (!ff_guidcmp(mediatype, ff_mediatype_video)) {
  627. st = new_stream(s, st, sid, AVMEDIA_TYPE_VIDEO);
  628. if (!st)
  629. return NULL;
  630. if (!ff_guidcmp(formattype, ff_format_videoinfo2)) {
  631. int consumed = parse_videoinfoheader2(s, st);
  632. avio_skip(pb, FFMAX(size - consumed, 0));
  633. } else if (!ff_guidcmp(formattype, ff_format_mpeg2_video)) {
  634. uint64_t consumed = parse_videoinfoheader2(s, st);
  635. /* ignore extradata; files produced by windows media center contain meaningless mpeg1 sequence header */
  636. avio_skip(pb, FFMAX(size - consumed, 0));
  637. } else {
  638. if (ff_guidcmp(formattype, ff_format_none))
  639. av_log(s, AV_LOG_WARNING, "unknown formattype:"FF_PRI_GUID"\n", FF_ARG_GUID(formattype));
  640. avio_skip(pb, size);
  641. }
  642. if (!memcmp(subtype + 4, (const uint8_t[]){FF_MEDIASUBTYPE_BASE_GUID}, 12)) {
  643. st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, AV_RL32(subtype));
  644. } else {
  645. st->codec->codec_id = ff_codec_guid_get_id(ff_video_guids, subtype);
  646. }
  647. if (st->codec->codec_id == AV_CODEC_ID_NONE)
  648. av_log(s, AV_LOG_WARNING, "unknown subtype:"FF_PRI_GUID"\n", FF_ARG_GUID(subtype));
  649. return st;
  650. } else if (!ff_guidcmp(mediatype, mediatype_mpeg2_pes) &&
  651. !ff_guidcmp(subtype, mediasubtype_dvb_subtitle)) {
  652. st = new_stream(s, st, sid, AVMEDIA_TYPE_SUBTITLE);
  653. if (!st)
  654. return NULL;
  655. if (ff_guidcmp(formattype, ff_format_none))
  656. av_log(s, AV_LOG_WARNING, "unknown formattype:"FF_PRI_GUID"\n", FF_ARG_GUID(formattype));
  657. avio_skip(pb, size);
  658. st->codec->codec_id = AV_CODEC_ID_DVB_SUBTITLE;
  659. return st;
  660. } else if (!ff_guidcmp(mediatype, mediatype_mstvcaption) &&
  661. (!ff_guidcmp(subtype, mediasubtype_teletext) || !ff_guidcmp(subtype, mediasubtype_dtvccdata))) {
  662. st = new_stream(s, st, sid, AVMEDIA_TYPE_SUBTITLE);
  663. if (!st)
  664. return NULL;
  665. if (ff_guidcmp(formattype, ff_format_none))
  666. av_log(s, AV_LOG_WARNING, "unknown formattype:"FF_PRI_GUID"\n", FF_ARG_GUID(formattype));
  667. avio_skip(pb, size);
  668. st->codec->codec_id = !ff_guidcmp(subtype, mediasubtype_teletext) ? AV_CODEC_ID_DVB_TELETEXT : AV_CODEC_ID_EIA_608;
  669. return st;
  670. } else if (!ff_guidcmp(mediatype, mediatype_mpeg2_sections) &&
  671. !ff_guidcmp(subtype, mediasubtype_mpeg2_sections)) {
  672. if (ff_guidcmp(formattype, ff_format_none))
  673. av_log(s, AV_LOG_WARNING, "unknown formattype:"FF_PRI_GUID"\n", FF_ARG_GUID(formattype));
  674. avio_skip(pb, size);
  675. return NULL;
  676. }
  677. av_log(s, AV_LOG_WARNING, "unknown media type, mediatype:"FF_PRI_GUID
  678. ", subtype:"FF_PRI_GUID", formattype:"FF_PRI_GUID"\n",
  679. FF_ARG_GUID(mediatype), FF_ARG_GUID(subtype), FF_ARG_GUID(formattype));
  680. avio_skip(pb, size);
  681. return NULL;
  682. }
  683. enum {
  684. SEEK_TO_DATA = 0,
  685. SEEK_TO_PTS,
  686. };
  687. /**
  688. * Try to seek over a broken chunk
  689. * @return <0 on error
  690. */
  691. static int recover(WtvContext *wtv, uint64_t broken_pos)
  692. {
  693. AVIOContext *pb = wtv->pb;
  694. int i;
  695. for (i = 0; i < wtv->nb_index_entries; i++) {
  696. if (wtv->index_entries[i].pos > broken_pos) {
  697. int64_t ret = avio_seek(pb, wtv->index_entries[i].pos, SEEK_SET);
  698. if (ret < 0)
  699. return ret;
  700. wtv->pts = wtv->index_entries[i].timestamp;
  701. return 0;
  702. }
  703. }
  704. return AVERROR(EIO);
  705. }
  706. /**
  707. * Parse WTV chunks
  708. * @param mode SEEK_TO_DATA or SEEK_TO_PTS
  709. * @param seekts timestamp
  710. * @param[out] len_ptr Length of data chunk
  711. * @return stream index of data chunk, or <0 on error
  712. */
  713. static int parse_chunks(AVFormatContext *s, int mode, int64_t seekts, int *len_ptr)
  714. {
  715. WtvContext *wtv = s->priv_data;
  716. AVIOContext *pb = wtv->pb;
  717. while (!avio_feof(pb)) {
  718. ff_asf_guid g;
  719. int len, sid, consumed;
  720. ff_get_guid(pb, &g);
  721. len = avio_rl32(pb);
  722. if (len < 32) {
  723. int ret;
  724. if (avio_feof(pb))
  725. return AVERROR_EOF;
  726. av_log(s, AV_LOG_WARNING, "encountered broken chunk\n");
  727. if ((ret = recover(wtv, avio_tell(pb) - 20)) < 0)
  728. return ret;
  729. continue;
  730. }
  731. sid = avio_rl32(pb) & 0x7FFF;
  732. avio_skip(pb, 8);
  733. consumed = 32;
  734. if (!ff_guidcmp(g, ff_SBE2_STREAM_DESC_EVENT)) {
  735. if (ff_find_stream_index(s, sid) < 0) {
  736. ff_asf_guid mediatype, subtype, formattype;
  737. int size;
  738. avio_skip(pb, 28);
  739. ff_get_guid(pb, &mediatype);
  740. ff_get_guid(pb, &subtype);
  741. avio_skip(pb, 12);
  742. ff_get_guid(pb, &formattype);
  743. size = avio_rl32(pb);
  744. parse_media_type(s, 0, sid, mediatype, subtype, formattype, size);
  745. consumed += 92 + size;
  746. }
  747. } else if (!ff_guidcmp(g, ff_stream2_guid)) {
  748. int stream_index = ff_find_stream_index(s, sid);
  749. if (stream_index >= 0 && s->streams[stream_index]->priv_data && !((WtvStream*)s->streams[stream_index]->priv_data)->seen_data) {
  750. ff_asf_guid mediatype, subtype, formattype;
  751. int size;
  752. avio_skip(pb, 12);
  753. ff_get_guid(pb, &mediatype);
  754. ff_get_guid(pb, &subtype);
  755. avio_skip(pb, 12);
  756. ff_get_guid(pb, &formattype);
  757. size = avio_rl32(pb);
  758. parse_media_type(s, s->streams[stream_index], sid, mediatype, subtype, formattype, size);
  759. consumed += 76 + size;
  760. }
  761. } else if (!ff_guidcmp(g, EVENTID_AudioDescriptorSpanningEvent) ||
  762. !ff_guidcmp(g, EVENTID_CtxADescriptorSpanningEvent) ||
  763. !ff_guidcmp(g, EVENTID_CSDescriptorSpanningEvent) ||
  764. !ff_guidcmp(g, EVENTID_StreamIDSpanningEvent) ||
  765. !ff_guidcmp(g, EVENTID_SubtitleSpanningEvent) ||
  766. !ff_guidcmp(g, EVENTID_TeletextSpanningEvent)) {
  767. int stream_index = ff_find_stream_index(s, sid);
  768. if (stream_index >= 0) {
  769. AVStream *st = s->streams[stream_index];
  770. uint8_t buf[258];
  771. const uint8_t *pbuf = buf;
  772. int buf_size;
  773. avio_skip(pb, 8);
  774. consumed += 8;
  775. if (!ff_guidcmp(g, EVENTID_CtxADescriptorSpanningEvent) ||
  776. !ff_guidcmp(g, EVENTID_CSDescriptorSpanningEvent)) {
  777. avio_skip(pb, 6);
  778. consumed += 6;
  779. }
  780. buf_size = FFMIN(len - consumed, sizeof(buf));
  781. avio_read(pb, buf, buf_size);
  782. consumed += buf_size;
  783. ff_parse_mpeg2_descriptor(s, st, 0, &pbuf, buf + buf_size, NULL, 0, 0, NULL);
  784. }
  785. } else if (!ff_guidcmp(g, EVENTID_AudioTypeSpanningEvent)) {
  786. int stream_index = ff_find_stream_index(s, sid);
  787. if (stream_index >= 0) {
  788. AVStream *st = s->streams[stream_index];
  789. int audio_type;
  790. avio_skip(pb, 8);
  791. audio_type = avio_r8(pb);
  792. if (audio_type == 2)
  793. st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
  794. else if (audio_type == 3)
  795. st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED;
  796. consumed += 9;
  797. }
  798. } else if (!ff_guidcmp(g, EVENTID_DVBScramblingControlSpanningEvent)) {
  799. int stream_index = ff_find_stream_index(s, sid);
  800. if (stream_index >= 0) {
  801. avio_skip(pb, 12);
  802. if (avio_rl32(pb))
  803. av_log(s, AV_LOG_WARNING, "DVB scrambled stream detected (st:%d), decoding will likely fail\n", stream_index);
  804. consumed += 16;
  805. }
  806. } else if (!ff_guidcmp(g, EVENTID_LanguageSpanningEvent)) {
  807. int stream_index = ff_find_stream_index(s, sid);
  808. if (stream_index >= 0) {
  809. AVStream *st = s->streams[stream_index];
  810. uint8_t language[4];
  811. avio_skip(pb, 12);
  812. avio_read(pb, language, 3);
  813. if (language[0]) {
  814. language[3] = 0;
  815. av_dict_set(&st->metadata, "language", language, 0);
  816. if (!strcmp(language, "nar") || !strcmp(language, "NAR"))
  817. st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED;
  818. }
  819. consumed += 15;
  820. }
  821. } else if (!ff_guidcmp(g, ff_timestamp_guid)) {
  822. int stream_index = ff_find_stream_index(s, sid);
  823. if (stream_index >= 0) {
  824. avio_skip(pb, 8);
  825. wtv->pts = avio_rl64(pb);
  826. consumed += 16;
  827. if (wtv->pts == -1)
  828. wtv->pts = AV_NOPTS_VALUE;
  829. else {
  830. wtv->last_valid_pts = wtv->pts;
  831. if (wtv->epoch == AV_NOPTS_VALUE || wtv->pts < wtv->epoch)
  832. wtv->epoch = wtv->pts;
  833. if (mode == SEEK_TO_PTS && wtv->pts >= seekts) {
  834. avio_skip(pb, WTV_PAD8(len) - consumed);
  835. return 0;
  836. }
  837. }
  838. }
  839. } else if (!ff_guidcmp(g, ff_data_guid)) {
  840. int stream_index = ff_find_stream_index(s, sid);
  841. if (mode == SEEK_TO_DATA && stream_index >= 0 && len > 32 && s->streams[stream_index]->priv_data) {
  842. WtvStream *wst = s->streams[stream_index]->priv_data;
  843. wst->seen_data = 1;
  844. if (len_ptr) {
  845. *len_ptr = len;
  846. }
  847. return stream_index;
  848. }
  849. } else if (!ff_guidcmp(g, /* DSATTRIB_WMDRMProtectionInfo */ (const ff_asf_guid){0x83,0x95,0x74,0x40,0x9D,0x6B,0xEC,0x4E,0xB4,0x3C,0x67,0xA1,0x80,0x1E,0x1A,0x9B})) {
  850. int stream_index = ff_find_stream_index(s, sid);
  851. if (stream_index >= 0)
  852. av_log(s, AV_LOG_WARNING, "encrypted stream detected (st:%d), decoding will likely fail\n", stream_index);
  853. } else if (
  854. !ff_guidcmp(g, /* DSATTRIB_CAPTURE_STREAMTIME */ (const ff_asf_guid){0x14,0x56,0x1A,0x0C,0xCD,0x30,0x40,0x4F,0xBC,0xBF,0xD0,0x3E,0x52,0x30,0x62,0x07}) ||
  855. !ff_guidcmp(g, /* DSATTRIB_PBDATAG_ATTRIBUTE */ (const ff_asf_guid){0x79,0x66,0xB5,0xE0,0xB9,0x12,0xCC,0x43,0xB7,0xDF,0x57,0x8C,0xAA,0x5A,0x7B,0x63}) ||
  856. !ff_guidcmp(g, /* DSATTRIB_PicSampleSeq */ (const ff_asf_guid){0x02,0xAE,0x5B,0x2F,0x8F,0x7B,0x60,0x4F,0x82,0xD6,0xE4,0xEA,0x2F,0x1F,0x4C,0x99}) ||
  857. !ff_guidcmp(g, /* DSATTRIB_TRANSPORT_PROPERTIES */ ff_DSATTRIB_TRANSPORT_PROPERTIES) ||
  858. !ff_guidcmp(g, /* dvr_ms_vid_frame_rep_data */ (const ff_asf_guid){0xCC,0x32,0x64,0xDD,0x29,0xE2,0xDB,0x40,0x80,0xF6,0xD2,0x63,0x28,0xD2,0x76,0x1F}) ||
  859. !ff_guidcmp(g, /* EVENTID_ChannelChangeSpanningEvent */ (const ff_asf_guid){0xE5,0xC5,0x67,0x90,0x5C,0x4C,0x05,0x42,0x86,0xC8,0x7A,0xFE,0x20,0xFE,0x1E,0xFA}) ||
  860. !ff_guidcmp(g, /* EVENTID_ChannelInfoSpanningEvent */ (const ff_asf_guid){0x80,0x6D,0xF3,0x41,0x32,0x41,0xC2,0x4C,0xB1,0x21,0x01,0xA4,0x32,0x19,0xD8,0x1B}) ||
  861. !ff_guidcmp(g, /* EVENTID_ChannelTypeSpanningEvent */ (const ff_asf_guid){0x51,0x1D,0xAB,0x72,0xD2,0x87,0x9B,0x48,0xBA,0x11,0x0E,0x08,0xDC,0x21,0x02,0x43}) ||
  862. !ff_guidcmp(g, /* EVENTID_PIDListSpanningEvent */ (const ff_asf_guid){0x65,0x8F,0xFC,0x47,0xBB,0xE2,0x34,0x46,0x9C,0xEF,0xFD,0xBF,0xE6,0x26,0x1D,0x5C}) ||
  863. !ff_guidcmp(g, /* EVENTID_SignalAndServiceStatusSpanningEvent */ (const ff_asf_guid){0xCB,0xC5,0x68,0x80,0x04,0x3C,0x2B,0x49,0xB4,0x7D,0x03,0x08,0x82,0x0D,0xCE,0x51}) ||
  864. !ff_guidcmp(g, /* EVENTID_StreamTypeSpanningEvent */ (const ff_asf_guid){0xBC,0x2E,0xAF,0x82,0xA6,0x30,0x64,0x42,0xA8,0x0B,0xAD,0x2E,0x13,0x72,0xAC,0x60}) ||
  865. !ff_guidcmp(g, (const ff_asf_guid){0x1E,0xBE,0xC3,0xC5,0x43,0x92,0xDC,0x11,0x85,0xE5,0x00,0x12,0x3F,0x6F,0x73,0xB9}) ||
  866. !ff_guidcmp(g, (const ff_asf_guid){0x3B,0x86,0xA2,0xB1,0xEB,0x1E,0xC3,0x44,0x8C,0x88,0x1C,0xA3,0xFF,0xE3,0xE7,0x6A}) ||
  867. !ff_guidcmp(g, (const ff_asf_guid){0x4E,0x7F,0x4C,0x5B,0xC4,0xD0,0x38,0x4B,0xA8,0x3E,0x21,0x7F,0x7B,0xBF,0x52,0xE7}) ||
  868. !ff_guidcmp(g, (const ff_asf_guid){0x63,0x36,0xEB,0xFE,0xA1,0x7E,0xD9,0x11,0x83,0x08,0x00,0x07,0xE9,0x5E,0xAD,0x8D}) ||
  869. !ff_guidcmp(g, (const ff_asf_guid){0x70,0xE9,0xF1,0xF8,0x89,0xA4,0x4C,0x4D,0x83,0x73,0xB8,0x12,0xE0,0xD5,0xF8,0x1E}) ||
  870. !ff_guidcmp(g, ff_index_guid) ||
  871. !ff_guidcmp(g, ff_sync_guid) ||
  872. !ff_guidcmp(g, ff_stream1_guid) ||
  873. !ff_guidcmp(g, (const ff_asf_guid){0xF7,0x10,0x02,0xB9,0xEE,0x7C,0xED,0x4E,0xBD,0x7F,0x05,0x40,0x35,0x86,0x18,0xA1})) {
  874. //ignore known guids
  875. } else
  876. av_log(s, AV_LOG_WARNING, "unsupported chunk:"FF_PRI_GUID"\n", FF_ARG_GUID(g));
  877. avio_skip(pb, WTV_PAD8(len) - consumed);
  878. }
  879. return AVERROR_EOF;
  880. }
  881. static int read_header(AVFormatContext *s)
  882. {
  883. WtvContext *wtv = s->priv_data;
  884. int root_sector, root_size;
  885. uint8_t root[WTV_SECTOR_SIZE];
  886. AVIOContext *pb;
  887. int64_t timeline_pos;
  888. int64_t ret;
  889. wtv->epoch =
  890. wtv->pts =
  891. wtv->last_valid_pts = AV_NOPTS_VALUE;
  892. /* read root directory sector */
  893. avio_skip(s->pb, 0x30);
  894. root_size = avio_rl32(s->pb);
  895. if (root_size > sizeof(root)) {
  896. av_log(s, AV_LOG_ERROR, "root directory size exceeds sector size\n");
  897. return AVERROR_INVALIDDATA;
  898. }
  899. avio_skip(s->pb, 4);
  900. root_sector = avio_rl32(s->pb);
  901. ret = seek_by_sector(s->pb, root_sector, 0);
  902. if (ret < 0)
  903. return ret;
  904. root_size = avio_read(s->pb, root, root_size);
  905. if (root_size < 0)
  906. return AVERROR_INVALIDDATA;
  907. /* parse chunks up until first data chunk */
  908. wtv->pb = wtvfile_open(s, root, root_size, ff_timeline_le16);
  909. if (!wtv->pb) {
  910. av_log(s, AV_LOG_ERROR, "timeline data missing\n");
  911. return AVERROR_INVALIDDATA;
  912. }
  913. ret = parse_chunks(s, SEEK_TO_DATA, 0, 0);
  914. if (ret < 0)
  915. return ret;
  916. avio_seek(wtv->pb, -32, SEEK_CUR);
  917. timeline_pos = avio_tell(s->pb); // save before opening another file
  918. /* read metadata */
  919. pb = wtvfile_open(s, root, root_size, ff_table_0_entries_legacy_attrib_le16);
  920. if (pb) {
  921. parse_legacy_attrib(s, pb);
  922. wtvfile_close(pb);
  923. }
  924. /* read seek index */
  925. if (s->nb_streams) {
  926. AVStream *st = s->streams[0];
  927. pb = wtvfile_open(s, root, root_size, ff_table_0_entries_time_le16);
  928. if (pb) {
  929. while(1) {
  930. uint64_t timestamp = avio_rl64(pb);
  931. uint64_t frame_nb = avio_rl64(pb);
  932. if (avio_feof(pb))
  933. break;
  934. ff_add_index_entry(&wtv->index_entries, &wtv->nb_index_entries, &wtv->index_entries_allocated_size,
  935. 0, timestamp, frame_nb, 0, AVINDEX_KEYFRAME);
  936. }
  937. wtvfile_close(pb);
  938. if (wtv->nb_index_entries) {
  939. pb = wtvfile_open(s, root, root_size, ff_timeline_table_0_entries_Events_le16);
  940. if (pb) {
  941. int i;
  942. while (1) {
  943. uint64_t frame_nb = avio_rl64(pb);
  944. uint64_t position = avio_rl64(pb);
  945. if (avio_feof(pb))
  946. break;
  947. for (i = wtv->nb_index_entries - 1; i >= 0; i--) {
  948. AVIndexEntry *e = wtv->index_entries + i;
  949. if (frame_nb > e->size)
  950. break;
  951. if (position > e->pos)
  952. e->pos = position;
  953. }
  954. }
  955. wtvfile_close(pb);
  956. st->duration = wtv->index_entries[wtv->nb_index_entries - 1].timestamp;
  957. }
  958. }
  959. }
  960. }
  961. avio_seek(s->pb, timeline_pos, SEEK_SET);
  962. return 0;
  963. }
  964. static int read_packet(AVFormatContext *s, AVPacket *pkt)
  965. {
  966. WtvContext *wtv = s->priv_data;
  967. AVIOContext *pb = wtv->pb;
  968. int stream_index, len, ret;
  969. stream_index = parse_chunks(s, SEEK_TO_DATA, 0, &len);
  970. if (stream_index < 0)
  971. return stream_index;
  972. ret = av_get_packet(pb, pkt, len - 32);
  973. if (ret < 0)
  974. return ret;
  975. pkt->stream_index = stream_index;
  976. pkt->pts = wtv->pts;
  977. avio_skip(pb, WTV_PAD8(len) - len);
  978. return 0;
  979. }
  980. static int read_seek(AVFormatContext *s, int stream_index,
  981. int64_t ts, int flags)
  982. {
  983. WtvContext *wtv = s->priv_data;
  984. AVIOContext *pb = wtv->pb;
  985. AVStream *st = s->streams[0];
  986. int64_t ts_relative;
  987. int i;
  988. if ((flags & AVSEEK_FLAG_FRAME) || (flags & AVSEEK_FLAG_BYTE))
  989. return AVERROR(ENOSYS);
  990. /* timestamp adjustment is required because wtv->pts values are absolute,
  991. * whereas AVIndexEntry->timestamp values are relative to epoch. */
  992. ts_relative = ts;
  993. if (wtv->epoch != AV_NOPTS_VALUE)
  994. ts_relative -= wtv->epoch;
  995. i = ff_index_search_timestamp(wtv->index_entries, wtv->nb_index_entries, ts_relative, flags);
  996. if (i < 0) {
  997. if (wtv->last_valid_pts == AV_NOPTS_VALUE || ts < wtv->last_valid_pts) {
  998. if (avio_seek(pb, 0, SEEK_SET) < 0)
  999. return -1;
  1000. } else if (st->duration != AV_NOPTS_VALUE && ts_relative > st->duration && wtv->nb_index_entries) {
  1001. if (avio_seek(pb, wtv->index_entries[wtv->nb_index_entries - 1].pos, SEEK_SET) < 0)
  1002. return -1;
  1003. }
  1004. if (parse_chunks(s, SEEK_TO_PTS, ts, 0) < 0)
  1005. return AVERROR(ERANGE);
  1006. return 0;
  1007. }
  1008. if (avio_seek(pb, wtv->index_entries[i].pos, SEEK_SET) < 0)
  1009. return -1;
  1010. wtv->pts = wtv->index_entries[i].timestamp;
  1011. if (wtv->epoch != AV_NOPTS_VALUE)
  1012. wtv->pts += wtv->epoch;
  1013. wtv->last_valid_pts = wtv->pts;
  1014. return 0;
  1015. }
  1016. static int read_close(AVFormatContext *s)
  1017. {
  1018. WtvContext *wtv = s->priv_data;
  1019. av_freep(&wtv->index_entries);
  1020. wtvfile_close(wtv->pb);
  1021. return 0;
  1022. }
  1023. AVInputFormat ff_wtv_demuxer = {
  1024. .name = "wtv",
  1025. .long_name = NULL_IF_CONFIG_SMALL("Windows Television (WTV)"),
  1026. .priv_data_size = sizeof(WtvContext),
  1027. .read_probe = read_probe,
  1028. .read_header = read_header,
  1029. .read_packet = read_packet,
  1030. .read_seek = read_seek,
  1031. .read_close = read_close,
  1032. .flags = AVFMT_SHOW_IDS,
  1033. };