mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
flowcombiner: add debug category
Not that it logs much.
This commit is contained in:
parent
5ebfe26a51
commit
246b285783
1 changed files with 10 additions and 2 deletions
|
@ -74,9 +74,14 @@ struct _GstFlowCombiner
|
||||||
static GstFlowCombiner *gst_flow_combiner_ref (GstFlowCombiner * combiner);
|
static GstFlowCombiner *gst_flow_combiner_ref (GstFlowCombiner * combiner);
|
||||||
static void gst_flow_combiner_unref (GstFlowCombiner * combiner);
|
static void gst_flow_combiner_unref (GstFlowCombiner * combiner);
|
||||||
|
|
||||||
G_DEFINE_BOXED_TYPE (GstFlowCombiner, gst_flow_combiner,
|
GST_DEBUG_CATEGORY_STATIC (flowcombiner_dbg);
|
||||||
|
#define GST_CAT_DEFAULT flowcombiner_dbg
|
||||||
|
|
||||||
|
G_DEFINE_BOXED_TYPE_WITH_CODE (GstFlowCombiner, gst_flow_combiner,
|
||||||
(GBoxedCopyFunc) gst_flow_combiner_ref,
|
(GBoxedCopyFunc) gst_flow_combiner_ref,
|
||||||
(GBoxedFreeFunc) gst_flow_combiner_unref);
|
(GBoxedFreeFunc) gst_flow_combiner_unref,
|
||||||
|
GST_DEBUG_CATEGORY_INIT (flowcombiner_dbg, "flowcombiner", 0,
|
||||||
|
"Flow Combiner"));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_flow_combiner_new:
|
* gst_flow_combiner_new:
|
||||||
|
@ -95,6 +100,9 @@ gst_flow_combiner_new (void)
|
||||||
combiner->last_ret = GST_FLOW_OK;
|
combiner->last_ret = GST_FLOW_OK;
|
||||||
combiner->ref_count = 1;
|
combiner->ref_count = 1;
|
||||||
|
|
||||||
|
/* Make sure debug category is initialised */
|
||||||
|
gst_flow_combiner_get_type ();
|
||||||
|
|
||||||
return combiner;
|
return combiner;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue