Commit 1649389e authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

winegstreamer: Rename gst_base_src_perform_seek() to src_perform_seek().

Avoid polluting the GStreamer namespace. Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 2492bda6
...@@ -1387,7 +1387,7 @@ static GstBusSyncReply bus_handler_cb(GstBus *bus, GstMessage *msg, gpointer use ...@@ -1387,7 +1387,7 @@ static GstBusSyncReply bus_handler_cb(GstBus *bus, GstMessage *msg, gpointer use
return GST_BUS_DROP; 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; BOOL thread = !!parser->push_thread;
GstSeekType cur_type, stop_type; GstSeekType cur_type, stop_type;
...@@ -1444,7 +1444,7 @@ static gboolean src_event_cb(GstPad *pad, GstObject *parent, GstEvent *event) ...@@ -1444,7 +1444,7 @@ static gboolean src_event_cb(GstPad *pad, GstObject *parent, GstEvent *event)
switch (event->type) switch (event->type)
{ {
case GST_EVENT_SEEK: case GST_EVENT_SEEK:
ret = gst_base_src_perform_seek(parser, event); ret = src_perform_seek(parser, event);
break; break;
case GST_EVENT_FLUSH_START: case GST_EVENT_FLUSH_START:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment