mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
videobalance: Add debug category
This commit is contained in:
parent
37de42977a
commit
3d70ce60fa
1 changed files with 6 additions and 0 deletions
|
@ -59,6 +59,9 @@
|
||||||
#define rint(x) (floor((x)+0.5))
|
#define rint(x) (floor((x)+0.5))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
GST_DEBUG_CATEGORY_STATIC (videobalance_debug);
|
||||||
|
#define GST_CAT_DEFAULT videobalance_debug
|
||||||
|
|
||||||
/* GstVideoBalance properties */
|
/* GstVideoBalance properties */
|
||||||
#define DEFAULT_PROP_CONTRAST 1.0
|
#define DEFAULT_PROP_CONTRAST 1.0
|
||||||
#define DEFAULT_PROP_BRIGHTNESS 0.0
|
#define DEFAULT_PROP_BRIGHTNESS 0.0
|
||||||
|
@ -402,6 +405,9 @@ gst_video_balance_class_init (GstVideoBalanceClass * klass)
|
||||||
GObjectClass *gobject_class = (GObjectClass *) klass;
|
GObjectClass *gobject_class = (GObjectClass *) klass;
|
||||||
GstBaseTransformClass *trans_class = (GstBaseTransformClass *) klass;
|
GstBaseTransformClass *trans_class = (GstBaseTransformClass *) klass;
|
||||||
|
|
||||||
|
GST_DEBUG_CATEGORY_INIT (videobalance_debug, "videobalance", 0,
|
||||||
|
"videobalance");
|
||||||
|
|
||||||
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_video_balance_finalize);
|
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_video_balance_finalize);
|
||||||
gobject_class->set_property = gst_video_balance_set_property;
|
gobject_class->set_property = gst_video_balance_set_property;
|
||||||
gobject_class->get_property = gst_video_balance_get_property;
|
gobject_class->get_property = gst_video_balance_get_property;
|
||||||
|
|
Loading…
Reference in a new issue