mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 11:55:39 +00:00
avidemux: Stop scanning at the last entry... and not the one before :)
This ensures we actually push out everything
This commit is contained in:
parent
c917d65e6d
commit
683f2a02fb
1 changed files with 1 additions and 1 deletions
|
@ -3912,7 +3912,7 @@ gst_avi_demux_advance (GstAviDemux * avi, GstAviStream * stream,
|
|||
new_entry = old_entry + 1;
|
||||
|
||||
/* see if we reached the end */
|
||||
if (new_entry >= stream->stop_entry) {
|
||||
if (new_entry > stream->stop_entry) {
|
||||
if (avi->segment.rate < 0.0) {
|
||||
if (stream->step_entry == stream->start_entry) {
|
||||
/* we stepped all the way to the start, eos */
|
||||
|
|
Loading…
Reference in a new issue