mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
fix testsuite from segfaulting
Original commit message from CVS: fix testsuite from segfaulting
This commit is contained in:
parent
23bdf708ac
commit
de988971b5
12 changed files with 197 additions and 180 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* testsuite/ghostpads/ghostpads.c: (main):
|
||||||
|
fix testsuite from segfaulting
|
||||||
|
|
||||||
2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* Makefile.am: add release target
|
* Makefile.am: add release target
|
||||||
|
|
|
@ -72,34 +72,6 @@ The GstBin object
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstBin::element-added ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstbin: the object which received the signal.
|
|
||||||
@arg1: the element that was added to the bin
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstBin::element-removed ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstbin: the object which received the signal.
|
|
||||||
@arg1: the element that was removed from the bin
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstBin::iterate ##### -->
|
|
||||||
<para>
|
|
||||||
This signal is emitted when a bin iterates, either automatically or
|
|
||||||
due to a #gst_bin_iterate() call. The return value is used to
|
|
||||||
determine if the object method handler processed any data.
|
|
||||||
In most normal cases, a user-provided signal handler should return
|
|
||||||
FALSE.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstbin: the object which received the signal.
|
|
||||||
@Returns: TRUE if the state of the bin was advanced.
|
|
||||||
|
|
||||||
<!-- ##### USER_FUNCTION GstBinPrePostIterateFunction ##### -->
|
<!-- ##### USER_FUNCTION GstBinPrePostIterateFunction ##### -->
|
||||||
<para>
|
<para>
|
||||||
The signature of the callback for the post and pre iterate function as set with
|
The signature of the callback for the post and pre iterate function as set with
|
||||||
|
@ -252,3 +224,31 @@ gst_bin_set_pre_iterate_function() and gst_bin_set_post_iterate_function().
|
||||||
@clock:
|
@clock:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstBin::element-added ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstbin: the object which received the signal.
|
||||||
|
@arg1: the element that was added to the bin
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstBin::element-removed ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstbin: the object which received the signal.
|
||||||
|
@arg1: the element that was removed from the bin
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstBin::iterate ##### -->
|
||||||
|
<para>
|
||||||
|
This signal is emitted when a bin iterates, either automatically or
|
||||||
|
due to a #gst_bin_iterate() call. The return value is used to
|
||||||
|
determine if the object method handler processed any data.
|
||||||
|
In most normal cases, a user-provided signal handler should return
|
||||||
|
FALSE.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstbin: the object which received the signal.
|
||||||
|
@Returns: TRUE if the state of the bin was advanced.
|
||||||
|
|
||||||
|
|
|
@ -235,21 +235,6 @@ Get the clock flags
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### ARG GstClock:event-diff ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### ARG GstClock:max-diff ##### -->
|
|
||||||
<para>
|
|
||||||
Maximum allowed diff for clock sync requests against the real time.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### ARG GstClock:stats ##### -->
|
|
||||||
<para>
|
|
||||||
Boolean property to activate stat generation on the clock.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gst_clock_set_speed ##### -->
|
<!-- ##### FUNCTION gst_clock_set_speed ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
|
@ -417,3 +402,18 @@ Boolean property to activate stat generation on the clock.
|
||||||
@id:
|
@id:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### ARG GstClock:event-diff ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GstClock:max-diff ##### -->
|
||||||
|
<para>
|
||||||
|
Maximum allowed diff for clock sync requests against the real time.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<!-- ##### ARG GstClock:stats ##### -->
|
||||||
|
<para>
|
||||||
|
Boolean property to activate stat generation on the clock.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
|
|
@ -71,59 +71,6 @@ The element object
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstElement::eos ##### -->
|
|
||||||
<para>
|
|
||||||
Signal emited when the element goes to PAUSED due to an end-of-stream
|
|
||||||
condition.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstelement: the object which received the signal.
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstElement::error ##### -->
|
|
||||||
<para>
|
|
||||||
This signal is emitted when an element has encountered an error that caused
|
|
||||||
it to fail performing its function.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstelement: the object which received the signal.
|
|
||||||
@arg1: the original #GstElement that generated the error.
|
|
||||||
@arg2: a #GError containing the translated error message.
|
|
||||||
@arg3: a debug string providing additional untranslated debug information, or NULL.
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstElement::found-tag ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstelement: the object which received the signal.
|
|
||||||
@arg1:
|
|
||||||
@arg2:
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstElement::new-pad ##### -->
|
|
||||||
<para>
|
|
||||||
Is triggered whenever a new pad is added to an element.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstelement: the object which received the signal.
|
|
||||||
@arg1: the new pad that was added
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstElement::pad-removed ##### -->
|
|
||||||
<para>
|
|
||||||
Is triggered whenever a pad has been removed from the element.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstelement: the object which received the signal.
|
|
||||||
@arg1: The pad that was removed.
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstElement::state-change ##### -->
|
|
||||||
<para>
|
|
||||||
Is triggered whenever the state of an element changes.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstelement: the object which received the signal.
|
|
||||||
@arg1: the new state of the object
|
|
||||||
@arg2:
|
|
||||||
|
|
||||||
<!-- ##### MACRO gst_element_get_name ##### -->
|
<!-- ##### MACRO gst_element_get_name ##### -->
|
||||||
<para>
|
<para>
|
||||||
Gets the name of the element.
|
Gets the name of the element.
|
||||||
|
@ -1019,3 +966,56 @@ Helper macro to create query type functions
|
||||||
@...: list of query types.
|
@...: list of query types.
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstElement::eos ##### -->
|
||||||
|
<para>
|
||||||
|
Signal emited when the element goes to PAUSED due to an end-of-stream
|
||||||
|
condition.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstelement: the object which received the signal.
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstElement::error ##### -->
|
||||||
|
<para>
|
||||||
|
This signal is emitted when an element has encountered an error that caused
|
||||||
|
it to fail performing its function.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstelement: the object which received the signal.
|
||||||
|
@arg1: the original #GstElement that generated the error.
|
||||||
|
@arg2: a #GError containing the translated error message.
|
||||||
|
@arg3: a debug string providing additional untranslated debug information, or NULL.
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstElement::found-tag ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstelement: the object which received the signal.
|
||||||
|
@arg1:
|
||||||
|
@arg2:
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstElement::new-pad ##### -->
|
||||||
|
<para>
|
||||||
|
Is triggered whenever a new pad is added to an element.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstelement: the object which received the signal.
|
||||||
|
@arg1: the new pad that was added
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstElement::pad-removed ##### -->
|
||||||
|
<para>
|
||||||
|
Is triggered whenever a pad has been removed from the element.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstelement: the object which received the signal.
|
||||||
|
@arg1: The pad that was removed.
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstElement::state-change ##### -->
|
||||||
|
<para>
|
||||||
|
Is triggered whenever the state of an element changes.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstelement: the object which received the signal.
|
||||||
|
@arg1: the new state of the object
|
||||||
|
@arg2:
|
||||||
|
|
||||||
|
|
|
@ -209,19 +209,6 @@ The GstIndex object
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstIndex::entry-added ##### -->
|
|
||||||
<para>
|
|
||||||
Is emited when a new entry is added to the index.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstindex: the object which received the signal.
|
|
||||||
@arg1: The entry added to the index.
|
|
||||||
|
|
||||||
<!-- ##### ARG GstIndex:resolver ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### FUNCTION gst_index_new ##### -->
|
<!-- ##### FUNCTION gst_index_new ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
|
@ -414,3 +401,16 @@ Is emited when a new entry is added to the index.
|
||||||
@id:
|
@id:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstIndex::entry-added ##### -->
|
||||||
|
<para>
|
||||||
|
Is emited when a new entry is added to the index.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstindex: the object which received the signal.
|
||||||
|
@arg1: The entry added to the index.
|
||||||
|
|
||||||
|
<!-- ##### ARG GstIndex:resolver ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
|
|
@ -40,47 +40,6 @@ The GstObject
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstObject::deep-notify ##### -->
|
|
||||||
<para>
|
|
||||||
The deep notify signal is used to be notified of property changes.
|
|
||||||
it is typically attached to the toplevel bin to receive notifications
|
|
||||||
from all the elements contained in that bin.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstobject: the object which received the signal.
|
|
||||||
@arg1: the object that originated the signal
|
|
||||||
@arg2: the property that changed
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstObject::object-saved ##### -->
|
|
||||||
<para>
|
|
||||||
Is trigered whenever a new object is saved to XML. You can connect to
|
|
||||||
this signal to insert custom XML tags into the core XML.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstobject: the object which received the signal.
|
|
||||||
@arg1: the xmlNodePtr of the parent node
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstObject::parent-set ##### -->
|
|
||||||
<para>
|
|
||||||
Is emitted when the parent of an object is set.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstobject: the object which received the signal.
|
|
||||||
@arg1: the new parent
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstObject::parent-unset ##### -->
|
|
||||||
<para>
|
|
||||||
Is emitted when the parent of an object is unset.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstobject: the object which received the signal.
|
|
||||||
@arg1: the old parent
|
|
||||||
|
|
||||||
<!-- ##### ARG GstObject:name ##### -->
|
|
||||||
<para>
|
|
||||||
The name of the object
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<!-- ##### MACRO GST_FLAGS ##### -->
|
<!-- ##### MACRO GST_FLAGS ##### -->
|
||||||
<para>
|
<para>
|
||||||
This macro returns the entire set of flags for the object.
|
This macro returns the entire set of flags for the object.
|
||||||
|
@ -331,3 +290,44 @@ Check if the object has been destroyed.
|
||||||
@Returns:
|
@Returns:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstObject::deep-notify ##### -->
|
||||||
|
<para>
|
||||||
|
The deep notify signal is used to be notified of property changes.
|
||||||
|
it is typically attached to the toplevel bin to receive notifications
|
||||||
|
from all the elements contained in that bin.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstobject: the object which received the signal.
|
||||||
|
@arg1: the object that originated the signal
|
||||||
|
@arg2: the property that changed
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstObject::object-saved ##### -->
|
||||||
|
<para>
|
||||||
|
Is trigered whenever a new object is saved to XML. You can connect to
|
||||||
|
this signal to insert custom XML tags into the core XML.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstobject: the object which received the signal.
|
||||||
|
@arg1: the xmlNodePtr of the parent node
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstObject::parent-set ##### -->
|
||||||
|
<para>
|
||||||
|
Is emitted when the parent of an object is set.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstobject: the object which received the signal.
|
||||||
|
@arg1: the new parent
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstObject::parent-unset ##### -->
|
||||||
|
<para>
|
||||||
|
Is emitted when the parent of an object is unset.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstobject: the object which received the signal.
|
||||||
|
@arg1: the old parent
|
||||||
|
|
||||||
|
<!-- ##### ARG GstObject:name ##### -->
|
||||||
|
<para>
|
||||||
|
The name of the object
|
||||||
|
</para>
|
||||||
|
|
||||||
|
|
|
@ -87,15 +87,6 @@ The padtemplate object.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstPadTemplate::pad-created ##### -->
|
|
||||||
<para>
|
|
||||||
This signal is fired when an element creates a pad from this
|
|
||||||
template.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@gstpadtemplate: the object which received the signal.
|
|
||||||
@arg1: The pad that was created.
|
|
||||||
|
|
||||||
<!-- ##### ENUM GstPadTemplateFlags ##### -->
|
<!-- ##### ENUM GstPadTemplateFlags ##### -->
|
||||||
<para>
|
<para>
|
||||||
Flags for the padtemplate
|
Flags for the padtemplate
|
||||||
|
@ -177,3 +168,12 @@ Check if the properties of the padtemplate are fixed
|
||||||
@Returns:
|
@Returns:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstPadTemplate::pad-created ##### -->
|
||||||
|
<para>
|
||||||
|
This signal is fired when an element creates a pad from this
|
||||||
|
template.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstpadtemplate: the object which received the signal.
|
||||||
|
@arg1: The pad that was created.
|
||||||
|
|
||||||
|
|
|
@ -6023,16 +6023,6 @@ Query the element for the current mime type
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstXML::object-loaded ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@:
|
|
||||||
@:
|
|
||||||
@:
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### USER_FUNCTION GstXMLRegistryAddPathList ##### -->
|
<!-- ##### USER_FUNCTION GstXMLRegistryAddPathList ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,15 @@ The GstThread object
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### FUNCTION gst_thread_new ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@name:
|
||||||
|
@Returns:
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### SIGNAL GstThread::shutdown ##### -->
|
<!-- ##### SIGNAL GstThread::shutdown ##### -->
|
||||||
<para>
|
<para>
|
||||||
|
|
||||||
|
@ -46,12 +55,3 @@ The GstThread object
|
||||||
The thread priority
|
The thread priority
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<!-- ##### FUNCTION gst_thread_new ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
@name:
|
|
||||||
@Returns:
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -105,3 +105,25 @@ All GstElements can be serialized to an XML presentation and subsequently loaded
|
||||||
@Returns:
|
@Returns:
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstXML::object-loaded ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@:
|
||||||
|
@:
|
||||||
|
@:
|
||||||
|
|
||||||
|
@gstxml: the object which received the signal.
|
||||||
|
@arg1:
|
||||||
|
@arg2:
|
||||||
|
|
||||||
|
<!-- ##### SIGNAL GstXML::object-loaded ##### -->
|
||||||
|
<para>
|
||||||
|
|
||||||
|
</para>
|
||||||
|
|
||||||
|
@gstxml: the object which received the signal.
|
||||||
|
@arg1:
|
||||||
|
@arg2:
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ main (gint argc, gchar *argv[])
|
||||||
gst_element_get_pad (identity, "src"),
|
gst_element_get_pad (identity, "src"),
|
||||||
"src");
|
"src");
|
||||||
|
|
||||||
gst_element_link_many (fakesrc, bin, fakesink);
|
gst_element_link_many (fakesrc, bin, fakesink, NULL);
|
||||||
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||||
|
|
||||||
if (!gst_bin_iterate (GST_BIN (pipeline)))
|
if (!gst_bin_iterate (GST_BIN (pipeline)))
|
||||||
|
|
|
@ -44,7 +44,7 @@ main (gint argc, gchar *argv[])
|
||||||
gst_element_get_pad (identity, "src"),
|
gst_element_get_pad (identity, "src"),
|
||||||
"src");
|
"src");
|
||||||
|
|
||||||
gst_element_link_many (fakesrc, bin, fakesink);
|
gst_element_link_many (fakesrc, bin, fakesink, NULL);
|
||||||
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
gst_element_set_state (pipeline, GST_STATE_PLAYING);
|
||||||
|
|
||||||
if (!gst_bin_iterate (GST_BIN (pipeline)))
|
if (!gst_bin_iterate (GST_BIN (pipeline)))
|
||||||
|
|
Loading…
Reference in a new issue