mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
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:
parent
365e091451
commit
bc98c7bf1d
2 changed files with 10 additions and 0 deletions
|
@ -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>
|
||||
|
||||
* gst/gstcaps.h: jdahlin, what are you smoking? We can't just
|
||||
|
|
|
@ -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
|
||||
* you. It takes ownership of the taglist, emits the found-tag signal and pushes
|
||||
* 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
|
||||
gst_element_found_tags_for_pad (GstElement *element, GstPad *pad, GstClockTime timestamp,
|
||||
|
|
Loading…
Reference in a new issue