From 5729f3b2a3bc454c53b9a97512e5dd4c6b6635e8 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sat, 5 Jun 2004 12:19:27 +0000 Subject: [PATCH] put back GST_CAT_DATAFLOW Original commit message from CVS: put back GST_CAT_DATAFLOW --- ChangeLog | 8 ++++++++ configure.ac | 2 +- docs/gst/tmpl/gstelement.sgml | 23 ----------------------- docs/gst/tmpl/gsttypes.sgml | 32 ++++++++++++++++---------------- gst/gstinfo.c | 6 ++++++ 5 files changed, 31 insertions(+), 40 deletions(-) diff --git a/ChangeLog b/ChangeLog index 588437e..ada718e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-06-05 Thomas Vander Stichele + + * configure.ac: + * docs/gst/tmpl/gstelement.sgml: + * docs/gst/tmpl/gsttypes.sgml: + * gst/gstinfo.c: (_gst_debug_init): + put back GST_CAT_DATAFLOW to fix API breakage + 2004-06-04 David Schleef * autogen.sh: Add a temporary 'env' to test buildbot problems. diff --git a/configure.ac b/configure.ac index b41fdd0..2f2b4b9 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ dnl - library source changed -> increment REVISION dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0 dnl - interfaces added -> increment AGE dnl - interfaces removed -> AGE = 0 -AS_LIBTOOL(GST, 2, 0, 1) +AS_LIBTOOL(GST, 3, 0, 2) AM_PROG_LIBTOOL AC_CONFIG_SRCDIR([gst/gst.c]) diff --git a/docs/gst/tmpl/gstelement.sgml b/docs/gst/tmpl/gstelement.sgml index ad7905f..d6e0772 100644 --- a/docs/gst/tmpl/gstelement.sgml +++ b/docs/gst/tmpl/gstelement.sgml @@ -76,8 +76,6 @@ and gst_element_set_clock(). You can wait for the clock to reach a given -@: - @gstelement: the object which received the signal. @@ -85,11 +83,6 @@ and gst_element_set_clock(). You can wait for the clock to reach a given -@: -@: -@: -@: - @gstelement: the object which received the signal. @arg1: @arg2: @@ -100,10 +93,6 @@ and gst_element_set_clock(). You can wait for the clock to reach a given -@: -@: -@: - @gstelement: the object which received the signal. @arg1: @arg2: @@ -113,9 +102,6 @@ and gst_element_set_clock(). You can wait for the clock to reach a given -@: -@: - @gstelement: the object which received the signal. @arg1: @@ -124,8 +110,6 @@ and gst_element_set_clock(). You can wait for the clock to reach a given -@: - @gstelement: the object which received the signal. @@ -133,9 +117,6 @@ and gst_element_set_clock(). You can wait for the clock to reach a given -@: -@: - @gstelement: the object which received the signal. @arg1: @@ -144,10 +125,6 @@ and gst_element_set_clock(). You can wait for the clock to reach a given -@: -@: -@: - @gstelement: the object which received the signal. @arg1: @arg2: diff --git a/docs/gst/tmpl/gsttypes.sgml b/docs/gst/tmpl/gsttypes.sgml index dcf6af2..b786243 100644 --- a/docs/gst/tmpl/gsttypes.sgml +++ b/docs/gst/tmpl/gsttypes.sgml @@ -127,58 +127,58 @@ template. -@gstelement: the object which received the signal. +@: -@gstelement: the object which received the signal. -@arg1: -@arg2: -@arg3: +@: +@: +@: +@: -@gstelement: the object which received the signal. -@arg1: -@arg2: +@: +@: +@: -@gstelement: the object which received the signal. -@arg1: +@: +@: -@gstelement: the object which received the signal. +@: -@gstelement: the object which received the signal. -@arg1: +@: +@: -@gstelement: the object which received the signal. -@arg1: -@arg2: +@: +@: +@: diff --git a/gst/gstinfo.c b/gst/gstinfo.c index 57be7be..e0fa8f8 100644 --- a/gst/gstinfo.c +++ b/gst/gstinfo.c @@ -134,6 +134,9 @@ GstDebugCategory *GST_CAT_PARENTAGE = NULL; GstDebugCategory *GST_CAT_STATES = NULL; GstDebugCategory *GST_CAT_PLANNING = NULL; GstDebugCategory *GST_CAT_SCHEDULING = NULL; + +/* FIXME: remove GST_CAT_DATAFLOW in 0.9 */ +GstDebugCategory *GST_CAT_DATAFLOW = NULL; GstDebugCategory *GST_CAT_BUFFER = NULL; GstDebugCategory *GST_CAT_CAPS = NULL; GstDebugCategory *GST_CAT_CLOCK = NULL; @@ -233,6 +236,9 @@ _gst_debug_init (void) GST_DEBUG_BOLD | GST_DEBUG_FG_MAGENTA, NULL); GST_CAT_SCHEDULING = _gst_debug_category_new ("GST_SCHEDULING", GST_DEBUG_BOLD | GST_DEBUG_FG_MAGENTA, NULL); +/* FIXME: remove GST_CAT_DATAFLOW in 0.9 */ + GST_CAT_DATAFLOW = _gst_debug_category_new ("GST_DATAFLOW", + GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, NULL); GST_CAT_BUFFER = _gst_debug_category_new ("GST_BUFFER", GST_DEBUG_BOLD | GST_DEBUG_FG_GREEN, NULL); GST_CAT_CAPS = _gst_debug_category_new ("GST_CAPS", -- 2.7.4