gst/:
authorEdward Hervey <bilboed@bilboed.com>
Wed, 9 Nov 2005 16:44:40 +0000 (16:44 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 9 Nov 2005 16:44:40 +0000 (16:44 +0000)
Original commit message from CVS:
* gst/base/gsttypefindhelper.c:
* gst/gsttypefind.c:
* gst/gsttypefind.h:

ChangeLog
gst/base/gsttypefindhelper.c
gst/gsttypefind.c
gst/gsttypefind.h
libs/gst/base/gsttypefindhelper.c

index 8b61ef3..aee4c11 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-11-09  Edward Hervey  <edward@fluendo.com>
+
+       * gst/base/gsttypefindhelper.c:
+       * gst/gsttypefind.c:
+       * gst/gsttypefind.h:
+
+
 2005-11-09  Wim Taymans  <wim@fluendo.com>
 
        * gst/gstiterator.c:
index 024ea20..6656c06 100644 (file)
@@ -125,6 +125,17 @@ helper_find_suggest (gpointer data, guint probability, const GstCaps * caps)
   }
 }
 
+/**
+ * gst_type_find_helper:
+ * @src: A source #GstPad
+ * @size: The length in bytes
+ *
+ * Tries to find what type of data is flowing from the given source #GstPad.
+ *
+ * Returns: The #GstCaps corresponding to the data stream.
+ * Returns #NULL if no #GstCaps matches the data stream.
+ */
+
 GstCaps *
 gst_type_find_helper (GstPad * src, guint64 size)
 {
index 3e3e862..8b9c3d2 100644 (file)
  * SECTION:gsttypefind
  * @short_description: Stream type detection
  *
+ * The following functions allow you to detect the media type of an unknown
+ * stream.
+ *
+ * Last reviewed on 2005-11-09 (0.9.4)
  */
 
 #include "gst_private.h"
@@ -36,13 +40,13 @@ GST_DEBUG_CATEGORY_EXTERN (gst_type_find_debug);
 
 /**
  * gst_type_find_register:
- * @plugin: the GstPlugin to register with
- * @name: the name for registering
- * @rank: rank (or importance) of this typefind function
- * @func: the function to use for typefinding
- * @extensions: optional extensions that could belong to this type
- * @possible_caps: optionally the caps that could be returned when typefinding succeeds
- * @data: optional user data. This user data must be available until the plugin
+ * @plugin: A #GstPlugin.
+ * @name: The name for registering
+ * @rank: The rank (or importance) of this typefind function
+ * @func: The #GstTypeFindFunction to use
+ * @extensions: Optional extensions that could belong to this type
+ * @possible_caps: Optionally the caps that could be returned when typefinding succeeds
+ * @data: Optional user data. This user data must be available until the plugin
  *       is unloaded.
  *
  * Registers a new typefind function to be used for typefinding. After
@@ -90,18 +94,17 @@ gst_type_find_register (GstPlugin * plugin, const gchar * name, guint rank,
 
 /**
  * gst_type_find_peek:
- * @find: the find object the function was called with
- * @offset: the offset
- * @size: the number of bytes to return
+ * @find: The #GstTypeFind object the function was called with
+ * @offset: The offset
+ * @size: The number of bytes to return
  *
- * Returns size bytes of the stream to identify beginning at offset. If offset
- * is a positive number, the offset is relative to the beginning of the stream,
- * if offset is a negative number the offset is relative to the end of the
- * stream. The returned memory is valid until the typefinding function returns
- * and must not be freed.
- * If NULL is returned, that data is not available.
+ * Returns the @size bytes of the stream to identify beginning at offset. If
+ * offset is a positive number, the offset is relative to the beginning of the
+ * stream, if offset is a negative number the offset is relative to the end of
+ * the stream. The returned memory is valid until the typefinding function
+ * returns and must not be freed.
  *
- * Returns: the requested data or NULL if that data is not available.
+ * Returns: the requested data, or NULL if that data is not available.
  */
 guint8 *
 gst_type_find_peek (GstTypeFind * find, gint64 offset, guint size)
@@ -113,14 +116,14 @@ gst_type_find_peek (GstTypeFind * find, gint64 offset, guint size)
 
 /**
  * gst_type_find_suggest:
- * @find: the find object the function was called with
- * @probability: the probability in percent that the suggestion is right
- * @caps: the fixed caps to suggest
+ * @find: The #GstTypeFind object the function was called with
+ * @probability: The probability in percent that the suggestion is right
+ * @caps: The fixed #GstCaps to suggest
  *
- * If a typefind function calls this function it suggests the caps with the
- * given probability. A typefind function may supply different suggestions
+ * If a #GstTypeFindFunction calls this function it suggests the caps with the
+ * given probability. A #GstTypeFindFunction may supply different suggestions
  * in one call.
- * It is up to the caller of the typefind function to interpret these values.
+ * It is up to the caller of the #GstTypeFindFunction to interpret these values.
  */
 void
 gst_type_find_suggest (GstTypeFind * find, guint probability,
@@ -136,11 +139,11 @@ gst_type_find_suggest (GstTypeFind * find, guint probability,
 
 /**
  * gst_type_find_get_length:
- * @find: the find object the function was called with
+ * @find: The #GstTypeFind the function was called with
  *
  * Get the length of the data stream.
  *
- * Returns: the length of the data stream or 0 if it is not available.
+ * Returns: The length of the data stream, or 0 if it is not available.
  */
 guint64
 gst_type_find_get_length (GstTypeFind * find)
index 11320dc..1c23d87 100644 (file)
@@ -31,6 +31,13 @@ G_BEGIN_DECLS
 
 typedef struct _GstTypeFind GstTypeFind;
 
+/**
+ * GstTypeFindFunction:
+ * @find: A #GstTypeFind structure
+ * @data: optionnal data to pass to the function
+ *
+ * A function that will be called by typefinding.
+ */
 typedef void (* GstTypeFindFunction) (GstTypeFind *find, gpointer data);
 
 typedef enum {
@@ -43,8 +50,12 @@ typedef enum {
 
 /**
  * GstTypeFind:
+ * @peek: Method to peek data.
+ * @suggest: Method to suggest #GstCaps with a given probability.
+ * @data: The data used by the caller of the typefinding function.
+ * @get_length: Returns the length of current data.
  *
- * Object that stores typefind callbacks.
+ * Object that stores typefind callbacks. To use with #GstTypeFindFactory.
  */
 struct _GstTypeFind {
   /* private to the caller of the typefind function */
index 024ea20..6656c06 100644 (file)
@@ -125,6 +125,17 @@ helper_find_suggest (gpointer data, guint probability, const GstCaps * caps)
   }
 }
 
+/**
+ * gst_type_find_helper:
+ * @src: A source #GstPad
+ * @size: The length in bytes
+ *
+ * Tries to find what type of data is flowing from the given source #GstPad.
+ *
+ * Returns: The #GstCaps corresponding to the data stream.
+ * Returns #NULL if no #GstCaps matches the data stream.
+ */
+
 GstCaps *
 gst_type_find_helper (GstPad * src, guint64 size)
 {