mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
gst/gstfilter.c: Improve documentation of gst_filter_run(). Fixes #518627.
Original commit message from CVS: * gst/gstfilter.c: Improve documentation of gst_filter_run(). Fixes #518627.
This commit is contained in:
parent
39bfee4a94
commit
ef4fb687a9
2 changed files with 13 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-02-25 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/gstfilter.c:
|
||||||
|
Improve documentation of gst_filter_run(). Fixes #518627.
|
||||||
|
|
||||||
2008-02-23 Tim-Philipp Müller <tim at centricular dot net>
|
2008-02-23 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* docs/README:
|
* docs/README:
|
||||||
|
|
|
@ -51,7 +51,14 @@
|
||||||
* prepended to the list of results returned. If @first is true,
|
* prepended to the list of results returned. If @first is true,
|
||||||
* the search is halted after the first result is found.
|
* the search is halted after the first result is found.
|
||||||
*
|
*
|
||||||
* Returns: the list of results
|
* Since gst_filter_run() knows nothing about the type of @data, no
|
||||||
|
* reference will be taken (if @data refers to an object) and no copy of
|
||||||
|
* @data wil be made in any other way when prepending @data to the list of
|
||||||
|
* results.
|
||||||
|
*
|
||||||
|
* Returns: the list of results. Free with g_list_free() when no longer needed
|
||||||
|
* (the data contained in the list is a flat copy and does need to be
|
||||||
|
* unreferenced or freed).
|
||||||
*/
|
*/
|
||||||
GList *
|
GList *
|
||||||
gst_filter_run (const GList * list, GstFilterFunc func, gboolean first,
|
gst_filter_run (const GList * list, GstFilterFunc func, gboolean first,
|
||||||
|
|
Loading…
Reference in a new issue