diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2016-08-26 14:30:07 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2016-08-29 15:31:03 +0200 |
commit | 8db804e8f549d5b86a1edf62736e0ef80f160da9 (patch) | |
tree | acf2ab0098c2dae6970ae44ae0f3fbd546d7880f | |
parent | eb96505b761eb02b6a3efc76d854afa6a41941ff (diff) | |
download | ffmpeg-8db804e8f549d5b86a1edf62736e0ef80f160da9.tar.gz |
mov: Remove old b-frame/video delay heuristic
This was added before edts support existed, and is no longer
valid.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-rw-r--r-- | libavformat/mov.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 89c2c23fe4..ca49716026 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2306,9 +2306,6 @@ static void mov_build_index(MOVContext *mov, AVStream *st) if (sc->time_offset < 0) sc->time_offset = av_rescale(sc->time_offset, sc->time_scale, mov->time_scale); current_dts = -sc->time_offset; - if (sc->ctts_data && sc->stts_data && sc->stts_data[0].duration && - sc->ctts_data[0].duration / sc->stts_data[0].duration > 16) - st->internal->avctx->has_b_frames = 1; } /* only use old uncompressed audio chunk demuxing when stts specifies it */ |