tracer/log: fix hook prototype

s/GstElement/GstPad/
This commit is contained in:
Stefan Sauer 2016-12-08 22:02:17 +01:00
parent 0dbf978eb4
commit 8d819a51b8

View file

@ -273,7 +273,7 @@ do_bin_remove_post (GstTracer * self, guint64 ts, GstBin * bin, gboolean res)
}
static void
do_pad_link_pre (GstTracer * self, guint64 ts, GstPad * src, GstElement * sink)
do_pad_link_pre (GstTracer * self, guint64 ts, GstPad * src, GstPad * sink)
{
do_log (GST_CAT_PADS,
"%" GST_TIME_FORMAT ", src=%" GST_PTR_FORMAT ", sink=%" GST_PTR_FORMAT,
@ -281,7 +281,7 @@ do_pad_link_pre (GstTracer * self, guint64 ts, GstPad * src, GstElement * sink)
}
static void
do_pad_link_post (GstTracer * self, guint64 ts, GstPad * src, GstElement * sink,
do_pad_link_post (GstTracer * self, guint64 ts, GstPad * src, GstPad * sink,
GstPadLinkReturn res)
{
do_log (GST_CAT_PADS,