From: Philippe Normand Date: Sun, 29 Aug 2021 09:28:57 +0000 (+0100) Subject: wpevideosrc: Ensure debug category is set X-Git-Tag: 1.19.3~507^2~80 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=edc04df13c4ec4610768bc3b877d361fae492166;p=platform%2Fupstream%2Fgstreamer.git wpevideosrc: Ensure debug category is set Part-of: --- diff --git a/ext/wpe/gstwpevideosrc.cpp b/ext/wpe/gstwpevideosrc.cpp index 3868ee9..0bab056 100644 --- a/ext/wpe/gstwpevideosrc.cpp +++ b/ext/wpe/gstwpevideosrc.cpp @@ -134,6 +134,9 @@ struct _GstWpeVideoSrc #define WPE_LOCK(o) g_mutex_lock(&(o)->lock) #define WPE_UNLOCK(o) g_mutex_unlock(&(o)->lock) +GST_DEBUG_CATEGORY_EXTERN (wpe_video_src_debug); +#define GST_CAT_DEFAULT wpe_video_src_debug + #define gst_wpe_video_src_parent_class parent_class G_DEFINE_TYPE(GstWpeVideoSrc, gst_wpe_video_src, GST_TYPE_GL_BASE_SRC);