introspection: add annotation for gst_element_get_state

state and pending are "out" arguments.

Fixes #605189.
This commit is contained in:
Johan Bilien 2009-12-22 11:09:10 +08:00 committed by Tim-Philipp Müller
parent 1f0b6f35d5
commit 1d7afbd0f2

View file

@ -2043,9 +2043,9 @@ interrupted:
/**
* gst_element_get_state:
* @element: a #GstElement to get the state of.
* @state: a pointer to #GstState to hold the state. Can be %NULL.
* @pending: a pointer to #GstState to hold the pending state.
* Can be %NULL.
* @state: (out): a pointer to #GstState to hold the state. Can be %NULL.
* @pending: (out): a pointer to #GstState to hold the pending state.
* Can be %NULL.
* @timeout: a #GstClockTime to specify the timeout for an async
* state change or %GST_CLOCK_TIME_NONE for infinite timeout.
*