00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00028 #include "libavutil/intreadwrite.h"
00029 #include "libavutil/intfloat_readwrite.h"
00030 #include "avformat.h"
00031 #include "internal.h"
00032 #include "riff.h"
00033 #include "asf.h"
00034 #include "mpegts.h"
00035 #include <strings.h>
00036
00037
00038 #define PRI_GUID \
00039 "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
00040 #define ARG_GUID(g) \
00041 g[0],g[1],g[2],g[3],g[4],g[5],g[6],g[7],g[8],g[9],g[10],g[11],g[12],g[13],g[14],g[15]
00042
00043 #define PRI_PRETTY_GUID \
00044 "%08x-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x"
00045 #define ARG_PRETTY_GUID(g) \
00046 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]
00047 #define LEN_PRETTY_GUID 34
00048
00049
00050
00051
00052
00053
00054
00055 #define WTV_SECTOR_BITS 12
00056 #define WTV_SECTOR_SIZE (1 << WTV_SECTOR_BITS)
00057 #define WTV_BIGSECTOR_BITS 18
00058
00059 typedef struct {
00060 AVIOContext *pb_filesystem;
00062 int sector_bits;
00063 uint32_t *sectors;
00064 int nb_sectors;
00066 int error;
00067 int64_t position;
00068 int64_t length;
00069 } WtvFile;
00070
00074 static int wtvfile_read_packet(void *opaque, uint8_t *buf, int buf_size)
00075 {
00076 WtvFile *wf = opaque;
00077 AVIOContext *pb = wf->pb_filesystem;
00078 int nread = 0;
00079
00080 if (wf->error || url_ferror(pb))
00081 return -1;
00082 if (wf->position >= wf->length || url_feof(pb))
00083 return 0;
00084
00085 buf_size = FFMIN(buf_size, wf->length - wf->position);
00086 while(nread < buf_size) {
00087 int n;
00088 int remaining_in_sector = (1 << wf->sector_bits) - (wf->position & ((1 << wf->sector_bits) - 1));
00089 int read_request = FFMIN(buf_size - nread, remaining_in_sector);
00090
00091 n = avio_read(pb, buf, read_request);
00092 if (n <= 0)
00093 break;
00094 nread += n;
00095 buf += n;
00096 wf->position += n;
00097 if (n == remaining_in_sector) {
00098 int i = wf->position >> wf->sector_bits;
00099 if (i >= wf->nb_sectors ||
00100 (wf->sectors[i] != wf->sectors[i - 1] + (1 << (wf->sector_bits - WTV_SECTOR_BITS)) &&
00101 avio_seek(pb, (int64_t)wf->sectors[i] << WTV_SECTOR_BITS, SEEK_SET) < 0)) {
00102 wf->error = 1;
00103 break;
00104 }
00105 }
00106 }
00107 return nread;
00108 }
00109
00113 static int64_t wtvfile_seek(void *opaque, int64_t offset, int whence)
00114 {
00115 WtvFile *wf = opaque;
00116 AVIOContext *pb = wf->pb_filesystem;
00117
00118 if (whence == AVSEEK_SIZE)
00119 return wf->length;
00120 else if (whence == SEEK_CUR)
00121 offset = wf->position + offset;
00122 else if (whence == SEEK_END)
00123 offset = wf->length;
00124
00125 wf->error = offset < 0 || offset >= wf->length ||
00126 avio_seek(pb, ((int64_t)wf->sectors[offset >> wf->sector_bits] << WTV_SECTOR_BITS)
00127 + (offset & ((1 << wf->sector_bits) - 1)), SEEK_SET) < 0;
00128 wf->position = offset;
00129 return offset;
00130 }
00131
00139 static int read_ints(AVIOContext *pb, uint32_t *data, int count)
00140 {
00141 int i, total = 0;
00142 for (i = 0; i < count; i++) {
00143 if ((data[total] = avio_rl32(pb)))
00144 total++;
00145 }
00146 return total;
00147 }
00148
00156 static AVIOContext * wtvfile_open_sector(int first_sector, uint64_t length, int depth, AVFormatContext *s)
00157 {
00158 AVIOContext *pb;
00159 WtvFile *wf;
00160 uint8_t *buffer;
00161
00162 if (avio_seek(s->pb, first_sector << WTV_SECTOR_BITS, SEEK_SET) < 0)
00163 return NULL;
00164
00165 wf = av_mallocz(sizeof(WtvFile));
00166 if (!wf)
00167 return NULL;
00168
00169 if (depth == 0) {
00170 wf->sectors = av_malloc(sizeof(uint32_t));
00171 if (!wf->sectors) {
00172 av_free(wf);
00173 return NULL;
00174 }
00175 wf->sectors[0] = first_sector;
00176 wf->nb_sectors = 1;
00177 wf->sector_bits = WTV_SECTOR_BITS;
00178 } else if (depth == 1) {
00179 wf->sectors = av_malloc(WTV_SECTOR_SIZE);
00180 if (!wf->sectors) {
00181 av_free(wf);
00182 return NULL;
00183 }
00184 wf->nb_sectors = read_ints(s->pb, wf->sectors, WTV_SECTOR_SIZE / 4);
00185 wf->sector_bits = length & (1ULL<<63) ? WTV_SECTOR_BITS : WTV_BIGSECTOR_BITS;
00186 } else if (depth == 2) {
00187 uint32_t sectors1[WTV_SECTOR_SIZE / 4];
00188 int nb_sectors1 = read_ints(s->pb, sectors1, WTV_SECTOR_SIZE / 4);
00189 int i;
00190
00191 wf->sectors = av_malloc(nb_sectors1 << WTV_SECTOR_BITS);
00192 if (!wf->sectors) {
00193 av_free(wf);
00194 return NULL;
00195 }
00196 wf->nb_sectors = 0;
00197 for (i = 0; i < nb_sectors1; i++) {
00198 if (avio_seek(s->pb, (int64_t)sectors1[i] << WTV_SECTOR_BITS, SEEK_SET) < 0)
00199 break;
00200 wf->nb_sectors += read_ints(s->pb, wf->sectors + i * WTV_SECTOR_SIZE / 4, WTV_SECTOR_SIZE / 4);
00201 }
00202 wf->sector_bits = length & (1ULL<<63) ? WTV_SECTOR_BITS : WTV_BIGSECTOR_BITS;
00203 } else {
00204 av_log(s, AV_LOG_ERROR, "unsupported file allocation table depth (0x%x)\n", depth);
00205 av_free(wf);
00206 return NULL;
00207 }
00208
00209 if (!wf->nb_sectors) {
00210 av_free(wf->sectors);
00211 av_free(wf);
00212 return NULL;
00213 }
00214
00215
00216 length &= 0xFFFFFFFFFFFF;
00217 if (length > ((int64_t)wf->nb_sectors << wf->sector_bits)) {
00218 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);
00219 length = (int64_t)wf->nb_sectors << wf->sector_bits;
00220 }
00221 wf->length = length;
00222
00223
00224 wf->position = 0;
00225 if (avio_seek(s->pb, (int64_t)wf->sectors[0] << WTV_SECTOR_BITS, SEEK_SET) < 0) {
00226 av_free(wf->sectors);
00227 av_free(wf);
00228 return NULL;
00229 }
00230
00231 wf->pb_filesystem = s->pb;
00232 buffer = av_malloc(1 << wf->sector_bits);
00233 if (!buffer) {
00234 av_free(wf->sectors);
00235 av_free(wf);
00236 return NULL;
00237 }
00238
00239 pb = avio_alloc_context(buffer, 1 << wf->sector_bits, 0, wf,
00240 wtvfile_read_packet, NULL, wtvfile_seek);
00241 if (!pb) {
00242 av_free(buffer);
00243 av_free(wf->sectors);
00244 av_free(wf);
00245 }
00246 return pb;
00247 }
00248
00249 static const ff_asf_guid dir_entry_guid =
00250 {0x92,0xB7,0x74,0x91,0x59,0x70,0x70,0x44,0x88,0xDF,0x06,0x3B,0x82,0xCC,0x21,0x3D};
00251
00260 static AVIOContext * wtvfile_open2(AVFormatContext *s, const uint8_t *buf, int buf_size, const uint8_t *filename, int filename_size)
00261 {
00262 const uint8_t *buf_end = buf + buf_size;
00263
00264 while(buf + 48 <= buf_end) {
00265 int dir_length, name_size, first_sector, depth;
00266 uint64_t file_length;
00267 const uint8_t *name;
00268 if (ff_guidcmp(buf, dir_entry_guid)) {
00269 av_log(s, AV_LOG_ERROR, "unknown guid "PRI_GUID", expected dir_entry_guid; "
00270 "remaining directory entries ignored\n", ARG_GUID(buf));
00271 break;
00272 }
00273 dir_length = AV_RL16(buf + 16);
00274 file_length = AV_RL64(buf + 24);
00275 name_size = 2 * AV_RL32(buf + 32);
00276 if (buf + 48 + name_size > buf_end) {
00277 av_log(s, AV_LOG_ERROR, "filename exceeds buffer size; remaining directory entries ignored\n");
00278 break;
00279 }
00280 first_sector = AV_RL32(buf + 40 + name_size);
00281 depth = AV_RL32(buf + 44 + name_size);
00282
00283
00284 name = buf + 40;
00285 if (name_size >= filename_size &&
00286 !memcmp(name, filename, filename_size) &&
00287 (name_size < filename_size + 2 || !AV_RN16(name + filename_size)))
00288 return wtvfile_open_sector(first_sector, file_length, depth, s);
00289
00290 buf += dir_length;
00291 }
00292 return 0;
00293 }
00294
00295 #define wtvfile_open(s, buf, buf_size, filename) \
00296 wtvfile_open2(s, buf, buf_size, filename, sizeof(filename))
00297
00301 static void wtvfile_close(AVIOContext *pb)
00302 {
00303 WtvFile *wf = pb->opaque;
00304 av_free(wf->sectors);
00305 av_free(pb);
00306 }
00307
00308
00309
00310
00311
00312
00313
00314 typedef struct {
00315 int seen_data;
00316 } WtvStream;
00317
00318 typedef struct {
00319 AVIOContext *pb;
00320 int64_t epoch;
00321 int64_t pts;
00322 int64_t last_valid_pts;
00324
00325
00326 AVIndexEntry *index_entries;
00327 int nb_index_entries;
00328 unsigned int index_entries_allocated_size;
00329 } WtvContext;
00330
00331 typedef struct {
00332 enum CodecID id;
00333 ff_asf_guid guid;
00334 } AVCodecGuid;
00335
00336 static enum CodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
00337 {
00338 int i;
00339 for (i = 0; guids[i].id != CODEC_ID_NONE; i++) {
00340 if (!ff_guidcmp(guids[i].guid, guid))
00341 return guids[i].id;
00342 }
00343 return CODEC_ID_NONE;
00344 }
00345
00346
00347 static const ff_asf_guid wtv_guid =
00348 {0xB7,0xD8,0x00,0x20,0x37,0x49,0xDA,0x11,0xA6,0x4E,0x00,0x07,0xE9,0x5E,0xAD,0x8D};
00349 static const ff_asf_guid metadata_guid =
00350 {0x5A,0xFE,0xD7,0x6D,0xC8,0x1D,0x8F,0x4A,0x99,0x22,0xFA,0xB1,0x1C,0x38,0x14,0x53};
00351 static const ff_asf_guid timestamp_guid =
00352 {0x5B,0x05,0xE6,0x1B,0x97,0xA9,0x49,0x43,0x88,0x17,0x1A,0x65,0x5A,0x29,0x8A,0x97};
00353 static const ff_asf_guid data_guid =
00354 {0x95,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D};
00355 static const ff_asf_guid stream_guid =
00356 {0xED,0xA4,0x13,0x23,0x2D,0xBF,0x4F,0x45,0xAD,0x8A,0xD9,0x5B,0xA7,0xF9,0x1F,0xEE};
00357 static const ff_asf_guid stream2_guid =
00358 {0xA2,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D};
00359 static const ff_asf_guid EVENTID_SubtitleSpanningEvent =
00360 {0x48,0xC0,0xCE,0x5D,0xB9,0xD0,0x63,0x41,0x87,0x2C,0x4F,0x32,0x22,0x3B,0xE8,0x8A};
00361 static const ff_asf_guid EVENTID_LanguageSpanningEvent =
00362 {0x6D,0x66,0x92,0xE2,0x02,0x9C,0x8D,0x44,0xAA,0x8D,0x78,0x1A,0x93,0xFD,0xC3,0x95};
00363 static const ff_asf_guid EVENTID_AudioDescriptorSpanningEvent =
00364 {0x1C,0xD4,0x7B,0x10,0xDA,0xA6,0x91,0x46,0x83,0x69,0x11,0xB2,0xCD,0xAA,0x28,0x8E};
00365 static const ff_asf_guid EVENTID_CtxADescriptorSpanningEvent =
00366 {0xE6,0xA2,0xB4,0x3A,0x47,0x42,0x34,0x4B,0x89,0x6C,0x30,0xAF,0xA5,0xD2,0x1C,0x24};
00367 static const ff_asf_guid EVENTID_CSDescriptorSpanningEvent =
00368 {0xD9,0x79,0xE7,0xEf,0xF0,0x97,0x86,0x47,0x80,0x0D,0x95,0xCF,0x50,0x5D,0xDC,0x66};
00369 static const ff_asf_guid EVENTID_DVBScramblingControlSpanningEvent =
00370 {0xC4,0xE1,0xD4,0x4B,0xA1,0x90,0x09,0x41,0x82,0x36,0x27,0xF0,0x0E,0x7D,0xCC,0x5B};
00371 static const ff_asf_guid EVENTID_StreamIDSpanningEvent =
00372 {0x68,0xAB,0xF1,0xCA,0x53,0xE1,0x41,0x4D,0xA6,0xB3,0xA7,0xC9,0x98,0xDB,0x75,0xEE};
00373 static const ff_asf_guid EVENTID_TeletextSpanningEvent =
00374 {0x50,0xD9,0x99,0x95,0x33,0x5F,0x17,0x46,0xAF,0x7C,0x1E,0x54,0xB5,0x10,0xDA,0xA3};
00375 static const ff_asf_guid EVENTID_AudioTypeSpanningEvent =
00376 {0xBE,0xBF,0x1C,0x50,0x49,0xB8,0xCE,0x42,0x9B,0xE9,0x3D,0xB8,0x69,0xFB,0x82,0xB3};
00377
00378
00379
00380 #define MEDIASUBTYPE_BASE_GUID \
00381 0x00,0x00,0x10,0x00,0x80,0x00,0x00,0xAA,0x00,0x38,0x9B,0x71
00382
00383
00384 static const ff_asf_guid mediatype_audio =
00385 {'a','u','d','s',MEDIASUBTYPE_BASE_GUID};
00386 static const ff_asf_guid mediatype_video =
00387 {'v','i','d','s',MEDIASUBTYPE_BASE_GUID};
00388 static const ff_asf_guid mediasubtype_mpeg1payload =
00389 {0x81,0xEB,0x36,0xE4,0x4F,0x52,0xCE,0x11,0x9F,0x53,0x00,0x20,0xAF,0x0B,0xA7,0x70};
00390 static const ff_asf_guid mediatype_mpeg2_sections =
00391 {0x6C,0x17,0x5F,0x45,0x06,0x4B,0xCE,0x47,0x9A,0xEF,0x8C,0xAE,0xF7,0x3D,0xF7,0xB5};
00392 static const ff_asf_guid mediatype_mpeg2_pes =
00393 {0x20,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA};
00394 static const ff_asf_guid mediatype_mstvcaption =
00395 {0x89,0x8A,0x8B,0xB8,0x49,0xB0,0x80,0x4C,0xAD,0xCF,0x58,0x98,0x98,0x5E,0x22,0xC1};
00396
00397
00398 static const ff_asf_guid mediasubtype_cpfilters_processed =
00399 {0x28,0xBD,0xAD,0x46,0xD0,0x6F,0x96,0x47,0x93,0xB2,0x15,0x5C,0x51,0xDC,0x04,0x8D};
00400 static const ff_asf_guid mediasubtype_dvb_subtitle =
00401 {0xC3,0xCB,0xFF,0x34,0xB3,0xD5,0x71,0x41,0x90,0x02,0xD4,0xC6,0x03,0x01,0x69,0x7F};
00402 static const ff_asf_guid mediasubtype_teletext =
00403 {0xE3,0x76,0x2A,0xF7,0x0A,0xEB,0xD0,0x11,0xAC,0xE4,0x00,0x00,0xC0,0xCC,0x16,0xBA};
00404 static const ff_asf_guid mediasubtype_dtvccdata =
00405 {0xAA,0xDD,0x2A,0xF5,0xF0,0x36,0xF5,0x43,0x95,0xEA,0x6D,0x86,0x64,0x84,0x26,0x2A};
00406 static const ff_asf_guid mediasubtype_mpeg2_sections =
00407 {0x79,0x85,0x9F,0x4A,0xF8,0x6B,0x92,0x43,0x8A,0x6D,0xD2,0xDD,0x09,0xFA,0x78,0x61};
00408
00409
00410 static const ff_asf_guid format_cpfilters_processed =
00411 {0x6F,0xB3,0x39,0x67,0x5F,0x1D,0xC2,0x4A,0x81,0x92,0x28,0xBB,0x0E,0x73,0xD1,0x6A};
00412 static const ff_asf_guid format_waveformatex =
00413 {0x81,0x9F,0x58,0x05,0x56,0xC3,0xCE,0x11,0xBF,0x01,0x00,0xAA,0x00,0x55,0x59,0x5A};
00414 static const ff_asf_guid format_videoinfo2 =
00415 {0xA0,0x76,0x2A,0xF7,0x0A,0xEB,0xD0,0x11,0xAC,0xE4,0x00,0x00,0xC0,0xCC,0x16,0xBA};
00416 static const ff_asf_guid format_mpeg2_video =
00417 {0xE3,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA};
00418 static const ff_asf_guid format_none =
00419 {0xD6,0x17,0x64,0x0F,0x18,0xC3,0xD0,0x11,0xA4,0x3F,0x00,0xA0,0xC9,0x22,0x31,0x96};
00420
00421 static const AVCodecGuid video_guids[] = {
00422 {CODEC_ID_MPEG2VIDEO, {0x26,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}},
00423 {CODEC_ID_NONE}
00424 };
00425
00426 static const AVCodecGuid audio_guids[] = {
00427 {CODEC_ID_AC3, {0x2C,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}},
00428 {CODEC_ID_EAC3, {0xAF,0x87,0xFB,0xA7,0x02,0x2D,0xFB,0x42,0xA4,0xD4,0x05,0xCD,0x93,0x84,0x3B,0xDD}},
00429 {CODEC_ID_MP2, {0x2B,0x80,0x6D,0xE0,0x46,0xDB,0xCF,0x11,0xB4,0xD1,0x00,0x80,0x5F,0x6C,0xBB,0xEA}},
00430 {CODEC_ID_NONE}
00431 };
00432
00433 static int read_probe(AVProbeData *p)
00434 {
00435 return ff_guidcmp(p->buf, wtv_guid) ? 0 : AVPROBE_SCORE_MAX;
00436 }
00437
00441 static void filetime_to_iso8601(char *buf, int buf_size, int64_t value)
00442 {
00443 time_t t = (value / 10000000LL) - 11644473600LL;
00444 strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", gmtime(&t));
00445 }
00446
00450 static void crazytime_to_iso8601(char *buf, int buf_size, int64_t value)
00451 {
00452 time_t t = (value / 10000000LL) - 719162LL*86400LL;
00453 strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", gmtime(&t));
00454 }
00455
00459 static void oledate_to_iso8601(char *buf, int buf_size, int64_t value)
00460 {
00461 time_t t = 631112400LL + 86400*av_int2dbl(value);
00462 strftime(buf, buf_size, "%Y-%m-%d %H:%M:%S", gmtime(&t));
00463 }
00464
00465 static void get_attachment(AVFormatContext *s, AVIOContext *pb, int length)
00466 {
00467 char mime[1024];
00468 char description[1024];
00469 unsigned int filesize;
00470 AVStream *st;
00471 int64_t pos = avio_tell(pb);
00472
00473 avio_get_str16le(pb, INT_MAX, mime, sizeof(mime));
00474 if (strcmp(mime, "image/jpeg"))
00475 goto done;
00476
00477 avio_r8(pb);
00478 avio_get_str16le(pb, INT_MAX, description, sizeof(description));
00479 filesize = avio_rl32(pb);
00480 if (!filesize)
00481 goto done;
00482
00483 st = av_new_stream(s, 0);
00484 if (!st)
00485 goto done;
00486 av_metadata_set2(&st->metadata, "title", description, 0);
00487 st->codec->codec_id = CODEC_ID_MJPEG;
00488 st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT;
00489 st->codec->extradata = av_mallocz(filesize);
00490 if (!st->codec->extradata)
00491 goto done;
00492 st->codec->extradata_size = filesize;
00493 avio_read(pb, st->codec->extradata, filesize);
00494 done:
00495 avio_seek(pb, pos + length, SEEK_SET);
00496 }
00497
00498 static void get_tag(AVFormatContext *s, AVIOContext *pb, const char *key, int type, int length)
00499 {
00500 int buf_size = FFMAX(2*length, LEN_PRETTY_GUID) + 1;
00501 char *buf = av_malloc(buf_size);
00502 if (!buf)
00503 return;
00504
00505 if (type == 0 && length == 4) {
00506 snprintf(buf, buf_size, "%"PRIi32, avio_rl32(pb));
00507 } else if (type == 1) {
00508 avio_get_str16le(pb, length, buf, buf_size);
00509 if (!strlen(buf)) {
00510 av_free(buf);
00511 return;
00512 }
00513 } else if (type == 3 && length == 4) {
00514 strcpy(buf, avio_rl32(pb) ? "true" : "false");
00515 } else if (type == 4 && length == 8) {
00516 int64_t num = avio_rl64(pb);
00517 if (!strcmp(key, "WM/EncodingTime") ||
00518 !strcmp(key, "WM/MediaOriginalBroadcastDateTime"))
00519 filetime_to_iso8601(buf, buf_size, num);
00520 else if (!strcmp(key, "WM/WMRVEncodeTime") ||
00521 !strcmp(key, "WM/WMRVEndTime"))
00522 crazytime_to_iso8601(buf, buf_size, num);
00523 else if (!strcmp(key, "WM/WMRVExpirationDate"))
00524 oledate_to_iso8601(buf, buf_size, num);
00525 else if (!strcmp(key, "WM/WMRVBitrate"))
00526 snprintf(buf, buf_size, "%f", av_int2dbl(num));
00527 else
00528 snprintf(buf, buf_size, "%"PRIi64, num);
00529 } else if (type == 5 && length == 2) {
00530 snprintf(buf, buf_size, "%"PRIi16, avio_rl16(pb));
00531 } else if (type == 6 && length == 16) {
00532 ff_asf_guid guid;
00533 avio_read(pb, guid, 16);
00534 snprintf(buf, buf_size, PRI_PRETTY_GUID, ARG_PRETTY_GUID(guid));
00535 } else if (type == 2 && !strcmp(key, "WM/Picture")) {
00536 get_attachment(s, pb, length);
00537 av_freep(&buf);
00538 return;
00539 } else {
00540 av_freep(&buf);
00541 av_log(s, AV_LOG_WARNING, "unsupported metadata entry; key:%s, type:%d, length:0x%x\n", key, type, length);
00542 avio_seek(pb, length, SEEK_CUR);
00543 return;
00544 }
00545
00546 av_metadata_set2(&s->metadata, key, buf, 0);
00547 av_freep(&buf);
00548 }
00549
00553 static void parse_legacy_attrib(AVFormatContext *s, AVIOContext *pb)
00554 {
00555 ff_asf_guid guid;
00556 int length, type;
00557 while(!url_feof(pb)) {
00558 char key[1024];
00559 ff_get_guid(pb, &guid);
00560 type = avio_rl32(pb);
00561 length = avio_rl32(pb);
00562 if (!length)
00563 break;
00564 if (ff_guidcmp(&guid, metadata_guid)) {
00565 av_log(s, AV_LOG_WARNING, "unknown guid "PRI_GUID", expected metadata_guid; "
00566 "remaining metadata entries ignored\n", ARG_GUID(guid));
00567 break;
00568 }
00569 avio_get_str16le(pb, INT_MAX, key, sizeof(key));
00570 get_tag(s, pb, key, type, length);
00571 }
00572
00573 ff_metadata_conv(&s->metadata, NULL, ff_asf_metadata_conv);
00574 }
00575
00580 static int parse_videoinfoheader2(AVFormatContext *s, AVStream *st)
00581 {
00582 WtvContext *wtv = s->priv_data;
00583 AVIOContext *pb = wtv->pb;
00584
00585 avio_seek(pb, 72, SEEK_CUR);
00586 ff_get_bmp_header(pb, st);
00587
00588 return 72 + 40;
00589 }
00590
00594 static void parse_mpeg1waveformatex(AVStream *st)
00595 {
00596
00597 switch (AV_RL16(st->codec->extradata)) {
00598 case 0x0001 : st->codec->codec_id = CODEC_ID_MP1; break;
00599 case 0x0002 : st->codec->codec_id = CODEC_ID_MP2; break;
00600 case 0x0004 : st->codec->codec_id = CODEC_ID_MP3; break;
00601 }
00602
00603 st->codec->bit_rate = AV_RL32(st->codec->extradata + 2);
00604
00605
00606 switch (AV_RL16(st->codec->extradata + 6)) {
00607 case 1 : case 2 : case 4 : st->codec->channels = 2; break;
00608 case 8 : st->codec->channels = 1; break;
00609 }
00610 }
00611
00617 static AVStream * new_stream(AVFormatContext *s, AVStream *st, int sid, int codec_type)
00618 {
00619 if (st) {
00620 if (st->codec->extradata) {
00621 av_freep(&st->codec->extradata);
00622 st->codec->extradata_size = 0;
00623 }
00624 } else {
00625 WtvStream *wst = av_mallocz(sizeof(WtvStream));
00626 if (!wst)
00627 return NULL;
00628 st = av_new_stream(s, sid);
00629 if (!st)
00630 return NULL;
00631 st->priv_data = wst;
00632 }
00633 st->codec->codec_type = codec_type;
00634 st->need_parsing = AVSTREAM_PARSE_FULL;
00635 av_set_pts_info(st, 64, 1, 10000000);
00636 return st;
00637 }
00638
00648 static AVStream * parse_media_type(AVFormatContext *s, AVStream *st, int sid,
00649 ff_asf_guid mediatype, ff_asf_guid subtype,
00650 ff_asf_guid formattype, int size)
00651 {
00652 WtvContext *wtv = s->priv_data;
00653 AVIOContext *pb = wtv->pb;
00654 if (!ff_guidcmp(subtype, mediasubtype_cpfilters_processed) &&
00655 !ff_guidcmp(formattype, format_cpfilters_processed)) {
00656 ff_asf_guid actual_subtype;
00657 ff_asf_guid actual_formattype;
00658
00659 if (size < 32) {
00660 av_log(s, AV_LOG_WARNING, "format buffer size underflow\n");
00661 avio_seek(pb, size, SEEK_CUR);
00662 return NULL;
00663 }
00664
00665 avio_seek(pb, size - 32, SEEK_CUR);
00666 ff_get_guid(pb, &actual_subtype);
00667 ff_get_guid(pb, &actual_formattype);
00668 avio_seek(pb, -size, SEEK_CUR);
00669
00670 st = parse_media_type(s, st, sid, mediatype, actual_subtype, actual_formattype, size - 32);
00671 avio_seek(pb, 32, SEEK_CUR);
00672 return st;
00673 } else if (!ff_guidcmp(mediatype, mediatype_audio)) {
00674 st = new_stream(s, st, sid, AVMEDIA_TYPE_AUDIO);
00675 if (!st)
00676 return NULL;
00677 if (!ff_guidcmp(formattype, format_waveformatex)) {
00678 ff_get_wav_header(pb, st->codec, size);
00679 } else {
00680 if (ff_guidcmp(formattype, format_none))
00681 av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype));
00682 avio_seek(pb, size, SEEK_CUR);
00683 }
00684
00685 if (!memcmp(subtype + 4, (const uint8_t[]){MEDIASUBTYPE_BASE_GUID}, 12)) {
00686 st->codec->codec_id = ff_wav_codec_get_id(AV_RL32(subtype), st->codec->bits_per_coded_sample);
00687 } else if (!ff_guidcmp(subtype, mediasubtype_mpeg1payload)) {
00688 if (st->codec->extradata && st->codec->extradata_size >= 22)
00689 parse_mpeg1waveformatex(st);
00690 else
00691 av_log(s, AV_LOG_WARNING, "MPEG1WAVEFORMATEX underflow\n");
00692 } else {
00693 st->codec->codec_id = ff_codec_guid_get_id(audio_guids, subtype);
00694 if (st->codec->codec_id == CODEC_ID_NONE)
00695 av_log(s, AV_LOG_WARNING, "unknown subtype:"PRI_GUID"\n", ARG_GUID(subtype));
00696 }
00697 return st;
00698 } else if (!ff_guidcmp(mediatype, mediatype_video)) {
00699 st = new_stream(s, st, sid, AVMEDIA_TYPE_VIDEO);
00700 if (!st)
00701 return NULL;
00702 if (!ff_guidcmp(formattype, format_videoinfo2)) {
00703 int consumed = parse_videoinfoheader2(s, st);
00704 avio_seek(pb, FFMAX(size - consumed, 0), SEEK_CUR);
00705 } else if (!ff_guidcmp(formattype, format_mpeg2_video)) {
00706 int consumed = parse_videoinfoheader2(s, st);
00707 avio_seek(pb, FFMAX(size - consumed, 0), SEEK_CUR);
00708 } else {
00709 if (ff_guidcmp(formattype, format_none))
00710 av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype));
00711 avio_seek(pb, size, SEEK_CUR);
00712 }
00713
00714 if (!memcmp(subtype + 4, (const uint8_t[]){MEDIASUBTYPE_BASE_GUID}, 12)) {
00715 st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, AV_RL32(subtype));
00716 } else {
00717 st->codec->codec_id = ff_codec_guid_get_id(video_guids, subtype);
00718 }
00719 if (st->codec->codec_id == CODEC_ID_NONE)
00720 av_log(s, AV_LOG_WARNING, "unknown subtype:"PRI_GUID"\n", ARG_GUID(subtype));
00721 return st;
00722 } else if (!ff_guidcmp(mediatype, mediatype_mpeg2_pes) &&
00723 !ff_guidcmp(subtype, mediasubtype_dvb_subtitle)) {
00724 st = new_stream(s, st, sid, AVMEDIA_TYPE_SUBTITLE);
00725 if (!st)
00726 return NULL;
00727 if (ff_guidcmp(formattype, format_none))
00728 av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype));
00729 avio_seek(pb, size, SEEK_CUR);
00730 st->codec->codec_id = CODEC_ID_DVB_SUBTITLE;
00731 return st;
00732 } else if (!ff_guidcmp(mediatype, mediatype_mstvcaption) &&
00733 (!ff_guidcmp(subtype, mediasubtype_teletext) || !ff_guidcmp(subtype, mediasubtype_dtvccdata))) {
00734 st = new_stream(s, st, sid, AVMEDIA_TYPE_SUBTITLE);
00735 if (!st)
00736 return NULL;
00737 if (ff_guidcmp(formattype, format_none))
00738 av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype));
00739 avio_seek(pb, size, SEEK_CUR);
00740 st->codec->codec_id = CODEC_ID_DVB_TELETEXT;
00741 return st;
00742 } else if (!ff_guidcmp(mediatype, mediatype_mpeg2_sections) &&
00743 !ff_guidcmp(subtype, mediasubtype_mpeg2_sections)) {
00744 if (ff_guidcmp(formattype, format_none))
00745 av_log(s, AV_LOG_WARNING, "unknown formattype:"PRI_GUID"\n", ARG_GUID(formattype));
00746 avio_seek(pb, size, SEEK_CUR);
00747 return NULL;
00748 }
00749
00750 av_log(s, AV_LOG_WARNING, "unknown media type, mediatype:"PRI_GUID
00751 ", subtype:"PRI_GUID", formattype:"PRI_GUID"\n",
00752 ARG_GUID(mediatype), ARG_GUID(subtype), ARG_GUID(formattype));
00753 avio_seek(pb, size, SEEK_CUR);
00754 return NULL;
00755 }
00756
00757 enum {
00758 SEEK_TO_DATA = 0,
00759 SEEK_TO_PTS,
00760 };
00761
00769 static int parse_chunks(AVFormatContext *s, int mode, int64_t seekts, int *len_ptr)
00770 {
00771 WtvContext *wtv = s->priv_data;
00772 AVIOContext *pb = wtv->pb;
00773 while (!url_feof(pb)) {
00774 ff_asf_guid g;
00775 int len, sid, consumed;
00776
00777 ff_get_guid(pb, &g);
00778 len = avio_rl32(pb);
00779 if (len < 32)
00780 break;
00781 sid = avio_rl32(pb) & 0x7FFF;
00782 avio_seek(pb, 8, SEEK_CUR);
00783 consumed = 32;
00784
00785 if (!ff_guidcmp(g, stream_guid)) {
00786 if (ff_find_stream_index(s, sid) < 0) {
00787 ff_asf_guid mediatype, subtype, formattype;
00788 int size;
00789 avio_seek(pb, 28, SEEK_CUR);
00790 ff_get_guid(pb, &mediatype);
00791 ff_get_guid(pb, &subtype);
00792 avio_seek(pb, 12, SEEK_CUR);
00793 ff_get_guid(pb, &formattype);
00794 size = avio_rl32(pb);
00795 parse_media_type(s, 0, sid, mediatype, subtype, formattype, size);
00796 consumed += 92 + size;
00797 }
00798 } else if (!ff_guidcmp(g, stream2_guid)) {
00799 int stream_index = ff_find_stream_index(s, sid);
00800 if (stream_index >= 0 && !((WtvStream*)s->streams[stream_index]->priv_data)->seen_data) {
00801 ff_asf_guid mediatype, subtype, formattype;
00802 int size;
00803 avio_seek(pb, 12, SEEK_CUR);
00804 ff_get_guid(pb, &mediatype);
00805 ff_get_guid(pb, &subtype);
00806 avio_seek(pb, 12, SEEK_CUR);
00807 ff_get_guid(pb, &formattype);
00808 size = avio_rl32(pb);
00809 parse_media_type(s, s->streams[stream_index], sid, mediatype, subtype, formattype, size);
00810 consumed += 76 + size;
00811 }
00812 } else if (!ff_guidcmp(g, EVENTID_AudioDescriptorSpanningEvent) ||
00813 !ff_guidcmp(g, EVENTID_CtxADescriptorSpanningEvent) ||
00814 !ff_guidcmp(g, EVENTID_CSDescriptorSpanningEvent) ||
00815 !ff_guidcmp(g, EVENTID_StreamIDSpanningEvent) ||
00816 !ff_guidcmp(g, EVENTID_SubtitleSpanningEvent) ||
00817 !ff_guidcmp(g, EVENTID_TeletextSpanningEvent)) {
00818 int stream_index = ff_find_stream_index(s, sid);
00819 if (stream_index >= 0) {
00820 AVStream *st = s->streams[stream_index];
00821 uint8_t buf[258];
00822 const uint8_t *pbuf = buf;
00823 int buf_size;
00824
00825 avio_seek(pb, 8, SEEK_CUR);
00826 consumed += 8;
00827 if (!ff_guidcmp(g, EVENTID_CtxADescriptorSpanningEvent) ||
00828 !ff_guidcmp(g, EVENTID_CSDescriptorSpanningEvent)) {
00829 avio_seek(pb, 6, SEEK_CUR);
00830 consumed += 6;
00831 }
00832
00833 buf_size = FFMIN(len - consumed, sizeof(buf));
00834 avio_read(pb, buf, buf_size);
00835 consumed += buf_size;
00836 ff_parse_mpeg2_descriptor(s, st, 0, &pbuf, buf + buf_size, 0, 0, 0, 0);
00837 }
00838 } else if (!ff_guidcmp(g, EVENTID_AudioTypeSpanningEvent)) {
00839 int stream_index = ff_find_stream_index(s, sid);
00840 if (stream_index >= 0) {
00841 AVStream *st = s->streams[stream_index];
00842 int audio_type;
00843 avio_seek(pb, 8, SEEK_CUR);
00844 audio_type = avio_r8(pb);
00845 if (audio_type == 2)
00846 st->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
00847 else if (audio_type == 3)
00848 st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED;
00849 consumed += 9;
00850 }
00851 } else if (!ff_guidcmp(g, EVENTID_DVBScramblingControlSpanningEvent)) {
00852 int stream_index = ff_find_stream_index(s, sid);
00853 if (stream_index >= 0) {
00854 avio_seek(pb, 12, SEEK_CUR);
00855 if (avio_rl32(pb))
00856 av_log(s, AV_LOG_WARNING, "DVB scrambled stream detected (st:%d), decoding will likely fail\n", stream_index);
00857 consumed += 16;
00858 }
00859 } else if (!ff_guidcmp(g, EVENTID_LanguageSpanningEvent)) {
00860 int stream_index = ff_find_stream_index(s, sid);
00861 if (stream_index >= 0) {
00862 AVStream *st = s->streams[stream_index];
00863 uint8_t language[4];
00864 avio_seek(pb, 12, SEEK_CUR);
00865 avio_read(pb, language, 3);
00866 if (language[0]) {
00867 language[3] = 0;
00868 av_metadata_set2(&st->metadata, "language", language, 0);
00869 if (!strcmp(language, "nar") || !strcmp(language, "NAR"))
00870 st->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED;
00871 }
00872 consumed += 15;
00873 }
00874 } else if (!ff_guidcmp(g, timestamp_guid)) {
00875 int stream_index = ff_find_stream_index(s, sid);
00876 if (stream_index >= 0) {
00877 avio_seek(pb, 8, SEEK_CUR);
00878 wtv->pts = avio_rl64(pb);
00879 consumed += 16;
00880 if (wtv->pts == -1)
00881 wtv->pts = AV_NOPTS_VALUE;
00882 else {
00883 wtv->last_valid_pts = wtv->pts;
00884 if (wtv->epoch == AV_NOPTS_VALUE || wtv->pts < wtv->epoch)
00885 wtv->epoch = wtv->pts;
00886 if (mode == SEEK_TO_PTS && wtv->pts >= seekts) {
00887 #define WTV_PAD8(x) (((x) + 7) & ~7)
00888 avio_seek(pb, WTV_PAD8(len) - consumed, SEEK_CUR);
00889 return 0;
00890 }
00891 }
00892 }
00893 } else if (!ff_guidcmp(g, data_guid)) {
00894 int stream_index = ff_find_stream_index(s, sid);
00895 if (mode == SEEK_TO_DATA && stream_index >= 0 && len > 32) {
00896 WtvStream *wst = s->streams[stream_index]->priv_data;
00897 wst->seen_data = 1;
00898 if (len_ptr) {
00899 *len_ptr = len;
00900 }
00901 return stream_index;
00902 }
00903 } else if (
00904 !ff_guidcmp(g, (const ff_asf_guid){0x14,0x56,0x1A,0x0C,0xCD,0x30,0x40,0x4F,0xBC,0xBF,0xD0,0x3E,0x52,0x30,0x62,0x07}) ||
00905 !ff_guidcmp(g, (const ff_asf_guid){0x02,0xAE,0x5B,0x2F,0x8F,0x7B,0x60,0x4F,0x82,0xD6,0xE4,0xEA,0x2F,0x1F,0x4C,0x99}) ||
00906 !ff_guidcmp(g, (const ff_asf_guid){0x12,0xF6,0x22,0xB6,0xAD,0x47,0x71,0x46,0xAD,0x6C,0x05,0xA9,0x8E,0x65,0xDE,0x3A}) ||
00907 !ff_guidcmp(g, (const ff_asf_guid){0xCC,0x32,0x64,0xDD,0x29,0xE2,0xDB,0x40,0x80,0xF6,0xD2,0x63,0x28,0xD2,0x76,0x1F}) ||
00908 !ff_guidcmp(g, (const ff_asf_guid){0xE5,0xC5,0x67,0x90,0x5C,0x4C,0x05,0x42,0x86,0xC8,0x7A,0xFE,0x20,0xFE,0x1E,0xFA}) ||
00909 !ff_guidcmp(g, (const ff_asf_guid){0x80,0x6D,0xF3,0x41,0x32,0x41,0xC2,0x4C,0xB1,0x21,0x01,0xA4,0x32,0x19,0xD8,0x1B}) ||
00910 !ff_guidcmp(g, (const ff_asf_guid){0x51,0x1D,0xAB,0x72,0xD2,0x87,0x9B,0x48,0xBA,0x11,0x0E,0x08,0xDC,0x21,0x02,0x43}) ||
00911 !ff_guidcmp(g, (const ff_asf_guid){0x65,0x8F,0xFC,0x47,0xBB,0xE2,0x34,0x46,0x9C,0xEF,0xFD,0xBF,0xE6,0x26,0x1D,0x5C}) ||
00912 !ff_guidcmp(g, (const ff_asf_guid){0xCB,0xC5,0x68,0x80,0x04,0x3C,0x2B,0x49,0xB4,0x7D,0x03,0x08,0x82,0x0D,0xCE,0x51}) ||
00913 !ff_guidcmp(g, (const ff_asf_guid){0xBC,0x2E,0xAF,0x82,0xA6,0x30,0x64,0x42,0xA8,0x0B,0xAD,0x2E,0x13,0x72,0xAC,0x60}) ||
00914 !ff_guidcmp(g, (const ff_asf_guid){0x1E,0xBE,0xC3,0xC5,0x43,0x92,0xDC,0x11,0x85,0xE5,0x00,0x12,0x3F,0x6F,0x73,0xB9}) ||
00915 !ff_guidcmp(g, (const ff_asf_guid){0x3B,0x86,0xA2,0xB1,0xEB,0x1E,0xC3,0x44,0x8C,0x88,0x1C,0xA3,0xFF,0xE3,0xE7,0x6A}) ||
00916 !ff_guidcmp(g, (const ff_asf_guid){0x4E,0x7F,0x4C,0x5B,0xC4,0xD0,0x38,0x4B,0xA8,0x3E,0x21,0x7F,0x7B,0xBF,0x52,0xE7}) ||
00917 !ff_guidcmp(g, (const ff_asf_guid){0x63,0x36,0xEB,0xFE,0xA1,0x7E,0xD9,0x11,0x83,0x08,0x00,0x07,0xE9,0x5E,0xAD,0x8D}) ||
00918 !ff_guidcmp(g, (const ff_asf_guid){0x70,0xE9,0xF1,0xF8,0x89,0xA4,0x4C,0x4D,0x83,0x73,0xB8,0x12,0xE0,0xD5,0xF8,0x1E}) ||
00919 !ff_guidcmp(g, (const ff_asf_guid){0x96,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D}) ||
00920 !ff_guidcmp(g, (const ff_asf_guid){0x97,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D}) ||
00921 !ff_guidcmp(g, (const ff_asf_guid){0xA1,0xC3,0xD2,0xC2,0x7E,0x9A,0xDA,0x11,0x8B,0xF7,0x00,0x07,0xE9,0x5E,0xAD,0x8D})) {
00922
00923 } else
00924 av_log(s, AV_LOG_WARNING, "unsupported chunk:"PRI_GUID"\n", ARG_GUID(g));
00925
00926 avio_seek(pb, WTV_PAD8(len) - consumed, SEEK_CUR);
00927 }
00928 return AVERROR_EOF;
00929 }
00930
00931
00932 #define _ , 0,
00933 static const uint8_t timeline_le16[] =
00934 {'t'_'i'_'m'_'e'_'l'_'i'_'n'_'e', 0};
00935 static const uint8_t table_0_entries_legacy_attrib_le16[] =
00936 {'t'_'a'_'b'_'l'_'e'_'.'_'0'_'.'_'e'_'n'_'t'_'r'_'i'_'e'_'s'_'.'_'l'_'e'_'g'_'a'_'c'_'y'_'_'_'a'_'t'_'t'_'r'_'i'_'b', 0};
00937 static const uint8_t table_0_entries_time_le16[] =
00938 {'t'_'a'_'b'_'l'_'e'_'.'_'0'_'.'_'e'_'n'_'t'_'r'_'i'_'e'_'s'_'.'_'t'_'i'_'m'_'e', 0};
00939 static const uint8_t timeline_table_0_entries_Events_le16[] =
00940 {'t'_'i'_'m'_'e'_'l'_'i'_'n'_'e'_'.'_'t'_'a'_'b'_'l'_'e'_'.'_'0'_'.'_'e'_'n'_'t'_'r'_'i'_'e'_'s'_'.'_'E'_'v'_'e'_'n'_'t'_'s', 0};
00941 #undef _
00942
00943 static int read_header(AVFormatContext *s, AVFormatParameters *ap)
00944 {
00945 WtvContext *wtv = s->priv_data;
00946 int root_sector, root_size;
00947 uint8_t root[WTV_SECTOR_SIZE];
00948 AVIOContext *pb;
00949 int64_t timeline_pos;
00950 int ret;
00951
00952 wtv->epoch =
00953 wtv->pts =
00954 wtv->last_valid_pts = AV_NOPTS_VALUE;
00955
00956
00957 avio_seek(s->pb, 0x30, SEEK_CUR);
00958 root_size = avio_rl32(s->pb);
00959 if (root_size > sizeof(root)) {
00960 av_log(s, AV_LOG_ERROR, "root directory size exceeds sector size\n");
00961 return AVERROR_INVALIDDATA;
00962 }
00963 avio_seek(s->pb, 4, SEEK_CUR);
00964 root_sector = avio_rl32(s->pb);
00965
00966 avio_seek(s->pb, root_sector << WTV_SECTOR_BITS, SEEK_SET);
00967 root_size = avio_read(s->pb, root, root_size);
00968 if (root_size < 0)
00969 return AVERROR_INVALIDDATA;
00970
00971
00972 wtv->pb = wtvfile_open(s, root, root_size, timeline_le16);
00973 if (!wtv->pb) {
00974 av_log(s, AV_LOG_ERROR, "timeline data missing\n");
00975 return AVERROR_INVALIDDATA;
00976 }
00977
00978 ret = parse_chunks(s, SEEK_TO_DATA, 0, 0);
00979 if (ret < 0)
00980 return ret;
00981 avio_seek(wtv->pb, -32, SEEK_CUR);
00982
00983 timeline_pos = avio_tell(s->pb);
00984
00985
00986 pb = wtvfile_open(s, root, root_size, table_0_entries_legacy_attrib_le16);
00987 if (pb) {
00988 parse_legacy_attrib(s, pb);
00989 wtvfile_close(pb);
00990 }
00991
00992
00993 if (s->nb_streams) {
00994 AVStream *st = s->streams[0];
00995 pb = wtvfile_open(s, root, root_size, table_0_entries_time_le16);
00996 if (pb) {
00997 while(1) {
00998 uint64_t timestamp = avio_rl64(pb);
00999 uint64_t frame_nb = avio_rl64(pb);
01000 if (url_feof(pb))
01001 break;
01002 ff_add_index_entry(&wtv->index_entries, &wtv->nb_index_entries, &wtv->index_entries_allocated_size,
01003 0, timestamp, frame_nb, 0, AVINDEX_KEYFRAME);
01004 }
01005 wtvfile_close(pb);
01006
01007 if (wtv->nb_index_entries) {
01008 pb = wtvfile_open(s, root, root_size, timeline_table_0_entries_Events_le16);
01009 if (pb) {
01010 int i;
01011 while (1) {
01012 uint64_t frame_nb = avio_rl64(pb);
01013 uint64_t position = avio_rl64(pb);
01014 if (url_feof(pb))
01015 break;
01016 for (i = wtv->nb_index_entries - 1; i >= 0; i--) {
01017 AVIndexEntry *e = wtv->index_entries + i;
01018 if (frame_nb > e->size)
01019 break;
01020 if (position > e->pos)
01021 e->pos = position;
01022 }
01023 }
01024 wtvfile_close(pb);
01025 st->duration = wtv->index_entries[wtv->nb_index_entries - 1].timestamp;
01026 }
01027 }
01028 }
01029 }
01030
01031 avio_seek(s->pb, timeline_pos, SEEK_SET);
01032 return 0;
01033 }
01034
01035 static int read_packet(AVFormatContext *s, AVPacket *pkt)
01036 {
01037 WtvContext *wtv = s->priv_data;
01038 AVIOContext *pb = wtv->pb;
01039 int stream_index, len, ret;
01040
01041 stream_index = parse_chunks(s, SEEK_TO_DATA, 0, &len);
01042 if (stream_index < 0)
01043 return stream_index;
01044
01045 ret = av_get_packet(pb, pkt, len - 32);
01046 if (ret < 0)
01047 return ret;
01048 pkt->stream_index = stream_index;
01049 pkt->pts = wtv->pts;
01050 avio_seek(pb, WTV_PAD8(len) - len, SEEK_CUR);
01051 return 0;
01052 }
01053
01054 static int read_seek(AVFormatContext *s, int stream_index,
01055 int64_t ts, int flags)
01056 {
01057 WtvContext *wtv = s->priv_data;
01058 AVIOContext *pb = wtv->pb;
01059 AVStream *st = s->streams[0];
01060 int64_t ts_relative;
01061 int i;
01062
01063 if ((flags & AVSEEK_FLAG_FRAME) || (flags & AVSEEK_FLAG_BYTE))
01064 return AVERROR_NOTSUPP;
01065
01066
01067
01068 ts_relative = ts;
01069 if (wtv->epoch != AV_NOPTS_VALUE)
01070 ts_relative -= wtv->epoch;
01071
01072 i = ff_index_search_timestamp(wtv->index_entries, wtv->nb_index_entries, ts_relative, flags);
01073 if (i < 0) {
01074 if (wtv->last_valid_pts == AV_NOPTS_VALUE || ts < wtv->last_valid_pts)
01075 avio_seek(pb, 0, SEEK_SET);
01076 else if (st->duration != AV_NOPTS_VALUE && ts_relative > st->duration && wtv->nb_index_entries)
01077 avio_seek(pb, wtv->index_entries[wtv->nb_index_entries - 1].pos, SEEK_SET);
01078 if (parse_chunks(s, SEEK_TO_PTS, ts, 0) < 0)
01079 return AVERROR(ERANGE);
01080 return 0;
01081 }
01082 wtv->pts = wtv->index_entries[i].timestamp;
01083 if (wtv->epoch != AV_NOPTS_VALUE)
01084 wtv->pts += wtv->epoch;
01085 wtv->last_valid_pts = wtv->pts;
01086 avio_seek(pb, wtv->index_entries[i].pos, SEEK_SET);
01087 return 0;
01088 }
01089
01090 static int read_close(AVFormatContext *s)
01091 {
01092 WtvContext *wtv = s->priv_data;
01093 wtvfile_close(wtv->pb);
01094 return 0;
01095 }
01096
01097 AVInputFormat ff_wtv_demuxer = {
01098 .name = "wtv",
01099 .long_name = NULL_IF_CONFIG_SMALL("Windows Television (WTV)"),
01100 .priv_data_size = sizeof(WtvContext),
01101 .read_probe = read_probe,
01102 .read_header = read_header,
01103 .read_packet = read_packet,
01104 .read_seek = read_seek,
01105 .read_close = read_close,
01106 .flags = AVFMT_SHOW_IDS,
01107 };