[PATCH 5/6] winegstreamer: Rename gst_base_src_perform_seek() to src_perform_seek().

Zebediah Figura z.figura12 at gmail.com
Tue Feb 23 16:07:03 CST 2021


Avoid polluting the GStreamer namespace.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/winegstreamer/wg_parser.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/winegstreamer/wg_parser.c b/dlls/winegstreamer/wg_parser.c
index a2eaf1958d6..f76ca903b80 100644
--- a/dlls/winegstreamer/wg_parser.c
+++ b/dlls/winegstreamer/wg_parser.c
@@ -1387,7 +1387,7 @@ static GstBusSyncReply bus_handler_cb(GstBus *bus, GstMessage *msg, gpointer use
     return GST_BUS_DROP;
 }
 
-static gboolean gst_base_src_perform_seek(struct wg_parser *parser, GstEvent *event)
+static gboolean src_perform_seek(struct wg_parser *parser, GstEvent *event)
 {
     BOOL thread = !!parser->push_thread;
     GstSeekType cur_type, stop_type;
@@ -1444,7 +1444,7 @@ static gboolean src_event_cb(GstPad *pad, GstObject *parent, GstEvent *event)
     switch (event->type)
     {
         case GST_EVENT_SEEK:
-            ret = gst_base_src_perform_seek(parser, event);
+            ret = src_perform_seek(parser, event);
             break;
 
         case GST_EVENT_FLUSH_START:
-- 
2.30.1




More information about the wine-devel mailing list