gst/gsttypefindfactory.c: Fix docs.
authorEdward Hervey <bilboed@bilboed.com>
Wed, 9 Nov 2005 17:06:20 +0000 (17:06 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 9 Nov 2005 17:06:20 +0000 (17:06 +0000)
Original commit message from CVS:
* gst/gsttypefindfactory.c:
Fix docs.

ChangeLog
gst/gsttypefindfactory.c

index aee4c1108649560021e89922414d7c2be0b68faf..2187f22c26f100748f87fe3bd5a6335664c6349c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,14 @@
+2005-11-09  Edward Hervey  <edward@fluendo.com>
+
+       * gst/gsttypefindfactory.c:
+       Fix docs.
+       
 2005-11-09  Edward Hervey  <edward@fluendo.com>
 
        * gst/base/gsttypefindhelper.c:
        * gst/gsttypefind.c:
        * gst/gsttypefind.h:
-
+       Fix docs.
 
 2005-11-09  Wim Taymans  <wim@fluendo.com>
 
index 48b014577cd8864fada626510d7bde0e559578c2..a4295cda171d4f187801ff86cb0ea7c3694946b1 100644 (file)
@@ -76,6 +76,8 @@
  * The above example shows how to write a very simple typefinder that
  * identifies the given data. You can get quite a bit more complicated than
  * that though.
+ *
+ * Last reviewed on 2005-11-09 (0.9.4)
  */
 
 #include "gst_private.h"
@@ -162,7 +164,7 @@ gst_type_find_factory_dispose (GObject * object)
  * Gets the list of all registered typefind factories. You must free the
  * list using g_list_free.
  *
- * Returns: the list of all registered typefind factories
+ * Returns: the list of all registered #GstTypeFindFactory.
  */
 GList *
 gst_type_find_factory_get_list (void)
@@ -173,11 +175,11 @@ gst_type_find_factory_get_list (void)
 
 /**
  * gst_type_find_factory_get_caps:
- * @factory: a factory
+ * @factory: A #GstTypeFindFactory
  *
- * Gets the caps associated with a typefind factory.
+ * Gets the #GstCaps associated with a typefind factory.
  *
- * Returns: the #GstCaps associated with this factory
+ * Returns: The #GstCaps associated with this factory
  */
 GstCaps *
 gst_type_find_factory_get_caps (GstTypeFindFactory * factory)
@@ -189,9 +191,9 @@ gst_type_find_factory_get_caps (GstTypeFindFactory * factory)
 
 /**
  * gst_type_find_factory_get_extensions:
- * @factory: a factory
+ * @factory: A #GstTypeFindFactory
  *
- * Gets the extensions associated with a typefind factory. The returned
+ * Gets the extensions associated with a #GstTypeFindFactory. The returned
  * array should not be changed. If you need to change stuff in it, you should
  * copy it using g_stdupv().  This function may return NULL to indicate
  * a 0-length list.
@@ -208,11 +210,11 @@ gst_type_find_factory_get_extensions (GstTypeFindFactory * factory)
 
 /**
  * gst_type_find_factory_call_function:
- * @factory: a factory
- * @find: a properly setup #GstTypeFind entry. The get_data and suggest_type
+ * @factory: A #GstTypeFindFactory
+ * @find: A properly setup #GstTypeFind entry. The get_data and suggest_type
  *        members must be set.
  *
- * Calls the typefinding function associated with this factory.
+ * Calls the #GstTypeFindFunction associated with this factory.
  */
 void
 gst_type_find_factory_call_function (GstTypeFindFactory * factory,