mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
Correctly check for flushing
This commit is contained in:
parent
6a48db3d0f
commit
3be4965d00
1 changed files with 1 additions and 1 deletions
|
@ -691,7 +691,7 @@ retry:
|
|||
}
|
||||
case INFO_TRY_AGAIN_LATER:
|
||||
GST_DEBUG_OBJECT (self, "Dequeueing output buffer timed out");
|
||||
if (!self->flushing)
|
||||
if (self->flushing)
|
||||
goto flushing;
|
||||
else
|
||||
goto retry;
|
||||
|
|
Loading…
Reference in a new issue