Mercurial > libavformat.hg
changeset 4399:530e55405feb libavformat
offset dts according to edit list, hackish but works, based on patch by Reimar
author | bcoudurier |
---|---|
date | Sun, 08 Feb 2009 04:27:07 +0000 |
parents | 043d314bb216 |
children | 65adb9e5214f |
files | mov.c |
diffstat | 1 files changed, 14 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Sun Feb 08 03:44:54 2009 +0000 +++ b/mov.c Sun Feb 08 04:27:07 2009 +0000 @@ -125,6 +125,7 @@ int *keyframes; int time_scale; int time_rate; + int time_offset; /// time offset of the first edit list entry int current_sample; unsigned int bytes_per_frame; unsigned int samples_per_frame; @@ -1231,6 +1232,12 @@ unsigned int stss_index = 0; unsigned int i, j; + /* adjust first dts according to edit list */ + if (sc->time_offset) { + assert(sc->time_offset % sc->time_rate == 0); + current_dts = - (sc->time_offset / sc->time_rate); + } + /* only use old uncompressed audio chunk demuxing when stts specifies it */ if (!(st->codec->codec_type == CODEC_TYPE_AUDIO && sc->stts_count == 1 && sc->stts_data[0].duration == 1)) { @@ -1762,10 +1769,14 @@ get_be32(pb); /* Track duration */ time = get_be32(pb); /* Media time */ get_be32(pb); /* Media rate */ - if (time != 0) - av_log(c->fc, AV_LOG_WARNING, "edit list not starting at 0, " - "a/v desync might occur, patch welcome\n"); + if (i == 0 && time != -1) + sc->time_offset = time; } + + if(edit_count > 1) + av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, " + "a/v desync might occur, patch welcome\n"); + dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, sc->edit_count); return 0; }