gst/gstelement.c: add documentation note about gst_element_found_tags_for_pad not being usable in getfunctions. (see ...

Original commit message from CVS:
* gst/gstelement.c:
add documentation note about gst_element_found_tags_for_pad not
being usable in getfunctions. (see #137042)
This commit is contained in:
Benjamin Otte 2004-03-13 10:14:05 +00:00
parent 365e091451
commit bc98c7bf1d
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2004-03-13 Benjamin Otte <otte@gnome.org>
* gst/gstelement.c:
add documentation note about gst_element_found_tags_for_pad not
being usable in getfunctions. (see #137042)
2004-03-12 David Schleef <ds@schleef.org> 2004-03-12 David Schleef <ds@schleef.org>
* gst/gstcaps.h: jdahlin, what are you smoking? We can't just * gst/gstcaps.h: jdahlin, what are you smoking? We can't just

View file

@ -3253,6 +3253,10 @@ gst_element_found_tags (GstElement *element, const GstTagList *tag_list)
* want to push the found tags down one pad, in that case this function is for * want to push the found tags down one pad, in that case this function is for
* you. It takes ownership of the taglist, emits the found-tag signal and pushes * you. It takes ownership of the taglist, emits the found-tag signal and pushes
* a tag event down the pad. * a tag event down the pad.
* <note>This function may not be used in a #GstPadGetFunction, because it calls
* gst_pad_push(). In those functions, call gst_element_found_tags(), create a
* tag event with gst_event_new_tag() and return that from your
* #GstPadGetFunction.</note>
*/ */
void void
gst_element_found_tags_for_pad (GstElement *element, GstPad *pad, GstClockTime timestamp, gst_element_found_tags_for_pad (GstElement *element, GstPad *pad, GstClockTime timestamp,