From a589a794c81f85f5ac7898c7f7f4fe4ddbbcce1e Mon Sep 17 00:00:00 2001 From: "Joshua N. Pritikin" Date: Fri, 25 Jul 2003 01:59:49 +0000 Subject: [PATCH] Add a GST_SEEK catagory for diagnostics about handling seek events. Original commit message from CVS: Add a GST_SEEK catagory for diagnostics about handling seek events. --- gst/gstinfo.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gst/gstinfo.c b/gst/gstinfo.c index b4a65566f5..14d34ab4d4 100644 --- a/gst/gstinfo.c +++ b/gst/gstinfo.c @@ -122,6 +122,7 @@ GstDebugCategory *GST_CAT_REFCOUNTING = NULL; GstDebugCategory *GST_CAT_EVENT = NULL; GstDebugCategory *GST_CAT_PARAMS = NULL; GstDebugCategory *GST_CAT_CALL_TRACE = NULL; +GstDebugCategory *GST_CAT_SEEK = NULL; /** * _gst_debug_init: @@ -230,6 +231,9 @@ void _gst_debug_init (void) GST_CAT_CALL_TRACE = _gst_debug_category_new ("GST_CALL_TRACE", GST_DEBUG_BOLD, NULL); + GST_CAT_SEEK = _gst_debug_category_new ("GST_SEEK", + 0, + "plugins reacting to seek events"); } /* we can't do this further above, because we initialize the GST_CAT_DEFAULT struct */