summaryrefslogtreecommitdiff
path: root/tests/check
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-12-24 08:42:51 +0200
committerSebastian Dröge <sebastian@centricular.com>2016-12-24 08:42:51 +0200
commitbdc123600398046dce2588372e9a7948ab6e3e26 (patch)
tree6c0bbb3f50be6e79c3a26cd3c7c9941146c21a84 /tests/check
parent72afd74ef469e17cba845ad9185e7d7f5f1c4003 (diff)
downloadgstreamer-plugins-bad-bdc123600398046dce2588372e9a7948ab6e3e26.tar.gz
dash: Define debug category used in the isoff code for the test too now
Diffstat (limited to 'tests/check')
-rw-r--r--tests/check/elements/dash_isoff.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/check/elements/dash_isoff.c b/tests/check/elements/dash_isoff.c
index 500747b91..2b984e800 100644
--- a/tests/check/elements/dash_isoff.c
+++ b/tests/check/elements/dash_isoff.c
@@ -4,6 +4,8 @@
#include <gst/check/gstcheck.h>
#include <gst/base/base.h>
+GST_DEBUG_CATEGORY (gst_dash_demux_debug);
+
#include "dash_isoff.h"
GST_START_TEST (dash_isoff_box_header_minimal)
@@ -189,6 +191,9 @@ dash_isoff_suite (void)
TCase *tc_isoff_box = tcase_create ("isoff-box-parsing");
TCase *tc_moof = tcase_create ("moof");
+ GST_DEBUG_CATEGORY_INIT (gst_dash_demux_debug, "gst_dash_demux_debug", 0,
+ "mpeg dash tests");
+
tcase_add_test (tc_isoff_box, dash_isoff_box_header_minimal);
tcase_add_test (tc_isoff_box, dash_isoff_box_header_long_size);
tcase_add_test (tc_isoff_box, dash_isoff_box_header_uuid_type);