diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2016-12-08 22:02:17 +0100 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2016-12-08 22:02:17 +0100 |
commit | 8d819a51b8136a4290e5a4c4c6678c87852406ab (patch) | |
tree | 3ce840d7c9bd0e8a4af7b5dc91ac111cb2651f63 /plugins | |
parent | 0dbf978eb4824d4f5cced5b897d825f43caf5f78 (diff) |
tracer/log: fix hook prototype
s/GstElement/GstPad/
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/tracers/gstlog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/tracers/gstlog.c b/plugins/tracers/gstlog.c index 64a0d71af..d60b1643f 100644 --- a/plugins/tracers/gstlog.c +++ b/plugins/tracers/gstlog.c @@ -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, |