asfdec.c 57.6 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1
/*
2
 * ASF compatible demuxer
3
 * Copyright (c) 2000, 2001 Fabrice Bellard
Fabrice Bellard's avatar
Fabrice Bellard committed
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
Fabrice Bellard's avatar
Fabrice Bellard committed
11
 *
12
 * FFmpeg is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
Fabrice Bellard's avatar
Fabrice Bellard committed
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
Fabrice Bellard's avatar
Fabrice Bellard committed
20
 */
21

22 23
#include <inttypes.h>

24
#include "libavutil/attributes.h"
25
#include "libavutil/avassert.h"
26
#include "libavutil/avstring.h"
27
#include "libavutil/bswap.h"
28
#include "libavutil/common.h"
29
#include "libavutil/dict.h"
30
#include "libavutil/internal.h"
31
#include "libavutil/mathematics.h"
32
#include "libavutil/opt.h"
Fabrice Bellard's avatar
Fabrice Bellard committed
33
#include "avformat.h"
34
#include "avio_internal.h"
35
#include "avlanguage.h"
36
#include "id3v2.h"
37
#include "internal.h"
38
#include "riff.h"
39
#include "asf.h"
40
#include "asfcrypt.h"
Fabrice Bellard's avatar
Fabrice Bellard committed
41

42
typedef struct ASFContext {
43
    const AVClass *class;
44 45 46
    int asfid2avid[128];                 ///< conversion table from asf ID 2 AVStream ID
    ASFStream streams[128];              ///< it's max number and it's not that big
    uint32_t stream_bitrates[128];       ///< max number of streams, bitrate for each (for streaming)
47
    AVRational dar[128];
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
    char stream_languages[128][6];       ///< max number of streams, language for each (RFC1766, e.g. en-US)
    /* non streamed additonnal info */
    /* packet filling */
    int packet_size_left;
    /* only for reading */
    uint64_t data_offset;                ///< beginning of the first data packet
    uint64_t data_object_offset;         ///< data object offset (excl. GUID & size)
    uint64_t data_object_size;           ///< size of the data object
    int index_read;

    ASFMainHeader hdr;

    int packet_flags;
    int packet_property;
    int packet_timestamp;
    int packet_segsizetype;
    int packet_segments;
    int packet_seq;
    int packet_replic_size;
    int packet_key_frame;
    int packet_padsize;
    unsigned int packet_frag_offset;
    unsigned int packet_frag_size;
    int64_t packet_frag_timestamp;
72
    int ts_is_pts;
73 74 75 76 77 78 79
    int packet_multi_size;
    int packet_time_delta;
    int packet_time_start;
    int64_t packet_pos;

    int stream_index;

80
    ASFStream *asf_st;                   ///< currently decoded stream
81 82

    int no_resync_search;
83
    int export_xmp;
84 85
} ASFContext;

