I'm too lazy to comment this
authorThomas Vander Stichele <thomas@apestaart.org>
Sat, 15 Oct 2005 16:16:04 +0000 (16:16 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sat, 15 Oct 2005 16:16:04 +0000 (16:16 +0000)
Original commit message from CVS:
gtk-doc insists on inserting <PARA> at every empty line, sigh

gst/check/gstcheck.c
gst/gst.c
gst/gstbuffer.c
gst/gstcaps.c
gst/gstelementfactory.c
gst/gstpadtemplate.c
gst/gstplugin.c
gst/gsttypefindfactory.c
libs/gst/check/gstcheck.c

index f1c05a0570875b9677ba8f50b3b543fff1963750..54093bf21dfc20d48f45c5f1b1920c670be3b814 100644 (file)
@@ -168,7 +168,8 @@ gst_check_setup_src_pad (GstElement * element,
   fail_if (sinkpad == NULL, "Could not get sink pad from %s",
       GST_ELEMENT_NAME (element));
   ASSERT_OBJECT_REFCOUNT (sinkpad, "sinkpad", 2);
-  fail_unless (gst_pad_set_caps (srcpad, caps));
+  if (caps)
+    fail_unless (gst_pad_set_caps (srcpad, caps));
   fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK,
       "Could not link source and %s sink pads", GST_ELEMENT_NAME (element));
   gst_object_unref (sinkpad);   /* because we got it higher up */
@@ -218,7 +219,8 @@ gst_check_setup_sink_pad (GstElement * element, GstStaticPadTemplate * template,
   srcpad = gst_element_get_pad (element, "src");
   fail_if (srcpad == NULL, "Could not get source pad from %s",
       GST_ELEMENT_NAME (element));
-  fail_unless (gst_pad_set_caps (sinkpad, caps));
+  if (caps)
+    fail_unless (gst_pad_set_caps (sinkpad, caps));
   gst_pad_set_chain_function (sinkpad, gst_check_chain_func);
 
   fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK,
index ea9ee3966a1d040751c6ed77106d5d26de73dcb1..abbeacdf62e7b6fb3297590abc1a046185ae580e 100644 (file)
--- a/gst/gst.c
+++ b/gst/gst.c
@@ -69,7 +69,6 @@
  * <programlisting>
  * static gboolean stats = FALSE;
  * ...
- *
  * int
  * main (int argc, char *argv[])
  * {
  *         "Show pad stats", NULL},
  *       POPT_TABLEEND
  *     };
- *
  *   // initialize the GStreamer library
  *   gst_init_with_popt_table (&amp;argc, &amp;argv, options);
- *
  *   ...
  * }
  * </programlisting>
index 6be177eb1f72ed9f30da0530214fb89653eee89e..a59a75ed8db9d91b77232044ed583c2bcb38a3c8 100644 (file)
  *   <programlisting>
  *   GstBuffer *buffer;
  *   gint size, width, height, bpp;
- *
  *   ...
- *
  *   size = width * height * bpp;
- *
  *   buffer = gst_buffer_new ();
  *   GST_BUFFER_SIZE (buffer) = size;
  *   GST_BUFFER_MALLOCDATA (buffer) = g_alloc (size);
index ef31954f7b7d67d601f761d346100c6ab1e69707..f0fc00bc25c35cf148217308fb4ef00327b5cde0 100644 (file)
@@ -33,7 +33,7 @@
 #include "gst_private.h"
 #include <gst/gst.h>
 
-/* #define DEBUG_REFCOUNT */
+#define DEBUG_REFCOUNT
 
 #define CAPS_POISON(caps) G_STMT_START{ \
   if (caps) { \
index dc99d23600e0d5eebf16c4d9c9cc54df7046bcd1..fa85bc1679db731f3f92c5485e968fdccb3ed416 100644 (file)
  * <title>Using an element factory</title>
  * <programlisting language="c">
  *   #include &lt;gst/gst.h&gt;
- *
  *   GstElement *src;
  *   GstElementFactory *srcfactory;
- *
  *   gst_init(&amp;argc,&amp;argv);
- *
  *   srcfactory = gst_element_factory_find("filesrc");
  *   g_return_if_fail(srcfactory != NULL);
- *
  *   src = gst_element_factory_create(srcfactory,"src");
  *   g_return_if_fail(src != NULL);
  *   ...
index 930bab76d01427654bb32d4212146daed5247f0b..b96688a2149dd400bf9e8c0b0517c1cd09d8dc84 100644 (file)
  *         "channels = (int) [ 1, 6 ]"
  *     )
  *   )
- *
  *   void
  *   my_method (void)
  *   {
  *     GstPad *pad;
- *
  *     pad = gst_pad_new_from_template (GST_PAD_TEMPLATE_GET (my_template_factory), "sink");
  *     ...
  *   }
  *   my_factory_init (GstPlugin *plugin)
  *   {
  *     GstElementFactory *factory;
- *
  *     factory = gst_element_factory_new ("my_factory", GST_TYPE_MYFACTORY, &amp;gst_myfactory_details);
  *     g_return_val_if_fail (factory != NULL, FALSE);
- *
  *     gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (my_template_factory));
- *
  *     gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
- *
  *     return TRUE;
  *   }
  *   </programlisting>
index b72d2387ad83aeba25450f766e281b8ec7ee142b..7003a078fb20b68c63956c4a9210418ea881646a 100644 (file)
@@ -29,7 +29,8 @@
  * A plugin system can provide one or more of the basic
  * <application>GStreamer</application> #GstPluginFeature subclasses.
  *
- * A plugin should export a symbol <symbol>plugin_desc</symbol> that is a struct of type #GstPluginDesc.
+ * A plugin should export a symbol <symbol>plugin_desc</symbol> that is a
+ * struct of type #GstPluginDesc.
  * the plugin loader will check the version of the core library the plugin was
  * linked against and will create a new #GstPlugin. It will then call the
  * #GstPluginInitFunc function that was provided in the plugin_desc.
@@ -889,7 +890,6 @@ gst_plugin_load_by_name (const gchar * name)
  * <programlisting>
  * GstPlugin *loaded_plugin;
  * loaded_plugin = gst_plugin_load (plugin);
- *
  * // presumably, we're no longer interested in the potentially-unloaded plugin
  * gst_object_unref (plugin);
  * plugin = loaded_plugin;
index 993f393850f5f1861462ad3aafe559bc067772f4..48b014577cd8864fada626510d7bde0e559578c2 100644 (file)
@@ -61,7 +61,6 @@
  *     GList *walk, *type_list;
  *     MyTypeFind find = {data, size, 0, NULL};
  *     GstTypeFind gst_find = {my_peek, my_suggest, &amp;find, };
- *
  *     walk = type_list = gst_type_find_factory_get_list ();
  *     while (walk) {
  *       GstTypeFindFactory *factory = GST_TYPE_FIND_FACTORY (walk->data);
index f1c05a0570875b9677ba8f50b3b543fff1963750..54093bf21dfc20d48f45c5f1b1920c670be3b814 100644 (file)
@@ -168,7 +168,8 @@ gst_check_setup_src_pad (GstElement * element,
   fail_if (sinkpad == NULL, "Could not get sink pad from %s",
       GST_ELEMENT_NAME (element));
   ASSERT_OBJECT_REFCOUNT (sinkpad, "sinkpad", 2);
-  fail_unless (gst_pad_set_caps (srcpad, caps));
+  if (caps)
+    fail_unless (gst_pad_set_caps (srcpad, caps));
   fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK,
       "Could not link source and %s sink pads", GST_ELEMENT_NAME (element));
   gst_object_unref (sinkpad);   /* because we got it higher up */
@@ -218,7 +219,8 @@ gst_check_setup_sink_pad (GstElement * element, GstStaticPadTemplate * template,
   srcpad = gst_element_get_pad (element, "src");
   fail_if (srcpad == NULL, "Could not get source pad from %s",
       GST_ELEMENT_NAME (element));
-  fail_unless (gst_pad_set_caps (sinkpad, caps));
+  if (caps)
+    fail_unless (gst_pad_set_caps (sinkpad, caps));
   gst_pad_set_chain_function (sinkpad, gst_check_chain_func);
 
   fail_unless (gst_pad_link (srcpad, sinkpad) == GST_PAD_LINK_OK,