winegstreamer: Rename gst_base_src_perform_seek() to src_perform_seek().

Avoid polluting the GStreamer namespace.

Signed-off-by: Zebediah Figura <z.figura12@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2021-02-23 16:07:03 -06:00 committed by Alexandre Julliard
parent 2492bda6e1
commit 1649389edc
1 changed files with 2 additions and 2 deletions

View File

@ -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: