mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
parent
526a406c2e
commit
d09834dc6f
2 changed files with 48 additions and 45 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-07-26 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/gstelement.c: (gst_element_set_eos_recursive):
|
||||
various whitespace fixes.
|
||||
doc fix, fixes #148497
|
||||
|
||||
2004-07-25 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
|
||||
|
|
|
@ -1522,7 +1522,8 @@ gst_element_class_get_pad_template (GstElementClass * element_class,
|
|||
* @element: a #GstElement to get pad templates of.
|
||||
*
|
||||
* Retrieves a list of the pad templates associated with the element.
|
||||
* (FIXME: Should be deprecated in favor of gst_element_class_get_pad_template_list).
|
||||
* (FIXME: Should be deprecated in favor of
|
||||
* gst_element_class_get_pad_template_list).
|
||||
*
|
||||
* Returns: the #GList of padtemplates.
|
||||
*/
|
||||
|
@ -2240,9 +2241,8 @@ gst_element_get_random_pad (GstElement * element, GstPadDirection dir)
|
|||
* @element: a #GstElement to query
|
||||
*
|
||||
* Get an array of event masks from the element.
|
||||
* If the element doesn't
|
||||
* implement an event masks function, the query will be forwarded
|
||||
* to a random linked sink pad.
|
||||
* If the element doesn't implement an event masks function,
|
||||
* the query will be forwarded to a random linked sink pad.
|
||||
*
|
||||
* Returns: An array of #GstEventMask elements.
|
||||
*/
|
||||
|
@ -2327,9 +2327,8 @@ gst_element_seek (GstElement * element, GstSeekType seek_type, guint64 offset)
|
|||
* @element: a #GstElement to query
|
||||
*
|
||||
* Get an array of query types from the element.
|
||||
* If the element doesn't
|
||||
* implement a query types function, the query will be forwarded
|
||||
* to a random sink pad.
|
||||
* If the element doesn't implement a query types function,
|
||||
* the query will be forwarded to a random sink pad.
|
||||
*
|
||||
* Returns: An array of #GstQueryType elements.
|
||||
*/
|
||||
|
@ -2400,10 +2399,9 @@ gst_element_query (GstElement * element, GstQueryType type,
|
|||
* gst_element_get_formats:
|
||||
* @element: a #GstElement to query
|
||||
*
|
||||
* Get an array of formst from the element.
|
||||
* If the element doesn't
|
||||
* implement a formats function, the query will be forwarded
|
||||
* to a random sink pad.
|
||||
* Get an array of formats from the element.
|
||||
* If the element doesn't implement a formats function,
|
||||
* the query will be forwarded to a random sink pad.
|
||||
*
|
||||
* Returns: An array of #GstFormat elements.
|
||||
*/
|
||||
|
@ -2437,9 +2435,8 @@ gst_element_get_formats (GstElement * element)
|
|||
* @dest_value: a pointer to the destination value.
|
||||
*
|
||||
* Invokes a conversion on the element.
|
||||
* If the element doesn't
|
||||
* implement a convert function, the query will be forwarded
|
||||
* to a random sink pad.
|
||||
* If the element doesn't implement a convert function,
|
||||
* the query will be forwarded to a random sink pad.
|
||||
*
|
||||
* Returns: TRUE if the conversion could be performed.
|
||||
*/
|
||||
|
@ -3397,8 +3394,8 @@ gst_element_found_tags (GstElement * element, const GstTagList * tag_list)
|
|||
*
|
||||
* This is a convenience routine for tag finding. Most of the time you only
|
||||
* 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.
|
||||
* 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
|
||||
|
|
Loading…
Reference in a new issue