oiiodecoder: always add 1 frame to image sequences so the end frame is shown

This commit is contained in:
itsmattkc
2020-03-28 11:29:51 +11:00
parent 3399227b3a
commit 84aab543ca
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ bool OIIODecoder::Probe(Footage *f, const QAtomicInt *cancelled)
video_stream->set_start_time(start_index);
video_stream->set_duration(end_index - start_index);
video_stream->set_duration(end_index - start_index + 1);
} else {
image_stream = std::make_shared<ImageStream>();
}