diff --git a/ChangeLog b/ChangeLog index bb76ffac9f..9e2f61c8ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2005-09-12 Thomas Vander Stichele + + * docs/gst/tmpl/gstelement.sgml: + * docs/manual/appendix-quotes.xml: + add a quote + * gst/gstelement.c: (gst_element_set_state): + add some debug + 2005-09-12 Jan Schmidt * gst/base/gstbasetransform.c: (gst_base_transform_class_init), diff --git a/docs/gst/tmpl/gstelement.sgml b/docs/gst/tmpl/gstelement.sgml index 9709abd6a4..1887252ca9 100644 --- a/docs/gst/tmpl/gstelement.sgml +++ b/docs/gst/tmpl/gstelement.sgml @@ -157,6 +157,18 @@ This enum defines the standard flags that an element may have. @GST_ELEMENT_UNPARENTING: @GST_ELEMENT_FLAG_LAST: + + + + + +@GST_STATE_CHANGE_NULL_TO_READY: +@GST_STATE_CHANGE_READY_TO_PAUSED: +@GST_STATE_CHANGE_PAUSED_TO_PLAYING: +@GST_STATE_CHANGE_PLAYING_TO_PAUSED: +@GST_STATE_CHANGE_PAUSED_TO_READY: +@GST_STATE_CHANGE_READY_TO_NULL: + This macro returns the current state of the element. diff --git a/docs/manual/appendix-quotes.xml b/docs/manual/appendix-quotes.xml index ea3497d782..636bc948d2 100644 --- a/docs/manual/appendix-quotes.xml +++ b/docs/manual/appendix-quotes.xml @@ -11,6 +11,26 @@ + + 12 Sep 2005 + +<wingo> +we just need to get rid of that mmap stuff + +<wingo> +i think gnomevfssrc is faster for files even + +<BBB> +wingo, no + +<BBB> +and no + +<wingo> +good points ronald + + + 23 Jun 2005 @@ -22,15 +42,15 @@ * everybody back back <everybody> now break it down --- You are now known as thomasvs -<bilboed> back +* bilboed back --- bilboed is now known as john-sebastian -<john-sebastian> bach +* john-sebastian bach --- john-sebastian is now known as bilboed --- You are now known as scratch_my * scratch_my back --- bilboed is now known as Illbe --- You are now known as thomasvs -<Illbe> back +* Illbe back --- Illbe is now known as bilboed diff --git a/gst/gstelement.c b/gst/gstelement.c index 6efb0a1706..5390cb9b5b 100644 --- a/gst/gstelement.c +++ b/gst/gstelement.c @@ -1772,6 +1772,8 @@ gst_element_set_state (GstElement * element, GstState state) g_return_val_if_fail (GST_IS_ELEMENT (element), GST_STATE_CHANGE_FAILURE); + GST_DEBUG_OBJECT (element, "set_state to %s", + gst_element_state_get_name (state)); /* get current element state, need to call the method so that * we call the virtual method and subclasses can implement their * own algorithms */