From ba9869311ff1794ff44b9360bb8f19b4e6d9c5d3 Mon Sep 17 00:00:00 2001 From: Yusuke Nakamura Date: Fri, 13 Apr 2012 19:44:34 +0900 Subject: mov: Take stps entries into consideration also about key_off. Splitted files don't start always from a sync sample. Signed-off-by: Derek Buitenhuis --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat') diff --git a/libavformat/mov.c b/libavformat/mov.c index 11b4582766..a0c5393396 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1754,7 +1754,7 @@ static void mov_build_index(MOVContext *mov, AVStream *st) unsigned int stts_sample = 0; unsigned int sample_size; unsigned int distance = 0; - int key_off = sc->keyframes && sc->keyframes[0] == 1; + int key_off = (sc->keyframes && sc->keyframes[0] == 1) || (sc->stps_data && sc->stps_data[0] == 1); current_dts -= sc->dts_shift; -- cgit v1.2.3