mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
tracer/log: fix hook prototype
s/GstElement/GstPad/
This commit is contained in:
parent
0dbf978eb4
commit
8d819a51b8
1 changed files with 2 additions and 2 deletions
|
@ -273,7 +273,7 @@ do_bin_remove_post (GstTracer * self, guint64 ts, GstBin * bin, gboolean res)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
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,
|
do_log (GST_CAT_PADS,
|
||||||
"%" GST_TIME_FORMAT ", src=%" GST_PTR_FORMAT ", sink=%" GST_PTR_FORMAT,
|
"%" 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
|
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)
|
GstPadLinkReturn res)
|
||||||
{
|
{
|
||||||
do_log (GST_CAT_PADS,
|
do_log (GST_CAT_PADS,
|
||||||
|
|
Loading…
Reference in a new issue