diff options
author | Johan Bilien <jobi@litl.com> | 2009-12-22 11:09:10 +0800 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2010-02-18 01:28:57 +0000 |
commit | 1d7afbd0f2685bde898bdac91840fd6a8f3326ad (patch) | |
tree | e68406f4918a682ef1d2097dd581b4a97bedc35f | |
parent | 1f0b6f35d5cd5a9fe7272c82e680eb2b84655015 (diff) |
introspection: add annotation for gst_element_get_state
state and pending are "out" arguments.
Fixes #605189.
-rw-r--r-- | gst/gstelement.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/gstelement.c b/gst/gstelement.c index 4cecefffa2..92d755de25 100644 --- a/gst/gstelement.c +++ b/gst/gstelement.c @@ -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. * |