diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-07-18 15:58:04 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-07-18 15:58:04 +0000 |
commit | 74eafb859545eb11b1b2f49aef3a1b2c13eb8e2f (patch) | |
tree | b18876ca6e8b2afdf9ba7b4350af79ee9f0c3b07 /gst/matroska/matroska-mux.c | |
parent | 5c4078eb481d32c2c0f8d1fd3758482494830bcc (diff) |
add debug categories to matroska
Original commit message from CVS:
add debug categories to matroska
Diffstat (limited to 'gst/matroska/matroska-mux.c')
-rw-r--r-- | gst/matroska/matroska-mux.c | 6 |
1 files changed, 6 insertions, 0 deletions
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 |