Mercurial > libavformat.hg
changeset 5064:1ed8004a3ef5 libavformat
mov demuxer: Track the current position also for streams that have AVDISCARD_ALL set.
This allows for seamless switching of e.g. audio streams, with the previous code
playback started always from the beginning when removing AVDISCARD_ALL.
author | reimar |
---|---|
date | Wed, 24 Jun 2009 09:38:42 +0000 |
parents | dcaea581e24d |
children | 4c7f6c2d0e0e |
files | mov.c |
diffstat | 1 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Wed Jun 24 08:57:53 2009 +0000 +++ b/mov.c Wed Jun 24 09:38:42 2009 +0000 @@ -2063,7 +2063,7 @@ for (i = 0; i < s->nb_streams; i++) { AVStream *avst = s->streams[i]; MOVStreamContext *msc = avst->priv_data; - if (avst->discard != AVDISCARD_ALL && msc->pb && msc->current_sample < avst->nb_index_entries) { + if (msc->pb && msc->current_sample < avst->nb_index_entries) { AVIndexEntry *current_sample = &avst->index_entries[msc->current_sample]; int64_t dts = av_rescale(current_sample->timestamp, AV_TIME_BASE, msc->time_scale); dprintf(s, "stream %d, sample %d, dts %"PRId64"\n", i, msc->current_sample, dts); @@ -2102,6 +2102,8 @@ sc = st->priv_data; /* must be done just before reading, to avoid infinite loop on sample */ sc->current_sample++; + + if (st->discard != AVDISCARD_ALL) { if (url_fseek(sc->pb, sample->pos, SEEK_SET) != sample->pos) { av_log(mov->fc, AV_LOG_ERROR, "stream %d, offset 0x%"PRIx64": partial file\n", sc->ffindex, sample->pos); @@ -2120,6 +2122,8 @@ return ret; } #endif + } + pkt->stream_index = sc->ffindex; pkt->dts = sample->timestamp; if (sc->ctts_data) { @@ -2139,6 +2143,8 @@ pkt->duration = next_dts - pkt->dts; pkt->pts = pkt->dts; } + if (st->discard == AVDISCARD_ALL) + goto retry; pkt->flags |= sample->flags & AVINDEX_KEYFRAME ? PKT_FLAG_KEY : 0; pkt->pos = sample->pos; dprintf(s, "stream %d, pts %"PRId64", dts %"PRId64", pos 0x%"PRIx64", duration %d\n", @@ -2196,7 +2202,7 @@ for (i = 0; i < s->nb_streams; i++) { st = s->streams[i]; - if (stream_index == i || st->discard == AVDISCARD_ALL) + if (stream_index == i) continue; timestamp = av_rescale_q(seek_timestamp, s->streams[stream_index]->time_base, st->time_base);