diff options
author | Sasi Inguva <isasi@google.com> | 2018-05-29 15:36:07 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-06-06 01:53:30 +0200 |
commit | fe6c4f0c47d4390bead6e226cb12b45584b76301 (patch) | |
tree | 3388b17ec15a6ef5d01e80859ec99fd26493805f /tests/fate | |
parent | 318d0fcbfe5637013342d53d44bb7ea8867fb4d0 (diff) | |
download | ffmpeg-streaming-fe6c4f0c47d4390bead6e226cb12b45584b76301.zip ffmpeg-streaming-fe6c4f0c47d4390bead6e226cb12b45584b76301.tar.gz |
lavf/mov.c: Set st->start_time for video streams explicitly.
If start_time is not set, ffmpeg takes the duration from the global
movie instead of the per stream duration.
Signed-off-by: Sasi Inguva <isasi@google.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/fate')
-rw-r--r-- | tests/fate/mov.mak | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/fate/mov.mak b/tests/fate/mov.mak index eadee3a..960b186 100644 --- a/tests/fate/mov.mak +++ b/tests/fate/mov.mak @@ -16,6 +16,7 @@ FATE_MOV = fate-mov-3elist \ fate-mov-frag-overlap \ fate-mov-bbi-elst-starts-b \ fate-mov-neg-firstpts-discard-frames \ + fate-mov-stream-shorter-than-movie \ FATE_MOV_FFPROBE = fate-mov-neg-firstpts-discard \ fate-mov-aac-2048-priming \ @@ -88,6 +89,9 @@ fate-mov-neg-firstpts-discard: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_entri # Makes sure that expected frames are generated for mov_neg_first_pts_discard.mov with -vsync 1 fate-mov-neg-firstpts-discard-frames: CMD = framemd5 -flags +bitexact -i $(TARGET_SAMPLES)/mov/mov_neg_first_pts_discard.mov -vsync 1 +# Makes sure that no frame is dropped/duplicated with fps filter due to start_time / duration miscalculations. +fate-mov-stream-shorter-than-movie: CMD = framemd5 -flags +bitexact -i $(TARGET_SAMPLES)/mov/mov_stream_shorter_than_movie.mov -vf fps=fps=24 -an + fate-mov-aac-2048-priming: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_packets -print_format compact $(TARGET_SAMPLES)/mov/aac-2048-priming.mov fate-mov-zombie: CMD = run ffprobe$(PROGSSUF)$(EXESUF) -show_streams -show_packets -show_frames -bitexact -print_format compact $(TARGET_SAMPLES)/mov/white_zombie_scrunch-part.mov |