Module: wine Branch: master Commit: 3619ff751796b014f3f13fb2858989f9607c7f77 URL: https://source.winehq.org/git/wine.git/?a=commit;h=3619ff751796b014f3f13fb28...
Author: Zebediah Figura z.figura12@gmail.com Date: Sun Sep 8 13:55:06 2019 -0500
winegstreamer: Handle GST_EVENT_RECONFIGURE.
Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/winegstreamer/gstdemux.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c index 41afc22..61e75b0 100644 --- a/dlls/winegstreamer/gstdemux.c +++ b/dlls/winegstreamer/gstdemux.c @@ -408,6 +408,7 @@ static gboolean event_src(GstPad *pad, GstObject *parent, GstEvent *event) FIXME("%p (%u) stub\n", event, event->type); case GST_EVENT_TAG: case GST_EVENT_QOS: + case GST_EVENT_RECONFIGURE: return gst_pad_event_default(pad, parent, event); } return TRUE;