mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-08 15:32:32 +00:00
gst/gsttypefindfactory.c: Fix docs.
Original commit message from CVS: * gst/gsttypefindfactory.c: Fix docs.
This commit is contained in:
parent
04b5f119c6
commit
acf209c871
2 changed files with 17 additions and 10 deletions
|
@ -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>
|
2005-11-09 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
* gst/base/gsttypefindhelper.c:
|
* gst/base/gsttypefindhelper.c:
|
||||||
* gst/gsttypefind.c:
|
* gst/gsttypefind.c:
|
||||||
* gst/gsttypefind.h:
|
* gst/gsttypefind.h:
|
||||||
|
Fix docs.
|
||||||
|
|
||||||
2005-11-09 Wim Taymans <wim@fluendo.com>
|
2005-11-09 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
|
|
@ -76,6 +76,8 @@
|
||||||
* The above example shows how to write a very simple typefinder that
|
* 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
|
* identifies the given data. You can get quite a bit more complicated than
|
||||||
* that though.
|
* that though.
|
||||||
|
*
|
||||||
|
* Last reviewed on 2005-11-09 (0.9.4)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "gst_private.h"
|
#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
|
* Gets the list of all registered typefind factories. You must free the
|
||||||
* list using g_list_free.
|
* list using g_list_free.
|
||||||
*
|
*
|
||||||
* Returns: the list of all registered typefind factories
|
* Returns: the list of all registered #GstTypeFindFactory.
|
||||||
*/
|
*/
|
||||||
GList *
|
GList *
|
||||||
gst_type_find_factory_get_list (void)
|
gst_type_find_factory_get_list (void)
|
||||||
|
@ -173,11 +175,11 @@ gst_type_find_factory_get_list (void)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_type_find_factory_get_caps:
|
* 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 *
|
GstCaps *
|
||||||
gst_type_find_factory_get_caps (GstTypeFindFactory * factory)
|
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:
|
* 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
|
* 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
|
* copy it using g_stdupv(). This function may return NULL to indicate
|
||||||
* a 0-length list.
|
* a 0-length list.
|
||||||
|
@ -208,11 +210,11 @@ gst_type_find_factory_get_extensions (GstTypeFindFactory * factory)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_type_find_factory_call_function:
|
* gst_type_find_factory_call_function:
|
||||||
* @factory: a factory
|
* @factory: A #GstTypeFindFactory
|
||||||
* @find: a properly setup #GstTypeFind entry. The get_data and suggest_type
|
* @find: A properly setup #GstTypeFind entry. The get_data and suggest_type
|
||||||
* members must be set.
|
* members must be set.
|
||||||
*
|
*
|
||||||
* Calls the typefinding function associated with this factory.
|
* Calls the #GstTypeFindFunction associated with this factory.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gst_type_find_factory_call_function (GstTypeFindFactory * factory,
|
gst_type_find_factory_call_function (GstTypeFindFactory * factory,
|
||||||
|
|
Loading…
Reference in a new issue