Zebediah Figura : winegstreamer: Rename gst_base_src_perform_seek() to src_perform_seek().

Alexandre Julliard julliard at winehq.org
Wed Feb 24 15:45:41 CST 2021


Module: wine
Branch: master
Commit: 1649389edca12d2998f72a159b2bbbf247176163
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=1649389edca12d2998f72a159b2bbbf247176163

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Tue Feb 23 16:07:03 2021 -0600

winegstreamer: Rename gst_base_src_perform_seek() to src_perform_seek().

Avoid polluting the GStreamer namespace.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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:




More information about the wine-cvs mailing list