diff --git a/configure.in b/configure.in index 747d40f8b3..6a803dc3d6 100644 --- a/configure.in +++ b/configure.in @@ -438,7 +438,7 @@ AM_CONDITIONAL(HAVE_CDPARANOIA, test "x$HAVE_CDPARANOIA" = "xyes") AM_CONDITIONAL(HAVE_LIBLAME, test "x$HAVE_LIBLAME" = "xyes") dnl CC="kgcc" -CFLAGS="$CFLAGS -O6" +CFLAGS="$CFLAGS -O6 -Wall" dnl FIXME: having to AC_SUBST these is messy. Not sure if CPPFLAGS and LDFLAGS dnl need it, either. diff --git a/docs/gst/tmpl/gstinfo.sgml b/docs/gst/tmpl/gstinfo.sgml index 3e6916c485..3b7e534af7 100644 --- a/docs/gst/tmpl/gstinfo.sgml +++ b/docs/gst/tmpl/gstinfo.sgml @@ -31,68 +31,6 @@ to your application. @args...: - - -Use this macro to show debugging info. This is only usefull when developing new -plugin elements. -If you #define DEBUG_ENABLED before including gst/gst.h, this macro will produce -g_print messages. - - -@format: the format specification as in g_print -@args...: arguments - - - - - - - -@format: -@args...: - - - - - - - -@format: -@args...: - - - - - - - -@format: -@args...: - - - - - - - - - - - - - - -@format: -@args...: - - - - - - - - - @@ -145,27 +83,6 @@ g_print messages. @string: - - - - - -@cat: -@format: -@args...: - - - - - - - -@cat: -@element: -@format: -@args...: - - @@ -194,24 +111,3 @@ g_print messages. @string: - - - - - -@element: -@format: -@args...: - - - - - - - -@element: -@object: -@format: -@args...: - - diff --git a/docs/gst/tmpl/gstplugin.sgml b/docs/gst/tmpl/gstplugin.sgml index e3931b378a..0818ade2e8 100644 --- a/docs/gst/tmpl/gstplugin.sgml +++ b/docs/gst/tmpl/gstplugin.sgml @@ -24,7 +24,9 @@ GStreamer is extensible so GstElements can be loaded at r @longname: @filename: @types: +@numtypes: @elements: +@numelements: @loaded: diff --git a/docs/gst/tmpl/gstreamer-unused.sgml b/docs/gst/tmpl/gstreamer-unused.sgml index 9c4ed92c38..908b65a7ce 100644 --- a/docs/gst/tmpl/gstreamer-unused.sgml +++ b/docs/gst/tmpl/gstreamer-unused.sgml @@ -17,6 +17,14 @@ + + + + + +@format: +@args...: + @@ -137,6 +145,14 @@ the stream. @obj: + + + + + +@format: +@args...: + @@ -201,13 +217,6 @@ the stream. - - - - - -@Returns: - @@ -215,12 +224,30 @@ the stream. @obj: + + + + + +@Returns: + + + +Use this macro to show debugging info. This is only usefull when developing new +plugin elements. +If you #define DEBUG_ENABLED before including gst/gst.h, this macro will produce +g_print messages. + + +@format: the format specification as in g_print +@args...: arguments + @@ -235,6 +262,12 @@ the stream. @klass: + + + + + + @@ -429,6 +462,15 @@ elements. A connection is typically a bas class for queues. @pad: @buf: + + + + + +@cat: +@format: +@args...: + @@ -583,6 +625,14 @@ Take data in and spit data out @name: @Returns: + + + + + +@format: +@args...: + @@ -636,6 +686,15 @@ GstGetbits @klass: + + + + + +@element: +@format: +@args...: + @@ -819,6 +878,12 @@ This macro unsets the given state on the element. @obj: Element to unset state of. @flag: State to unset, can be any number of bits in guint32. + + + + + + This macro returns the entire set of flags for the object. @@ -826,12 +891,6 @@ This macro returns the entire set of flags for the object. @obj: GstSrc to return flags for. - - - - - - @@ -907,6 +966,14 @@ The start point of a filter graph + + + + + +@format: +@args...: + @@ -978,6 +1045,12 @@ This macro sets the given state on the element. @obj: Element to set state of. @flag: State to set, can be any number of bits in guint32. + + + + + + @@ -1558,6 +1631,16 @@ subclass use this to start their flag enumeration + + + + + +@element: +@object: +@format: +@args...: + Flags for the GstSrc element @@ -1655,6 +1738,12 @@ Flags for the GstSrc element @Returns: + + + + + + @@ -1663,12 +1752,6 @@ Flags for the GstSrc element @pad: @Returns: - - - - - - @@ -2049,6 +2132,16 @@ GstFilter @Returns: + + + + + +@cat: +@element: +@format: +@args...: + diff --git a/examples/autoplug/autoplug.c b/examples/autoplug/autoplug.c index 44e783f982..e92ec806ef 100644 --- a/examples/autoplug/autoplug.c +++ b/examples/autoplug/autoplug.c @@ -59,16 +59,14 @@ int main(int argc,char *argv[]) /* add objects to the main pipeline */ gst_pipeline_add_src(GST_PIPELINE(pipeline), disksrc); - gst_pipeline_add_sink(GST_PIPELINE(pipeline), audiosink); gst_pipeline_add_sink(GST_PIPELINE(pipeline), videosink); + gst_pipeline_add_sink(GST_PIPELINE(pipeline), audiosink); if (!gst_pipeline_autoplug(GST_PIPELINE(pipeline))) { g_print("unable to handle stream\n"); exit(-1); } - /* make it ready */ - gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_READY); /* start playing */ gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_PLAYING); diff --git a/tests/old/examples/autoplug/autoplug.c b/tests/old/examples/autoplug/autoplug.c index 44e783f982..e92ec806ef 100644 --- a/tests/old/examples/autoplug/autoplug.c +++ b/tests/old/examples/autoplug/autoplug.c @@ -59,16 +59,14 @@ int main(int argc,char *argv[]) /* add objects to the main pipeline */ gst_pipeline_add_src(GST_PIPELINE(pipeline), disksrc); - gst_pipeline_add_sink(GST_PIPELINE(pipeline), audiosink); gst_pipeline_add_sink(GST_PIPELINE(pipeline), videosink); + gst_pipeline_add_sink(GST_PIPELINE(pipeline), audiosink); if (!gst_pipeline_autoplug(GST_PIPELINE(pipeline))) { g_print("unable to handle stream\n"); exit(-1); } - /* make it ready */ - gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_READY); /* start playing */ gst_element_set_state(GST_ELEMENT(pipeline), GST_STATE_PLAYING);