From 28874e15ff286a1486ea4f6fc2aadfe70556db0b Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 14 Feb 2018 11:47:14 +0530 Subject: [PATCH] wasapi: Set a default category for util functions Without this, they all go to the default category where they can be missed --- sys/wasapi/gstwasapi.c | 5 +++++ sys/wasapi/gstwasapiutil.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/sys/wasapi/gstwasapi.c b/sys/wasapi/gstwasapi.c index 1e50c4f..6669797 100644 --- a/sys/wasapi/gstwasapi.c +++ b/sys/wasapi/gstwasapi.c @@ -25,6 +25,8 @@ #include "gstwasapisrc.h" #include "gstwasapidevice.h" +GST_DEBUG_CATEGORY (gst_wasapi_debug); + static gboolean plugin_init (GstPlugin * plugin) { @@ -40,6 +42,9 @@ plugin_init (GstPlugin * plugin) GST_RANK_PRIMARY, GST_TYPE_WASAPI_DEVICE_PROVIDER)) return FALSE; + GST_DEBUG_CATEGORY_INIT (gst_wasapi_debug, "wasapi", + 0, "Windows audio session API generic"); + return TRUE; } diff --git a/sys/wasapi/gstwasapiutil.c b/sys/wasapi/gstwasapiutil.c index 78c6f75..986d2e3 100644 --- a/sys/wasapi/gstwasapiutil.c +++ b/sys/wasapi/gstwasapiutil.c @@ -25,6 +25,9 @@ #include "gstwasapiutil.h" #include "gstwasapidevice.h" +GST_DEBUG_CATEGORY_EXTERN (gst_wasapi_debug); +#define GST_CAT_DEFAULT gst_wasapi_debug + /* This was only added to MinGW in ~2015 and our Cerbero toolchain is too old */ #if defined(_MSC_VER) #include -- 2.7.4