mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
dvdemux: don't return FALSE when dropping sink events
Fixes problem in conjunction with avidemux. https://bugzilla.gnome.org/show_bug.cgi?id=695643
This commit is contained in:
parent
dfde4179e8
commit
3b943a56da
1 changed files with 3 additions and 1 deletions
|
@ -651,8 +651,10 @@ gst_dvdemux_push_event (GstDVDemux * dvdemux, GstEvent * event)
|
|||
|
||||
if (dvdemux->audiosrcpad)
|
||||
res |= gst_pad_push_event (dvdemux->audiosrcpad, event);
|
||||
else
|
||||
else {
|
||||
gst_event_unref (event);
|
||||
res = TRUE;
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue