From 74eafb859545eb11b1b2f49aef3a1b2c13eb8e2f Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 18 Jul 2004 15:58:04 +0000 Subject: add debug categories to matroska Original commit message from CVS: add debug categories to matroska --- gst/matroska/matroska-mux.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gst/matroska/matroska-mux.c') diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index f9ea3b77..736a9aa6 100644 --- a/gst/matroska/matroska-mux.c +++ b/gst/matroska/matroska-mux.c @@ -29,6 +29,9 @@ #include "matroska-mux.h" #include "matroska-ids.h" +GST_DEBUG_CATEGORY (matroskamux_debug); +#define GST_CAT_DEFAULT matroskamux_debug + enum { /* FILL ME */ @@ -204,6 +207,9 @@ gst_matroska_mux_class_init (GstMatroskaMuxClass * klass) gstelement_class->change_state = gst_matroska_mux_change_state; gstelement_class->request_new_pad = gst_matroska_mux_request_new_pad; + + GST_DEBUG_CATEGORY_INIT (matroskamux_debug, "matroskamux", 0, + "Matroska muxer"); } static void -- cgit