86
static const AVOption options[] = {
87
    { "no_resync_search", "Don't try to resynchronize by looking for a certain optional start code", offsetof(ASFContext, no_resync_search), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
88
    { "export_xmp", "Export full XMP metadata", offsetof(ASFContext, export_xmp), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
89 90 91 92 93 94 95 96 97 98
    { NULL },
};

static const AVClass asf_class = {
    .class_name = "asf demuxer",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
};

Michael Niedermayer's avatar
Michael Niedermayer committed
99 100 101
#undef NDEBUG
#include <assert.h>

102
#define ASF_MAX_STREAMS 127
103 104
#define FRAME_HEADER_SIZE 16
// Fix Me! FRAME_HEADER_SIZE may be different. (17 is known to be too large)
105

106
#ifdef DEBUG
107
static const ff_asf_guid stream_bitrate_guid = { /* (http://get.to/sdp) */
108 109
    0xce, 0x75, 0xf8, 0x7b, 0x8d, 0x46, 0xd1, 0x11, 0x8d, 0x82, 0x00, 0x60, 0x97, 0xc9, 0xa2, 0xb2
};
Fabrice Bellard's avatar
Fabrice Bellard committed
110

111 112
#define PRINT_IF_GUID(g, cmp) \
    if (!ff_guidcmp(g, &cmp)) \
113
        av_log(NULL, AV_LOG_TRACE, "(GUID: %s) ", # cmp)
François Revol's avatar
François Revol committed
114

115
static void print_guid(ff_asf_guid *g)
Fabrice Bellard's avatar
Fabrice Bellard committed
116 117
{
    int i;
118 119 120 121 122 123 124 125 126 127 128 129
    PRINT_IF_GUID(g, ff_asf_header);
    else PRINT_IF_GUID(g, ff_asf_file_header);
    else PRINT_IF_GUID(g, ff_asf_stream_header);
    else PRINT_IF_GUID(g, ff_asf_audio_stream);
    else PRINT_IF_GUID(g, ff_asf_audio_conceal_none);
    else PRINT_IF_GUID(g, ff_asf_video_stream);
    else PRINT_IF_GUID(g, ff_asf_video_conceal_none);
    else PRINT_IF_GUID(g, ff_asf_command_stream);
    else PRINT_IF_GUID(g, ff_asf_comment_header);
    else PRINT_IF_GUID(g, ff_asf_codec_comment_header);
    else PRINT_IF_GUID(g, ff_asf_codec_comment1_header);
    else PRINT_IF_GUID(g, ff_asf_data_header);
130
    else PRINT_IF_GUID(g, ff_asf_simple_index_header);
131 132 133 134 135 136 137 138
    else PRINT_IF_GUID(g, ff_asf_head1_guid);
    else PRINT_IF_GUID(g, ff_asf_head2_guid);
    else PRINT_IF_GUID(g, ff_asf_my_guid);
    else PRINT_IF_GUID(g, ff_asf_ext_stream_header);
    else PRINT_IF_GUID(g, ff_asf_extended_content_header);
    else PRINT_IF_GUID(g, ff_asf_ext_stream_embed_stream_header);
    else PRINT_IF_GUID(g, ff_asf_ext_stream_audio_stream);
    else PRINT_IF_GUID(g, ff_asf_metadata_header);
139
    else PRINT_IF_GUID(g, ff_asf_metadata_library_header);
140
    else PRINT_IF_GUID(g, ff_asf_marker_header);
141
    else PRINT_IF_GUID(g, stream_bitrate_guid);
142
    else PRINT_IF_GUID(g, ff_asf_language_guid);
François Revol's avatar
François Revol committed
143
    else
144
        av_log(NULL, AV_LOG_TRACE, "(GUID: unknown) ");
145
    for (i = 0; i < 16; i++)
146 147
        av_log(NULL, AV_LOG_TRACE, " 0x%02x,", (*g)[i]);
    av_log(NULL, AV_LOG_TRACE, "}\n");
Fabrice Bellard's avatar
Fabrice Bellard committed
148
}
149
#undef PRINT_IF_GUID
150 151
#else
#define print_guid(g)
Fabrice Bellard's avatar
Fabrice Bellard committed
152 153
#endif

Fabrice Bellard's avatar
Fabrice Bellard committed
154 155 156
static int asf_probe(AVProbeData *pd)
{
    /* check file header */
157
    if (!ff_guidcmp(pd->buf, &ff_asf_header))
Fabrice Bellard's avatar
Fabrice Bellard committed
158 159 160 161 162
        return AVPROBE_SCORE_MAX;
    else
        return 0;
}

163 164 165
/* size of type 2 (BOOL) is 32bit for "Extended Content Description Object"
 * but 16 bit for "Metadata Object" and "Metadata Library Object" */
static int get_value(AVIOContext *pb, int type, int type2_size)
166 167 168
{
    switch (type) {
    case 2:
169
        return (type2_size == 32) ? avio_rl32(pb) : avio_rl16(pb);
170 171 172 173 174 175 176 177
    case 3:
        return avio_rl32(pb);
    case 4:
        return avio_rl64(pb);
    case 5:
        return avio_rl16(pb);
    default:
        return INT_MIN;
178 179 180
    }
}

181 182 183 184
/* MSDN claims that this should be "compatible with the ID3 frame, APIC",
 * but in reality this is only loosely similar */
static int asf_read_picture(AVFormatContext *s, int len)
{
185
    AVPacket pkt          = { 0 };
186
    const CodecMime *mime = ff_id3v2_mime_tags;
187
    enum  AVCodecID id    = AV_CODEC_ID_NONE;
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
    char mimetype[64];
    uint8_t  *desc = NULL;
    AVStream   *st = NULL;
    int ret, type, picsize, desc_len;

    /* type + picsize + mime + desc */
    if (len < 1 + 4 + 2 + 2) {
        av_log(s, AV_LOG_ERROR, "Invalid attached picture size: %d.\n", len);
        return AVERROR_INVALIDDATA;
    }

    /* picture type */
    type = avio_r8(s->pb);
    len--;
    if (type >= FF_ARRAY_ELEMS(ff_id3v2_picture_types) || type < 0) {
        av_log(s, AV_LOG_WARNING, "Unknown attached picture type: %d.\n", type);
        type = 0;
    }

    /* picture data size */
    picsize = avio_rl32(s->pb);
209
    len    -= 4;
210 211 212

    /* picture MIME type */
    len -= avio_get_str16le(s->pb, len, mimetype, sizeof(mimetype));
213
    while (mime->id != AV_CODEC_ID_NONE) {
214 215 216 217 218 219
        if (!strncmp(mime->str, mimetype, sizeof(mimetype))) {
            id = mime->id;
            break;
        }
        mime++;
    }
220
    if (id == AV_CODEC_ID_NONE) {
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
        av_log(s, AV_LOG_ERROR, "Unknown attached picture mimetype: %s.\n",
               mimetype);
        return 0;
    }

    if (picsize >= len) {
        av_log(s, AV_LOG_ERROR, "Invalid attached picture data size: %d >= %d.\n",
               picsize, len);
        return AVERROR_INVALIDDATA;
    }

    /* picture description */
    desc_len = (len - picsize) * 2 + 1;
    desc     = av_malloc(desc_len);
    if (!desc)
        return AVERROR(ENOMEM);
    len -= avio_get_str16le(s->pb, len - picsize, desc, desc_len);

    ret = av_get_packet(s->pb, &pkt, picsize);
    if (ret < 0)
        goto fail;

243
    st  = avformat_new_stream(s, NULL);
244
    if (!st) {
245 246 247
        ret = AVERROR(ENOMEM);
        goto fail;
    }
248 249 250 251
    st->disposition              |= AV_DISPOSITION_ATTACHED_PIC;
    st->codec->codec_type         = AVMEDIA_TYPE_VIDEO;
    st->codec->codec_id           = id;
    st->attached_pic              = pkt;
252
    st->attached_pic.stream_index = st->index;
253
    st->attached_pic.flags       |= AV_PKT_FLAG_KEY;
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269

    if (*desc)
        av_dict_set(&st->metadata, "title", desc, AV_DICT_DONT_STRDUP_VAL);
    else
        av_freep(&desc);

    av_dict_set(&st->metadata, "comment", ff_id3v2_picture_types[type], 0);

    return 0;

fail:
    av_freep(&desc);
    av_free_packet(&pkt);
    return ret;
}

270 271 272 273
static void get_id3_tag(AVFormatContext *s, int len)
{
    ID3v2ExtraMeta *id3v2_extra_meta = NULL;

274
    ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC, &id3v2_extra_meta, len);
275 276 277 278 279
    if (id3v2_extra_meta)
        ff_id3v2_parse_apic(s, &id3v2_extra_meta);
    ff_id3v2_free_extra_meta(&id3v2_extra_meta);
}

280
static void get_tag(AVFormatContext *s, const char *key, int type, int len, int type2_size)
281
{
282 283
    ASFContext *asf = s->priv_data;
    char *value = NULL;
284
    int64_t off = avio_tell(s->pb);
285
#define LEN 22
286

287
    if ((unsigned)len >= (UINT_MAX - LEN) / 2)
288 289
        return;

290 291 292
    if (!asf->export_xmp && !strncmp(key, "xmp", 3))
        goto finish;

293
    value = av_malloc(2 * len + LEN);
294
    if (!value)
295
        goto finish;
296

297
    if (type == 0) {         // UTF16-LE
298
        avio_get_str16le(s->pb, len, value, 2 * len + 1);
299
    } else if (type == -1) { // ASCII
300
        avio_read(s->pb, value, len);
301
        value[len]=0;
302 303 304 305 306 307 308 309 310
    } else if (type == 1) {  // byte array
        if (!strcmp(key, "WM/Picture")) { // handle cover art
            asf_read_picture(s, len);
        } else if (!strcmp(key, "ID3")) { // handle ID3 tag
            get_id3_tag(s, len);
        } else {
            av_log(s, AV_LOG_VERBOSE, "Unsupported byte array in tag %s.\n", key);
        }
        goto finish;
311
    } else if (type > 1 && type <= 5) {  // boolean or DWORD or QWORD or WORD
312
        uint64_t num = get_value(s->pb, type, type2_size);
313
        snprintf(value, LEN, "%"PRIu64, num);
314 315 316
    } else if (type == 6) { // (don't) handle GUID
        av_log(s, AV_LOG_DEBUG, "Unsupported GUID value in tag %s.\n", key);
        goto finish;
317
    } else {
318 319
        av_log(s, AV_LOG_DEBUG,
               "Unsupported value type %d in tag %s.\n", type, key);
320
        goto finish;
321
    }
322
    if (*value)
323
        av_dict_set(&s->metadata, key, value, 0);
324

325
finish:
326
    av_freep(&value);
327
    avio_seek(s->pb, off + len, SEEK_SET);
328 329
}

330 331 332
static int asf_read_file_properties(AVFormatContext *s, int64_t size)
{
    ASFContext *asf = s->priv_data;
333
    AVIOContext *pb = s->pb;
334 335

    ff_get_guid(pb, &asf->hdr.guid);
336 337
    asf->hdr.file_size   = avio_rl64(pb);
    asf->hdr.create_time = avio_rl64(pb);
338
    avio_rl64(pb);                               /* number of packets */
339 340 341 342 343 344 345 346
    asf->hdr.play_time   = avio_rl64(pb);
    asf->hdr.send_time   = avio_rl64(pb);
    asf->hdr.preroll     = avio_rl32(pb);
    asf->hdr.ignore      = avio_rl32(pb);
    asf->hdr.flags       = avio_rl32(pb);
    asf->hdr.min_pktsize = avio_rl32(pb);
    asf->hdr.max_pktsize = avio_rl32(pb);
    if (asf->hdr.min_pktsize >= (1U << 29))
347
        return AVERROR_INVALIDDATA;
348 349
    asf->hdr.max_bitrate = avio_rl32(pb);
    s->packet_size       = asf->hdr.max_pktsize;
350 351 352 353

    return 0;
}

354 355 356
static int asf_read_stream_properties(AVFormatContext *s, int64_t size)
{
    ASFContext *asf = s->priv_data;
357
    AVIOContext *pb = s->pb;
358 359 360 361 362 363 364
    AVStream *st;
    ASFStream *asf_st;
    ff_asf_guid g;
    enum AVMediaType type;
    int type_specific_size, sizeX;
    unsigned int tag1;
    int64_t pos1, pos2, start_time;
365
    int test_for_ext_stream_audio, is_dvr_ms_audio = 0;
366 367 368 369 370 371

    if (s->nb_streams == ASF_MAX_STREAMS) {
        av_log(s, AV_LOG_ERROR, "too many streams\n");
        return AVERROR(EINVAL);
    }

372
    pos1 = avio_tell(pb);
373

374
    st = avformat_new_stream(s, NULL);
375 376
    if (!st)
        return AVERROR(ENOMEM);
377
    avpriv_set_pts_info(st, 32, 1, 1000); /* 32 bit pts in ms */
378
    start_time     = asf->hdr.preroll;
379

380
    if (!(asf->hdr.flags & 0x01)) { // if we aren't streaming...
381
        int64_t fsize = avio_size(pb);
382 383
        if (fsize <= 0 || (int64_t)asf->hdr.file_size <= 0 ||
            FFABS(fsize - (int64_t)asf->hdr.file_size) / (float)FFMIN(fsize, asf->hdr.file_size) < 0.05)
384
            st->duration = asf->hdr.play_time /
385
                       (10000000 / 1000) - start_time;
386 387 388 389 390 391 392 393 394
    }
    ff_get_guid(pb, &g);

    test_for_ext_stream_audio = 0;
    if (!ff_guidcmp(&g, &ff_asf_audio_stream)) {
        type = AVMEDIA_TYPE_AUDIO;
    } else if (!ff_guidcmp(&g, &ff_asf_video_stream)) {
        type = AVMEDIA_TYPE_VIDEO;
    } else if (!ff_guidcmp(&g, &ff_asf_jfif_media)) {
395
        type                = AVMEDIA_TYPE_VIDEO;
396
        st->codec->codec_id = AV_CODEC_ID_MJPEG;
397 398 399 400
    } else if (!ff_guidcmp(&g, &ff_asf_command_stream)) {
        type = AVMEDIA_TYPE_DATA;
    } else if (!ff_guidcmp(&g, &ff_asf_ext_stream_embed_stream_header)) {
        test_for_ext_stream_audio = 1;
401
        type                      = AVMEDIA_TYPE_UNKNOWN;
402 403 404 405
    } else {
        return -1;
    }
    ff_get_guid(pb, &g);
Mans Rullgard's avatar
Mans Rullgard committed
406
    avio_skip(pb, 8); /* total_size */
407 408 409
    type_specific_size = avio_rl32(pb);
    avio_rl32(pb);
    st->id = avio_rl16(pb) & 0x7f; /* stream id */
410 411
    // mapping of asf ID to AV stream ID;
    asf->asfid2avid[st->id] = s->nb_streams - 1;
412
    asf_st = &asf->streams[st->id];
413

414
    avio_rl32(pb);
415 416 417 418

    if (test_for_ext_stream_audio) {
        ff_get_guid(pb, &g);
        if (!ff_guidcmp(&g, &ff_asf_ext_stream_audio_stream)) {
419 420
            type            = AVMEDIA_TYPE_AUDIO;
            is_dvr_ms_audio = 1;
421
            ff_get_guid(pb, &g);
422 423 424
            avio_rl32(pb);
            avio_rl32(pb);
            avio_rl32(pb);
425
            ff_get_guid(pb, &g);
426
            avio_rl32(pb);
427 428 429 430 431
        }
    }

    st->codec->codec_type = type;
    if (type == AVMEDIA_TYPE_AUDIO) {
432
        int ret = ff_get_wav_header(pb, st->codec, type_specific_size, 0);
433 434
        if (ret < 0)
            return ret;
435 436 437
        if (is_dvr_ms_audio) {
            // codec_id and codec_tag are unreliable in dvr_ms
            // files. Set them later by probing stream.
438
            st->request_probe    = 1;
439 440
            st->codec->codec_tag = 0;
        }
441
        if (st->codec->codec_id == AV_CODEC_ID_AAC)
442
            st->need_parsing = AVSTREAM_PARSE_NONE;
443
        else
444 445
            st->need_parsing = AVSTREAM_PARSE_FULL;
        /* We have to init the frame size at some point .... */
446
        pos2 = avio_tell(pb);
447
        if (size >= (pos2 + 8 - pos1 + 24)) {
448
            asf_st->ds_span        = avio_r8(pb);
449
            asf_st->ds_packet_size = avio_rl16(pb);
450 451 452
            asf_st->ds_chunk_size  = avio_rl16(pb);
            avio_rl16(pb);  // ds_data_size
            avio_r8(pb);    // ds_silence_data
453 454
        }
        if (asf_st->ds_span > 1) {
455 456 457 458
            if (!asf_st->ds_chunk_size                                ||
                (asf_st->ds_packet_size / asf_st->ds_chunk_size <= 1) ||
                asf_st->ds_packet_size % asf_st->ds_chunk_size)
                asf_st->ds_span = 0;  // disable descrambling
459 460
        }
    } else if (type == AVMEDIA_TYPE_VIDEO &&
461
               size - (avio_tell(pb) - pos1 + 24) >= 51) {
462 463 464 465
        avio_rl32(pb);
        avio_rl32(pb);
        avio_r8(pb);
        avio_rl16(pb);        /* size */
466 467
        sizeX             = avio_rl32(pb); /* size */
        st->codec->width  = avio_rl32(pb);
468
        st->codec->height = avio_rl32(pb);
469
        /* not available for asf */
470 471
        avio_rl16(pb); /* panes */
        st->codec->bits_per_coded_sample = avio_rl16(pb); /* depth */
472
        tag1                             = avio_rl32(pb);
473
        avio_skip(pb, 20);
474
        if (sizeX > 40) {
475
            st->codec->extradata_size = ffio_limit(pb, sizeX - 40);
476 477
            st->codec->extradata      = av_mallocz(st->codec->extradata_size +
                                                   FF_INPUT_BUFFER_PADDING_SIZE);
478 479
            if (!st->codec->extradata)
                return AVERROR(ENOMEM);
480
            avio_read(pb, st->codec->extradata, st->codec->extradata_size);
481 482 483 484
        }

        /* Extract palette from extradata if bpp <= 8 */
        /* This code assumes that extradata contains only palette */
485
        /* This is true for all paletted codecs implemented in libavcodec */
486 487
        if (st->codec->extradata_size && (st->codec->bits_per_coded_sample <= 8)) {
#if HAVE_BIGENDIAN
488
            int i;
489 490
            for (i = 0; i < FFMIN(st->codec->extradata_size, AVPALETTE_SIZE) / 4; i++)
                asf_st->palette[i] = av_bswap32(((uint32_t *)st->codec->extradata)[i]);
491
#else
492 493
            memcpy(asf_st->palette, st->codec->extradata,
                   FFMIN(st->codec->extradata_size, AVPALETTE_SIZE));
494
#endif
495
            asf_st->palette_changed = 1;
496 497 498
        }

        st->codec->codec_tag = tag1;
499 500
        st->codec->codec_id  = ff_codec_get_id(ff_codec_bmp_tags, tag1);
        if (tag1 == MKTAG('D', 'V', 'R', ' ')) {
501
            st->need_parsing = AVSTREAM_PARSE_FULL;
502 503 504 505
            /* issue658 contains wrong w/h and MS even puts a fake seq header
             * with wrong w/h in extradata while a correct one is in the stream.
             * maximum lameness */
            st->codec->width      =
506 507
                st->codec->height = 0;
            av_freep(&st->codec->extradata);
508
            st->codec->extradata_size = 0;
509
        }
510
        if (st->codec->codec_id == AV_CODEC_ID_H264)
511
            st->need_parsing = AVSTREAM_PARSE_FULL_ONCE;
512 513
        if (st->codec->codec_id == AV_CODEC_ID_MPEG4)
            st->need_parsing = AVSTREAM_PARSE_FULL_ONCE;
514
    }
515
    pos2 = avio_tell(pb);
516
    avio_skip(pb, size - (pos2 - pos1 + 24));
517 518 519 520

    return 0;
}

521 522 523
static int asf_read_ext_stream_properties(AVFormatContext *s, int64_t size)
{
    ASFContext *asf = s->priv_data;
524
    AVIOContext *pb = s->pb;
525 526
    ff_asf_guid g;
    int ext_len, payload_ext_ct, stream_ct, i;
Mans Rullgard's avatar
Mans Rullgard committed
527
    uint32_t leak_rate, stream_num;
528 529
    unsigned int stream_languageid_index;

530 531 532 533 534 535 536 537 538 539 540 541 542
    avio_rl64(pb); // starttime
    avio_rl64(pb); // endtime
    leak_rate = avio_rl32(pb); // leak-datarate
    avio_rl32(pb); // bucket-datasize
    avio_rl32(pb); // init-bucket-fullness
    avio_rl32(pb); // alt-leak-datarate
    avio_rl32(pb); // alt-bucket-datasize
    avio_rl32(pb); // alt-init-bucket-fullness
    avio_rl32(pb); // max-object-size
    avio_rl32(pb); // flags (reliable,seekable,no_cleanpoints?,resend-live-cleanpoints, rest of bits reserved)
    stream_num = avio_rl16(pb); // stream-num

    stream_languageid_index = avio_rl16(pb); // stream-language-id-index
543 544 545
    if (stream_num < 128)
        asf->streams[stream_num].stream_language_index = stream_languageid_index;

546
    avio_rl64(pb); // avg frametime in 100ns units
547 548
    stream_ct      = avio_rl16(pb); // stream-name-count
    payload_ext_ct = avio_rl16(pb); // payload-extension-system-count
549

550
    if (stream_num < 128) {
551
        asf->stream_bitrates[stream_num] = leak_rate;
552 553
        asf->streams[stream_num].payload_ext_ct = 0;
    }
554

555
    for (i = 0; i < stream_ct; i++) {
556 557
        avio_rl16(pb);
        ext_len = avio_rl16(pb);
558
        avio_skip(pb, ext_len);
559 560
    }

561
    for (i = 0; i < payload_ext_ct; i++) {
562
        int size;
563
        ff_get_guid(pb, &g);
564
        size = avio_rl16(pb);
565
        ext_len = avio_rl32(pb);
566
        avio_skip(pb, ext_len);
567 568 569 570 571 572 573
        if (stream_num < 128 && i < FF_ARRAY_ELEMS(asf->streams[stream_num].payload)) {
            ASFPayload *p = &asf->streams[stream_num].payload[i];
            p->type = g[0];
            p->size = size;
            av_log(s, AV_LOG_DEBUG, "Payload extension %x %d\n", g[0], p->size );
            asf->streams[stream_num].payload_ext_ct ++;
        }
574 575 576 577 578 579 580
    }

    return 0;
}

static int asf_read_content_desc(AVFormatContext *s, int64_t size)
{
581
    AVIOContext *pb = s->pb;
582 583
    int len1, len2, len3, len4, len5;

584 585 586 587 588
    len1 = avio_rl16(pb);
    len2 = avio_rl16(pb);
    len3 = avio_rl16(pb);
    len4 = avio_rl16(pb);
    len5 = avio_rl16(pb);
589 590 591 592
    get_tag(s, "title", 0, len1, 32);
    get_tag(s, "author", 0, len2, 32);
    get_tag(s, "copyright", 0, len3, 32);
    get_tag(s, "comment", 0, len4, 32);
593
    avio_skip(pb, len5);
594 595 596 597 598 599

    return 0;
}

static int asf_read_ext_content_desc(AVFormatContext *s, int64_t size)
{
600
    AVIOContext *pb = s->pb;
601 602 603
    ASFContext *asf = s->priv_data;
    int desc_count, i, ret;

604
    desc_count = avio_rl16(pb);
605 606
    for (i = 0; i < desc_count; i++) {
        int name_len, value_type, value_len;
607 608
        char name[1024];

609
        name_len = avio_rl16(pb);
610
        if (name_len % 2)   // must be even, broken lavf versions wrote len-1
611 612
            name_len += 1;
        if ((ret = avio_get_str16le(pb, name_len, name, sizeof(name))) < name_len)
613
            avio_skip(pb, name_len - ret);
614 615
        value_type = avio_rl16(pb);
        value_len  = avio_rl16(pb);
616
        if (!value_type && value_len % 2)
617
            value_len += 1;
618 619 620 621
        /* My sample has that stream set to 0 maybe that mean the container.
         * ASF stream count starts at 1. I am using 0 to the container value
         * since it's unused. */
        if (!strcmp(name, "AspectRatioX"))
622
            asf->dar[0].num = get_value(s->pb, value_type, 32);
623
        else if (!strcmp(name, "AspectRatioY"))
624
            asf->dar[0].den = get_value(s->pb, value_type, 32);
625
        else
626
            get_tag(s, name, value_type, value_len, 32);
627 628 629 630 631 632 633
    }

    return 0;
}

static int asf_read_language_list(AVFormatContext *s, int64_t size)
{
634
    AVIOContext *pb = s->pb;
635 636
    ASFContext *asf = s->priv_data;
    int j, ret;
637
    int stream_count = avio_rl16(pb);
638
    for (j = 0; j < stream_count; j++) {
639
        char lang[6];
640
        unsigned int lang_len = avio_r8(pb);
641 642
        if ((ret = avio_get_str16le(pb, lang_len, lang,
                                    sizeof(lang))) < lang_len)
643
            avio_skip(pb, lang_len - ret);
644
        if (j < 128)
645 646
            av_strlcpy(asf->stream_languages[j], lang,
                       sizeof(*asf->stream_languages));
647 648 649 650 651 652 653
    }

    return 0;
}

static int asf_read_metadata(AVFormatContext *s, int64_t size)
{
654
    AVIOContext *pb = s->pb;
655
    ASFContext *asf = s->priv_data;
656
    int n, stream_num, name_len, value_len;
657
    int ret, i;
658
    n = avio_rl16(pb);
659

660
    for (i = 0; i < n; i++) {
661
        char name[1024];
662
        int value_type;
663

664 665 666
        avio_rl16(pb);  // lang_list_index
        stream_num = avio_rl16(pb);
        name_len   = avio_rl16(pb);
667
        value_type = avio_rl16(pb); /* value_type */
668
        value_len  = avio_rl32(pb);
669 670

        if ((ret = avio_get_str16le(pb, name_len, name, sizeof(name))) < name_len)
671
            avio_skip(pb, name_len - ret);
672
        av_log(s, AV_LOG_TRACE, "%d stream %d name_len %2d type %d len %4d <%s>\n",
673
                i, stream_num, name_len, value_type, value_len, name);
674 675 676 677 678 679 680 681 682 683 684

        if (!strcmp(name, "AspectRatioX")){
            int aspect_x = get_value(s->pb, value_type, 16);
            if(stream_num < 128)
                asf->dar[stream_num].num = aspect_x;
        } else if(!strcmp(name, "AspectRatioY")){
            int aspect_y = get_value(s->pb, value_type, 16);
            if(stream_num < 128)
                asf->dar[stream_num].den = aspect_y;
        } else {
            get_tag(s, name, value_type, value_len, 16);
685 686 687 688 689 690 691 692
        }
    }

    return 0;
}

static int asf_read_marker(AVFormatContext *s, int64_t size)
{
693
    AVIOContext *pb = s->pb;
694
    ASFContext *asf = s->priv_data;
695 696 697
    int i, count, name_len, ret;
    char name[1024];

698 699 700 701 702
    avio_rl64(pb);            // reserved 16 bytes
    avio_rl64(pb);            // ...
    count = avio_rl32(pb);    // markers count
    avio_rl16(pb);            // reserved 2 bytes
    name_len = avio_rl16(pb); // name length
703
    for (i = 0; i < name_len; i++)
704
        avio_r8(pb); // skip the name
705

706
    for (i = 0; i < count; i++) {
707 708 709
        int64_t pres_time;
        int name_len;

710 711
        avio_rl64(pb);             // offset, 8 bytes
        pres_time = avio_rl64(pb); // presentation time
712
        pres_time -= asf->hdr.preroll * 10000;
713 714 715 716
        avio_rl16(pb);             // entry length
        avio_rl32(pb);             // send time
        avio_rl32(pb);             // flags
        name_len = avio_rl32(pb);  // name length
717 718
        if ((ret = avio_get_str16le(pb, name_len * 2, name,
                                    sizeof(name))) < name_len)
719
            avio_skip(pb, name_len - ret);
720 721
        avpriv_new_chapter(s, i, (AVRational) { 1, 10000000 }, pres_time,
                           AV_NOPTS_VALUE, name);
722 723 724 725 726
    }

    return 0;
}

727
static int asf_read_header(AVFormatContext *s)
Fabrice Bellard's avatar
Fabrice Bellard committed
728
{
Fabrice Bellard's avatar
Fabrice Bellard committed
729
    ASFContext *asf = s->priv_data;
730
    ff_asf_guid g;
731
    AVIOContext *pb = s->pb;
732
    int i;
733
    int64_t gsize;
Fabrice Bellard's avatar
Fabrice Bellard committed
734

735 736
    ff_get_guid(pb, &g);
    if (ff_guidcmp(&g, &ff_asf_header))
737
        return AVERROR_INVALIDDATA;
738 739 740 741
    avio_rl64(pb);
    avio_rl32(pb);
    avio_r8(pb);
    avio_r8(pb);
742
    memset(&asf->asfid2avid, -1, sizeof(asf->asfid2avid));
743 744 745 746

    for (i = 0; i<128; i++)
        asf->streams[i].stream_language_index = 128; // invalid stream index means no language info

747 748
    for (;;) {
        uint64_t gpos = avio_tell(pb);
749
        ff_get_guid(pb, &g);
750
        gsize = avio_rl64(pb);
Fabrice Bellard's avatar
Fabrice Bellard committed
751
        print_guid(&g);
752
        if (!ff_guidcmp(&g, &ff_asf_data_header)) {
753
            asf->data_object_offset = avio_tell(pb);
754 755 756
            /* If not streaming, gsize is not unlimited (how?),
             * and there is enough space in the file.. */
            if (!(asf->hdr.flags & 0x01) && gsize >= 100)
757
                asf->data_object_size = gsize - 24;
758
            else
759 760 761
                asf->data_object_size = (uint64_t)-1;
            break;
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
762
        if (gsize < 24)
763
            return AVERROR_INVALIDDATA;
764
        if (!ff_guidcmp(&g, &ff_asf_file_header)) {
765 766 767
            int ret = asf_read_file_properties(s, gsize);
            if (ret < 0)
                return ret;
768
        } else if (!ff_guidcmp(&g, &ff_asf_stream_header)) {
769 770 771
            int ret = asf_read_stream_properties(s, gsize);
            if (ret < 0)
                return ret;
772
        } else if (!ff_guidcmp(&g, &ff_asf_comment_header)) {
773
            asf_read_content_desc(s, gsize);
774
        } else if (!ff_guidcmp(&g, &ff_asf_language_guid)) {
775
            asf_read_language_list(s, gsize);
776
        } else if (!ff_guidcmp(&g, &ff_asf_extended_content_header)) {
777
            asf_read_ext_content_desc(s, gsize);
778
        } else if (!ff_guidcmp(&g, &ff_asf_metadata_header)) {
779
            asf_read_metadata(s, gsize);
780 781
        } else if (!ff_guidcmp(&g, &ff_asf_metadata_library_header)) {
            asf_read_metadata(s, gsize);
782
        } else if (!ff_guidcmp(&g, &ff_asf_ext_stream_header)) {
783
            asf_read_ext_stream_properties(s, gsize);
784 785 786

            // there could be a optional stream properties object to follow
            // if so the next iteration will pick it up
787
            continue;
788 789
        } else if (!ff_guidcmp(&g, &ff_asf_head1_guid)) {
            ff_get_guid(pb, &g);
Mans Rullgard's avatar
Mans Rullgard committed
790
            avio_skip(pb, 6);
791
            continue;
792
        } else if (!ff_guidcmp(&g, &ff_asf_marker_header)) {
793
            asf_read_marker(s, gsize);
794
        } else if (avio_feof(pb)) {
795
            return AVERROR_EOF;
Fabrice Bellard's avatar
Fabrice Bellard committed
796
        } else {
797
            if (!s->keylen) {
798
                if (!ff_guidcmp(&g, &ff_asf_content_encryption)) {
799
                    unsigned int len;
800
                    int ret;
801
                    AVPacket pkt;
802 803
                    av_log(s, AV_LOG_WARNING,
                           "DRM protected stream detected, decoding will likely fail!\n");
804 805
                    len= avio_rl32(pb);
                    av_log(s, AV_LOG_DEBUG, "Secret data:\n");
806 807 808 809 810

                    if ((ret = av_get_packet(pb, &pkt, len)) < 0)
                        return ret;
                    av_hex_dump_log(s, AV_LOG_DEBUG, pkt.data, pkt.size);
                    av_free_packet(&pkt);
811
                    len= avio_rl32(pb);
812
                    get_tag(s, "ASF_Protection_Type", -1, len, 32);
813
                    len= avio_rl32(pb);
814
                    get_tag(s, "ASF_Key_ID", -1, len, 32);
815
                    len= avio_rl32(pb);
816
                    get_tag(s, "ASF_License_URL", -1, len, 32);
817
                } else if (!ff_guidcmp(&g, &ff_asf_ext_content_encryption)) {
818 819
                    av_log(s, AV_LOG_WARNING,
                           "Ext DRM protected stream detected, decoding will likely fail!\n");
820
                    av_dict_set(&s->metadata, "encryption", "ASF Extended Content Encryption", 0);
821
                } else if (!ff_guidcmp(&g, &ff_asf_digital_signature)) {
822
                    av_log(s, AV_LOG_INFO, "Digital signature detected!\n");
823 824
                }
            }
Fabrice Bellard's avatar
Fabrice Bellard committed
825
        }
826 827 828 829
        if (avio_tell(pb) != gpos + gsize)
            av_log(s, AV_LOG_DEBUG,
                   "gpos mismatch our pos=%"PRIu64", end=%"PRId64"\n",
                   avio_tell(pb) - gpos, gsize);
830
        avio_seek(pb, gpos + gsize, SEEK_SET);
Fabrice Bellard's avatar
Fabrice Bellard committed
831
    }
832
    ff_get_guid(pb, &g);
833 834 835
    avio_rl64(pb);
    avio_r8(pb);
    avio_r8(pb);
836
    if (avio_feof(pb))
837
        return AVERROR_EOF;
838
    asf->data_offset      = avio_tell(pb);
Fabrice Bellard's avatar
Fabrice Bellard committed
839 840
    asf->packet_size_left = 0;

841 842 843
    for (i = 0; i < 128; i++) {
        int stream_num = asf->asfid2avid[i];
        if (stream_num >= 0) {
844 845
            AVStream *st = s->streams[stream_num];
            if (!st->codec->bit_rate)
846
                st->codec->bit_rate = asf->stream_bitrates[i];
847
            if (asf->dar[i].num > 0 && asf->dar[i].den > 0) {
848 849
                av_reduce(&st->sample_aspect_ratio.num,
                          &st->sample_aspect_ratio.den,
850
                          asf->dar[i].num, asf->dar[i].den, INT_MAX);
851 852 853
            } else if ((asf->dar[0].num > 0) && (asf->dar[0].den > 0) &&
                       // Use ASF container value if the stream doesn't set AR.
                       (st->codec->codec_type == AVMEDIA_TYPE_VIDEO))
854 855
                av_reduce(&st->sample_aspect_ratio.num,
                          &st->sample_aspect_ratio.den,
856
                          asf->dar[0].num, asf->dar[0].den, INT_MAX);
857

858
            av_log(s, AV_LOG_TRACE, "i=%d, st->codec->codec_type:%d, asf->dar %d:%d sar=%d:%d\n",
859 860
                    i, st->codec->codec_type, asf->dar[i].num, asf->dar[i].den,
                    st->sample_aspect_ratio.num, st->sample_aspect_ratio.den);
861 862 863 864 865 866

            // copy and convert language codes to the frontend
            if (asf->streams[i].stream_language_index < 128) {
                const char *rfc1766 = asf->stream_languages[asf->streams[i].stream_language_index];
                if (rfc1766 && strlen(rfc1766) > 1) {
                    const char primary_tag[3] = { rfc1766[0], rfc1766[1], '\0' }; // ignore country code if any
867 868
                    const char *iso6392       = av_convert_lang_to(primary_tag,
                                                                   AV_LANG_ISO639_2_BIBL);
869
                    if (iso6392)
870
                        av_dict_set(&st->metadata, "language", iso6392, 0);
871 872
                }
            }
873 874 875
        }
    }

876
    ff_metadata_conv(&s->metadata, NULL, ff_asf_metadata_conv);
877

Fabrice Bellard's avatar
Fabrice Bellard committed
878 879 880
    return 0;
}

881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897
#define DO_2BITS(bits, var, defval)             \
    switch (bits & 3) {                         \
    case 3:                                     \
        var = avio_rl32(pb);                    \
        rsize += 4;                             \
        break;                                  \
    case 2:                                     \
        var = avio_rl16(pb);                    \
        rsize += 2;                             \
        break;                                  \
    case 1:                                     \
        var = avio_r8(pb);                      \
        rsize++;                                \
        break;                                  \
    default:                                    \
        var = defval;                           \
        break;                                  \
898 899
    }

900 901 902 903
/**
 * Load a single ASF packet into the demuxer.
 * @param s demux context
 * @param pb context to read data from
904
 * @return 0 on success, <0 on error
905
 */
906
static int asf_get_packet(AVFormatContext *s, AVIOContext *pb)
Fabrice Bellard's avatar
Fabrice Bellard committed
907 908
{
    ASFContext *asf = s->priv_data;
909
    uint32_t packet_length, padsize;
910
    int rsize = 8;
911 912
    int c, d, e, off;

913
    // if we do not know packet size, allow skipping up to 32 kB
914
    off = 32768;
915 916 917
    if (asf->no_resync_search)
        off = 3;
    else if (s->packet_size > 0)
918
        off = (avio_tell(pb) - s->internal->data_offset) % s->packet_size + 3;
919 920 921 922 923 924 925

    c = d = e = -1;
    while (off-- > 0) {
        c = d;
        d = e;
        e = avio_r8(pb);
        if (c == 0x82 && !d && !e)
926 927
            break;
    }
928

929
    if (c != 0x82) {
930
        /* This code allows handling of -EAGAIN at packet boundaries (i.e.
931 932
         * if the packet sync code above triggers -EAGAIN). This does not
         * imply complete -EAGAIN handling support at random positions in
933
         * the stream. */
934
        if (pb->error == AVERROR(EAGAIN))
935
            return AVERROR(EAGAIN);
936
        if (!avio_feof(pb))
937 938
            av_log(s, AV_LOG_ERROR,
                   "ff asf bad header %x  at:%"PRId64"\n", c, avio_tell(pb));
939
    }
940
    if ((c & 0x8f) == 0x82) {
941
        if (d || e) {
942
            if (!avio_feof(pb))
943
                av_log(s, AV_LOG_ERROR, "ff asf bad non zero\n");
944
            return AVERROR_INVALIDDATA;
945
        }
946 947 948
        c      = avio_r8(pb);
        d      = avio_r8(pb);
        rsize += 3;
949
    } else if(!avio_feof(pb)) {
950
        avio_seek(pb, -1, SEEK_CUR); // FIXME
Fabrice Bellard's avatar
Fabrice Bellard committed
951
    }
952

953 954
    asf->packet_flags    = c;
    asf->packet_property = d;
955

956
    DO_2BITS(asf->packet_flags >> 5, packet_length, s->packet_size);
957 958 959
    DO_2BITS(asf->packet_flags >> 1, padsize, 0); // sequence ignored
    DO_2BITS(asf->packet_flags >> 3, padsize, 0); // padding length

960 961 962
    // the following checks prevent overflows and infinite loops
    if (!packet_length || packet_length >= (1U << 29)) {
        av_log(s, AV_LOG_ERROR,
963
               "invalid packet_length %"PRIu32" at:%"PRId64"\n",
964
               packet_length, avio_tell(pb));
965
        return AVERROR_INVALIDDATA;
966
    }
967 968
    if (padsize >= packet_length) {
        av_log(s, AV_LOG_ERROR,
969
               "invalid padsize %"PRIu32" at:%"PRId64"\n", padsize, avio_tell(pb));
970
        return AVERROR_INVALIDDATA;
971 972
    }

973 974
    asf->packet_timestamp = avio_rl32(pb);
    avio_rl16(pb); /* duration */
975
    // rsize has at least 11 bytes which have to be present
976 977

    if (asf->packet_flags & 0x01) {
978 979
        asf->packet_segsizetype = avio_r8(pb);
        rsize++;
980 981
        asf->packet_segments = asf->packet_segsizetype & 0x3f;
    } else {
982
        asf->packet_segments    = 1;
983 984
        asf->packet_segsizetype = 0x80;
    }
985 986 987
    if (rsize > packet_length - padsize) {
        asf->packet_size_left = 0;
        av_log(s, AV_LOG_ERROR,
988
               "invalid packet header length %d for pktlen %"PRIu32"-%"PRIu32" at %"PRId64"\n",
989
               rsize, packet_length, padsize, avio_tell(pb));
990
        return AVERROR_INVALIDDATA;
991
    }
992
    asf->packet_size_left = packet_length - padsize - rsize;
993 994
    if (packet_length < asf->hdr.min_pktsize)
        padsize += asf->hdr.min_pktsize - packet_length;
995
    asf->packet_padsize = padsize;
996
    av_log(s, AV_LOG_TRACE, "packet: size=%d padsize=%d  left=%d\n",
997
            s->packet_size, asf->packet_padsize, asf->packet_size_left);
Fabrice Bellard's avatar
Fabrice Bellard committed
998 999 1000
    return 0;
}

1001 1002 1003 1004
/**
 *
 * @return <0 if error
 */
1005 1006
static int asf_read_frame_header(AVFormatContext *s, AVIOContext *pb)
{
1007
    ASFContext *asf = s->priv_data;
1008
    ASFStream *asfst;
1009 1010
    int rsize       = 1;
    int num         = avio_r8(pb);
1011
    int i;
1012
    int64_t ts0, ts1 av_unused;
1013 1014 1015

    asf->packet_segments--;
    asf->packet_key_frame = num >> 7;
1016
    asf->stream_index     = asf->asfid2avid[num & 0x7f];
1017
    asfst                 = &asf->streams[num & 0x7f];
1018 1019 1020 1021
    // sequence should be ignored!
    DO_2BITS(asf->packet_property >> 4, asf->packet_seq, 0);
    DO_2BITS(asf->packet_property >> 2, asf->packet_frag_offset, 0);
    DO_2BITS(asf->packet_property, asf->packet_replic_size, 0);
1022
    av_log(asf, AV_LOG_TRACE, "key:%d stream:%d seq:%d offset:%d replic_size:%d\n",
1023 1024
            asf->packet_key_frame, asf->stream_index, asf->packet_seq,
            asf->packet_frag_offset, asf->packet_replic_size);
1025
    if (rsize+(int64_t)asf->packet_replic_size > asf->packet_size_left) {
1026
        av_log(s, AV_LOG_ERROR, "packet_replic_size %d is invalid\n", asf->packet_replic_size);
1027
        return AVERROR_INVALIDDATA;
1028
    }
1029
    if (asf->packet_replic_size >= 8) {
1030
        int64_t end = avio_tell(pb) + asf->packet_replic_size;
1031
        AVRational aspect;
1032 1033
        asfst->packet_obj_size = avio_rl32(pb);
        if (asfst->packet_obj_size >= (1 << 24) || asfst->packet_obj_size <= 0) {
1034
            av_log(s, AV_LOG_ERROR, "packet_obj_size invalid\n");
1035
            asfst->packet_obj_size = 0;
1036
            return AVERROR_INVALIDDATA;
1037
        }
1038
        asf->packet_frag_timestamp = avio_rl32(pb); // timestamp
1039

1040
        for (i = 0; i < asfst->payload_ext_ct; i++) {
1041 1042 1043
            ASFPayload *p = &asfst->payload[i];
            int size = p->size;
            int64_t payend;
1044
            if (size == 0xFFFF)
1045 1046 1047 1048 1049 1050
                size = avio_rl16(pb);
            payend = avio_tell(pb) + size;
            if (payend > end) {
                av_log(s, AV_LOG_ERROR, "too long payload\n");
                break;
            }
1051
            switch (p->type) {
1052 1053 1054
            case 0x50:
//              duration = avio_rl16(pb);
                break;
1055 1056 1057
            case 0x54:
                aspect.num = avio_r8(pb);
                aspect.den = avio_r8(pb);
1058
                if (aspect.num > 0 && aspect.den > 0 && asf->stream_index >= 0) {
1059 1060 1061
                    s->streams[asf->stream_index]->sample_aspect_ratio = aspect;
                }
                break;
1062 1063
            case 0x2A:
                avio_skip(pb, 8);
1064 1065 1066 1067
                ts0 = avio_rl64(pb);
                ts1 = avio_rl64(pb);
                if (ts0!= -1) asf->packet_frag_timestamp = ts0/10000;
                else          asf->packet_frag_timestamp = AV_NOPTS_VALUE;
1068
                asf->ts_is_pts = 1;
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
                break;
            case 0x5B:
            case 0xB7:
            case 0xCC:
            case 0xC0:
            case 0xA0:
                //unknown
                break;
            }
            avio_seek(pb, payend, SEEK_SET);
        }

        avio_seek(pb, end, SEEK_SET);
1082
        rsize += asf->packet_replic_size; // FIXME - check validity
1083
    } else if (asf->packet_replic_size == 1) {
1084
        // multipacket - frag_offset is beginning timestamp
1085 1086
        asf->packet_time_start     = asf->packet_frag_offset;
        asf->packet_frag_offset    = 0;
1087 1088
        asf->packet_frag_timestamp = asf->packet_timestamp;

1089
        asf->packet_time_delta = avio_r8(pb);
1090
        rsize++;
1091 1092 1093
    } else if (asf->packet_replic_size != 0) {
        av_log(s, AV_LOG_ERROR, "unexpected packet_replic_size of %d\n",
               asf->packet_replic_size);
1094
        return AVERROR_INVALIDDATA;
1095 1096 1097
    }
    if (asf->packet_flags & 0x01) {
        DO_2BITS(asf->packet_segsizetype >> 6, asf->packet_frag_size, 0); // 0 is illegal
1098 1099
        if (rsize > asf->packet_size_left) {
            av_log(s, AV_LOG_ERROR, "packet_replic_size is invalid\n");
1100
            return AVERROR_INVALIDDATA;
1101
        } else if (asf->packet_frag_size > asf->packet_size_left - rsize) {
1102
            if (asf->packet_frag_size > asf->packet_size_left - rsize + asf->packet_padsize) {
1103 1104
                av_log(s, AV_LOG_ERROR, "packet_frag_size is invalid (%d-%d)\n",
                       asf->packet_size_left, rsize);
1105
                return AVERROR_INVALIDDATA;
1106 1107 1108 1109 1110
            } else {
                int diff = asf->packet_frag_size - (asf->packet_size_left - rsize);
                asf->packet_size_left += diff;
                asf->packet_padsize   -= diff;
            }
1111
        }
1112 1113 1114 1115 1116 1117
    } else {
        asf->packet_frag_size = asf->packet_size_left - rsize;
    }
    if (asf->packet_replic_size == 1) {
        asf->packet_multi_size = asf->packet_frag_size;
        if (asf->packet_multi_size > asf->packet_size_left)
1118
            return AVERROR_INVALIDDATA;
1119 1120 1121 1122 1123 1124
    }
    asf->packet_size_left -= rsize;

    return 0;
}

1125 1126 1127 1128 1129 1130
/**
 * Parse data from individual ASF packets (which were previously loaded
 * with asf_get_packet()).
 * @param s demux context
 * @param pb context to read data from
 * @param pkt pointer to store packet data into
1131
 * @return 0 if data was stored in pkt, <0 on error or 1 if more ASF
1132 1133
 *          packets need to be loaded (through asf_get_packet())
 */
1134
static int asf_parse_packet(AVFormatContext *s, AVIOContext *pb, AVPacket *pkt)
Fabrice Bellard's avatar
Fabrice Bellard committed
1135
{
1136
    ASFContext *asf   = s->priv_data;
1137 1138
    ASFStream *asf_st = 0;
    for (;;) {
1139
        int ret;
1140
        if (avio_feof(pb))
1141
            return AVERROR_EOF;
1142 1143
        if (asf->packet_size_left < FRAME_HEADER_SIZE ||
            asf->packet_segments < 1 && asf->packet_time_start == 0) {
1144
            int ret = asf->packet_size_left + asf->packet_padsize;
1145 1146

            assert(ret >= 0);
1147
            /* fail safe */
1148
            avio_skip(pb, ret);
1149

1150
            asf->packet_pos = avio_tell(pb);
1151 1152
            if (asf->data_object_size != (uint64_t)-1 &&
                (asf->packet_pos - asf->data_object_offset >= asf->data_object_size))
1153
                return AVERROR_EOF;  /* Do not exceed the size of the data object */
1154
            return 1;
1155 1156
        }
        if (asf->packet_time_start == 0) {
1157
            if (asf_read_frame_header(s, pb) < 0) {
1158
                asf->packet_time_start = asf->packet_segments = 0;
1159
                continue;
1160
            }
1161 1162 1163
            if (asf->stream_index < 0 ||
                s->streams[asf->stream_index]->discard >= AVDISCARD_ALL ||
                (!asf->packet_key_frame &&
1164
                 (s->streams[asf->stream_index]->discard >= AVDISCARD_NONKEY || asf->streams[s->streams[asf->stream_index]->id].skip_to_key))) {
1165
                asf->packet_time_start = 0;
1166
                /* unhandled packet (should not happen) */
1167
                avio_skip(pb, asf->packet_frag_size);
1168
                asf->packet_size_left -= asf->packet_frag_size;
1169
                if (asf->stream_index < 0)
1170 1171
                    av_log(s, AV_LOG_ERROR, "ff asf skip %d (unknown stream)\n",
                           asf->packet_frag_size);
1172
                continue;
1173
            }
1174
            asf->asf_st = &asf->streams[s->streams[asf->stream_index]->id];
1175
            asf->asf_st->skip_to_key = 0;
1176 1177
        }
        asf_st = asf->asf_st;
1178
        av_assert0(asf_st);
1179

1180
        if (!asf_st->frag_offset && asf->packet_frag_offset) {
1181
            av_log(s, AV_LOG_TRACE, "skipping asf data pkt with fragment offset for "
1182 1183 1184 1185 1186 1187 1188 1189
                    "stream:%d, expected:%d but got %d from pkt)\n",
                    asf->stream_index, asf_st->frag_offset,
                    asf->packet_frag_offset);
            avio_skip(pb, asf->packet_frag_size);
            asf->packet_size_left -= asf->packet_frag_size;
            continue;
        }

1190
        if (asf->packet_replic_size == 1) {
1191
            // frag_offset is here used as the beginning timestamp
1192
            asf->packet_frag_timestamp = asf->packet_time_start;
1193
            asf->packet_time_start    += asf->packet_time_delta;
1194
            asf_st->packet_obj_size    = asf->packet_frag_size = avio_r8(pb);
1195
            asf->packet_size_left--;
1196
            asf->packet_multi_size--;
1197
            if (asf->packet_multi_size < asf_st->packet_obj_size) {
1198
                asf->packet_time_start = 0;
1199
                avio_skip(pb, asf->packet_multi_size);
1200
                asf->packet_size_left -= asf->packet_multi_size;
1201
                continue;
1202
            }
1203
            asf->packet_multi_size -= asf_st->packet_obj_size;
1204
        }
1205

1206
        if (asf_st->pkt.size != asf_st->packet_obj_size ||
1207
            // FIXME is this condition sufficient?
1208
            asf_st->frag_offset + asf->packet_frag_size > asf_st->pkt.size) {
1209 1210
            int ret;

1211
            if (asf_st->pkt.data) {
1212 1213
                av_log(s, AV_LOG_INFO,
                       "freeing incomplete packet size %d, new %d\n",
1214
                       asf_st->pkt.size, asf_st->packet_obj_size);
1215 1216 1217
                asf_st->frag_offset = 0;
                av_free_packet(&asf_st->pkt);
            }
1218
            /* new packet */
1219 1220
            if ((ret = av_new_packet(&asf_st->pkt, asf_st->packet_obj_size)) < 0)
                return ret;
1221
            asf_st->seq              = asf->packet_seq;
1222 1223 1224 1225
            if (asf->ts_is_pts) {
                asf_st->pkt.pts          = asf->packet_frag_timestamp - asf->hdr.preroll;
            } else
                asf_st->pkt.dts          = asf->packet_frag_timestamp - asf->hdr.preroll;
1226
            asf_st->pkt.stream_index = asf->stream_index;
1227
            asf_st->pkt.pos          = asf_st->packet_pos = asf->packet_pos;
1228
            asf_st->pkt_clean        = 0;
1229

1230 1231
            if (asf_st->pkt.data && asf_st->palette_changed) {
                uint8_t *pal;
1232
                pal = av_packet_new_side_data(&asf_st->pkt, AV_PKT_DATA_PALETTE,
1233 1234 1235 1236 1237 1238 1239 1240
                                              AVPALETTE_SIZE);
                if (!pal) {
                    av_log(s, AV_LOG_ERROR, "Cannot append palette to packet\n");
                } else {
                    memcpy(pal, asf_st->palette, AVPALETTE_SIZE);
                    asf_st->palette_changed = 0;
                }
            }
1241
            av_log(asf, AV_LOG_TRACE, "new packet: stream:%d key:%d packet_key:%d audio:%d size:%d\n",
1242 1243 1244
                    asf->stream_index, asf->packet_key_frame,
                    asf_st->pkt.flags & AV_PKT_FLAG_KEY,
                    s->streams[asf->stream_index]->codec->codec_type == AVMEDIA_TYPE_AUDIO,
1245
                    asf_st->packet_obj_size);
1246
            if (s->streams[asf->stream_index]->codec->codec_type == AVMEDIA_TYPE_AUDIO)
1247 1248
                asf->packet_key_frame = 1;
            if (asf->packet_key_frame)
1249
                asf_st->pkt.flags |= AV_PKT_FLAG_KEY;
1250 1251 1252
        }

        /* read data */
1253
        av_log(asf, AV_LOG_TRACE, "READ PACKET s:%d  os:%d  o:%d,%d  l:%d   DATA:%p\n",
1254 1255
                s->packet_size, asf_st->pkt.size, asf->packet_frag_offset,
                asf_st->frag_offset, asf->packet_frag_size, asf_st->pkt.data);
1256 1257
        asf->packet_size_left -= asf->packet_frag_size;
        if (asf->packet_size_left < 0)
1258
            continue;
1259

1260 1261
        if (asf->packet_frag_offset >= asf_st->pkt.size ||
            asf->packet_frag_size > asf_st->pkt.size - asf->packet_frag_offset) {
1262 1263 1264 1265
            av_log(s, AV_LOG_ERROR,
                   "packet fragment position invalid %u,%u not in %u\n",
                   asf->packet_frag_offset, asf->packet_frag_size,
                   asf_st->pkt.size);
1266 1267 1268
            continue;
        }

1269 1270 1271 1272 1273
        if (asf->packet_frag_offset != asf_st->frag_offset && !asf_st->pkt_clean) {
            memset(asf_st->pkt.data + asf_st->frag_offset, 0, asf_st->pkt.size - asf_st->frag_offset);
            asf_st->pkt_clean = 1;
        }

1274
        ret = avio_read(pb, asf_st->pkt.data + asf->packet_frag_offset,
1275
                        asf->packet_frag_size);
1276 1277 1278
        if (ret != asf->packet_frag_size) {
            if (ret < 0 || asf->packet_frag_offset + ret == 0)
                return ret < 0 ? ret : AVERROR_EOF;
1279

1280 1281 1282 1283 1284 1285 1286
            if (asf_st->ds_span > 1) {
                // scrambling, we can either drop it completely or fill the remainder
                // TODO: should we fill the whole packet instead of just the current
                // fragment?
                memset(asf_st->pkt.data + asf->packet_frag_offset + ret, 0,
                       asf->packet_frag_size - ret);
                ret = asf->packet_frag_size;
1287
            } else {
1288 1289
                // no scrambling, so we can return partial packets
                av_shrink_packet(&asf_st->pkt, asf->packet_frag_offset + ret);
1290
            }
1291
        }
1292 1293
        if (s->key && s->keylen == 20)
            ff_asfcrypt_dec(s->key, asf_st->pkt.data + asf->packet_frag_offset,
1294 1295
                            ret);
        asf_st->frag_offset += ret;
1296 1297
        /* test if whole packet is read */
        if (asf_st->frag_offset == asf_st->pkt.size) {
1298
            // workaround for macroshit radio DVR-MS files
1299 1300
            if (s->streams[asf->stream_index]->codec->codec_id == AV_CODEC_ID_MPEG2VIDEO &&
                asf_st->pkt.size > 100) {
1301
                int i;
1302 1303
                for (i = 0; i < asf_st->pkt.size && !asf_st->pkt.data[i]; i++)
                    ;
1304
                if (i == asf_st->pkt.size) {
1305 1306 1307 1308 1309 1310 1311
                    av_log(s, AV_LOG_DEBUG, "discarding ms fart\n");
                    asf_st->frag_offset = 0;
                    av_free_packet(&asf_st->pkt);
                    continue;
                }
            }

1312 1313
            /* return packet */
            if (asf_st->ds_span > 1) {
1314 1315 1316 1317 1318
                if (asf_st->pkt.size != asf_st->ds_packet_size * asf_st->ds_span) {
                    av_log(s, AV_LOG_ERROR,
                           "pkt.size != ds_packet_size * ds_span (%d %d %d)\n",
                           asf_st->pkt.size, asf_st->ds_packet_size,
                           asf_st->ds_span);
1319 1320
                } else {
                    /* packet descrambling */
1321 1322 1323 1324
                    AVBufferRef *buf = av_buffer_alloc(asf_st->pkt.size +
                                                       FF_INPUT_BUFFER_PADDING_SIZE);
                    if (buf) {
                        uint8_t *newdata = buf->data;
1325
                        int offset = 0;
1326 1327
                        memset(newdata + asf_st->pkt.size, 0,
                               FF_INPUT_BUFFER_PADDING_SIZE);
1328 1329 1330 1331 1332 1333
                        while (offset < asf_st->pkt.size) {
                            int off = offset / asf_st->ds_chunk_size;
                            int row = off / asf_st->ds_span;
                            int col = off % asf_st->ds_span;
                            int idx = row + col * asf_st->ds_packet_size / asf_st->ds_chunk_size;
                            assert(offset + asf_st->ds_chunk_size <= asf_st->pkt.size);
1334
                            assert(idx + 1 <= asf_st->pkt.size / asf_st->ds_chunk_size);
1335 1336 1337 1338 1339
                            memcpy(newdata + offset,
                                   asf_st->pkt.data + idx * asf_st->ds_chunk_size,
                                   asf_st->ds_chunk_size);
                            offset += asf_st->ds_chunk_size;
                        }
1340 1341 1342
                        av_buffer_unref(&asf_st->pkt.buf);
                        asf_st->pkt.buf  = buf;
                        asf_st->pkt.data = buf->data;
1343 1344 1345
                    }
                }
            }
1346 1347
            asf_st->frag_offset         = 0;
            *pkt                        = asf_st->pkt;
1348
#if FF_API_DESTRUCT_PACKET
1349
FF_DISABLE_DEPRECATION_WARNINGS
1350
            asf_st->pkt.destruct        = NULL;
1351
FF_ENABLE_DEPRECATION_WARNINGS
1352 1353
#endif
            asf_st->pkt.buf             = 0;
1354 1355
            asf_st->pkt.size            = 0;
            asf_st->pkt.data            = 0;
1356
            asf_st->pkt.side_data_elems = 0;
1357
            asf_st->pkt.side_data       = NULL;
1358 1359
            break; // packet completed
        }
Fabrice Bellard's avatar
Fabrice Bellard committed
1360 1361 1362 1363
    }
    return 0;
}

1364 1365 1366 1367 1368 1369 1370 1371
static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
{
    ASFContext *asf = s->priv_data;

    for (;;) {
        int ret;

        /* parse cached packets, if any */
1372
        if ((ret = asf_parse_packet(s, s->pb, pkt)) <= 0)
1373
            return ret;
1374
        if ((ret = asf_get_packet(s, s->pb)) < 0)
1375 1376
            assert(asf->packet_size_left < FRAME_HEADER_SIZE ||
                   asf->packet_segments < 1);
1377 1378 1379 1380
        asf->packet_time_start = 0;
    }
}

1381 1382 1383 1384 1385 1386
// Added to support seeking after packets have been read
// If information is not reset, read_packet fails due to
// leftover information from previous reads
static void asf_reset_header(AVFormatContext *s)
{
    ASFContext *asf = s->priv_data;
Michael Niedermayer's avatar
Michael Niedermayer committed
1387 1388
    ASFStream *asf_st;
    int i;
1389

1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
    asf->packet_size_left      = 0;
    asf->packet_flags          = 0;
    asf->packet_property       = 0;
    asf->packet_timestamp      = 0;
    asf->packet_segsizetype    = 0;
    asf->packet_segments       = 0;
    asf->packet_seq            = 0;
    asf->packet_replic_size    = 0;
    asf->packet_key_frame      = 0;
    asf->packet_padsize        = 0;
    asf->packet_frag_offset    = 0;
    asf->packet_frag_size      = 0;
1402
    asf->packet_frag_timestamp = 0;
1403 1404 1405
    asf->packet_multi_size     = 0;
    asf->packet_time_delta     = 0;
    asf->packet_time_start     = 0;
1406

1407 1408
    for (i = 0; i < 128; i++) {
        asf_st = &asf->streams[i];
Michael Niedermayer's avatar
Michael Niedermayer committed
1409
        av_free_packet(&asf_st->pkt);
1410
        asf_st->packet_obj_size = 0;
1411 1412
        asf_st->frag_offset = 0;
        asf_st->seq         = 0;
Michael Niedermayer's avatar
Michael Niedermayer committed
1413
    }
1414
    asf->asf_st = NULL;
1415 1416
}

1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
static void skip_to_key(AVFormatContext *s)
{
    ASFContext *asf = s->priv_data;
    int i;

    for (i = 0; i < 128; i++) {
        int j = asf->asfid2avid[i];
        ASFStream *asf_st = &asf->streams[i];
        if (j < 0 || s->streams[j]->codec->codec_type != AVMEDIA_TYPE_VIDEO)
            continue;

        asf_st->skip_to_key = 1;
    }
}

1432 1433 1434
static int asf_read_close(AVFormatContext *s)
{
    asf_reset_header(s);
1435

1436 1437 1438
    return 0;
}

1439 1440
static int64_t asf_read_pts(AVFormatContext *s, int stream_index,
                            int64_t *ppos, int64_t pos_limit)
1441
{
1442
    ASFContext *asf     = s->priv_data;
1443
    AVPacket pkt1, *pkt = &pkt1;
Michael Niedermayer's avatar
Michael Niedermayer committed
1444
    ASFStream *asf_st;
Michael Niedermayer's avatar
Michael Niedermayer committed
1445
    int64_t pts;
1446
    int64_t pos = *ppos;
1447
    int i;
1448
    int64_t start_pos[ASF_MAX_STREAMS];
1449

1450 1451
    for (i = 0; i < s->nb_streams; i++)
        start_pos[i] = pos;
1452

1453
    if (s->packet_size > 0)
1454
        pos = (pos + s->packet_size - 1 - s->internal->data_offset) /
1455
              s->packet_size * s->packet_size +
1456
              s->internal->data_offset;
1457
    *ppos = pos;
1458 1459
    if (avio_seek(s->pb, pos, SEEK_SET) < 0)
        return AV_NOPTS_VALUE;
1460

1461
    ff_read_frame_flush(s);
Michael Niedermayer's avatar
Michael Niedermayer committed
1462
    asf_reset_header(s);
1463
    for (;;) {
1464
        if (av_read_frame(s, pkt) < 0) {
1465
            av_log(s, AV_LOG_INFO, "asf_read_pts failed\n");
1466
            return AV_NOPTS_VALUE;
Michael Niedermayer's avatar
Michael Niedermayer committed
1467
        }
1468

1469
        pts = pkt->dts;
Michael Niedermayer's avatar
Michael Niedermayer committed
1470 1471

        av_free_packet(pkt);
1472 1473
        if (pkt->flags & AV_PKT_FLAG_KEY) {
            i = pkt->stream_index;
1474

1475
            asf_st = &asf->streams[s->streams[i]->id];
1476

1477
//            assert((asf_st->packet_pos - s->data_offset) % s->packet_size == 0);
1478
            pos = asf_st->packet_pos;
1479

1480 1481 1482
            av_add_index_entry(s->streams[i], pos, pts, pkt->size,
                               pos - start_pos[i] + 1, AVINDEX_KEYFRAME);
            start_pos[i] = asf_st->packet_pos + 1;
1483

1484 1485
            if (pkt->stream_index == stream_index)
                break;
1486 1487 1488
        }
    }

1489
    *ppos = pos;
Michael Niedermayer's avatar
Michael Niedermayer committed
1490
    return pts;
1491 1492
}

1493
static int asf_build_simple_index(AVFormatContext *s, int stream_index)
1494
{
1495
    ff_asf_guid g;
1496 1497
    ASFContext *asf     = s->priv_data;
    int64_t current_pos = avio_tell(s->pb);
1498
    int64_t ret;
1499

1500 1501
    if((ret = avio_seek(s->pb, asf->data_object_offset + asf->data_object_size, SEEK_SET)) < 0) {
        return ret;
1502
    }
1503

1504 1505
    if ((ret = ff_get_guid(s->pb, &g)) < 0)
        goto end;
1506 1507

    /* the data object can be followed by other top-level objects,
1508
     * skip them until the simple index object is reached */
1509
    while (ff_guidcmp(&g, &ff_asf_simple_index_header)) {
1510
        int64_t gsize = avio_rl64(s->pb);
1511
        if (gsize < 24 || avio_feof(s->pb)) {
1512
            goto end;
1513
        }
1514
        avio_skip(s->pb, gsize - 24);
1515 1516
        if ((ret = ff_get_guid(s->pb, &g)) < 0)
            goto end;
1517 1518 1519
    }

    {
1520
        int64_t itime, last_pos = -1;
1521
        int pct, ict;
1522
        int i;
1523
        int64_t av_unused gsize = avio_rl64(s->pb);
1524 1525
        if ((ret = ff_get_guid(s->pb, &g)) < 0)
            goto end;
1526 1527 1528 1529 1530 1531 1532 1533 1534
        itime = avio_rl64(s->pb);
        pct   = avio_rl32(s->pb);
        ict   = avio_rl32(s->pb);
        av_log(s, AV_LOG_DEBUG,
               "itime:0x%"PRIx64", pct:%d, ict:%d\n", itime, pct, ict);

        for (i = 0; i < ict; i++) {
            int pktnum        = avio_rl32(s->pb);
            int pktct         = avio_rl16(s->pb);
1535
            int64_t pos       = s->internal->data_offset + s->packet_size * (int64_t)pktnum;
1536 1537 1538 1539 1540 1541 1542 1543
            int64_t index_pts = FFMAX(av_rescale(itime, i, 10000) - asf->hdr.preroll, 0);

            if (pos != last_pos) {
                av_log(s, AV_LOG_DEBUG, "pktnum:%d, pktct:%d  pts: %"PRId64"\n",
                       pktnum, pktct, index_pts);
                av_add_index_entry(s->streams[stream_index], pos, index_pts,
                                   s->packet_size, 0, AVINDEX_KEYFRAME);
                last_pos = pos;
1544
            }
1545
        }
1546
        asf->index_read = ict > 1;
1547
    }
1548
end:
1549
//     if (avio_feof(s->pb)) {
1550 1551
//         ret = 0;
//     }
1552
    avio_seek(s->pb, current_pos, SEEK_SET);
1553
    return ret;
1554 1555
}

1556 1557
static int asf_read_seek(AVFormatContext *s, int stream_index,
                         int64_t pts, int flags)
1558
{
1559
    ASFContext *asf = s->priv_data;
1560
    AVStream *st    = s->streams[stream_index];
1561
    int ret = 0;
1562

1563
    if (s->packet_size <= 0)
1564 1565
        return -1;

1566
    /* Try using the protocol's read_seek if available */
1567
    if (s->pb) {
1568
        int64_t ret = avio_seek_time(s->pb, stream_index, pts, flags);
1569
        if (ret >= 0)
1570
            asf_reset_header(s);
1571
        if (ret != AVERROR(ENOSYS))
Aurelien Jacobs's avatar
Aurelien Jacobs committed
1572
            return ret;
1573 1574
    }

1575 1576 1577
    /* explicitly handle the case of seeking to 0 */
    if (!pts) {
        asf_reset_header(s);
1578
        avio_seek(s->pb, s->internal->data_offset, SEEK_SET);
1579 1580 1581
        return 0;
    }

1582
    if (!asf->index_read) {
1583
        ret = asf_build_simple_index(s, stream_index);
1584 1585 1586
        if (ret < 0)
            asf->index_read = -1;
    }
1587

1588
    if (asf->index_read > 0 && st->index_entries) {
1589
        int index = av_index_search_timestamp(st, pts, flags);
1590
        if (index >= 0) {
1591
            /* find the position */
1592
            uint64_t pos = st->index_entries[index].pos;
1593

1594 1595
            /* do the seek */
            av_log(s, AV_LOG_DEBUG, "SEEKTO: %"PRId64"\n", pos);
1596 1597
            if(avio_seek(s->pb, pos, SEEK_SET) < 0)
                return -1;
1598
            asf_reset_header(s);
1599
            skip_to_key(s);
1600
            return 0;
1601
        }
1602
    }
1603
    /* no index or seeking by index failed */
1604
    if (ff_seek_frame_binary(s, stream_index, pts, flags) < 0)
1605
        return -1;
1606
    asf_reset_header(s);
1607
    skip_to_key(s);
1608
    return 0;
1609 1610
}

1611
AVInputFormat ff_asf_demuxer = {
1612
    .name           = "asf",
1613
    .long_name      = NULL_IF_CONFIG_SMALL("ASF (Advanced / Active Streaming Format)"),
1614 1615 1616 1617 1618 1619 1620
    .priv_data_size = sizeof(ASFContext),
    .read_probe     = asf_probe,
    .read_header    = asf_read_header,
    .read_packet    = asf_read_packet,
    .read_close     = asf_read_close,
    .read_seek      = asf_read_seek,
    .read_timestamp = asf_read_pts,
1621
    .flags          = AVFMT_NOBINSEARCH | AVFMT_NOGENSEARCH,
1622
    .priv_class     = &asf_class,
Fabrice Bellard's avatar
Fabrice Bellard committed
1623
};