whitespace/width fixes

Original commit message from CVS:
whitespace/width fixes
This commit is contained in:
Thomas Vander Stichele 2006-06-06 09:47:40 +00:00
parent 5178830021
commit e8c5250570

View file

@ -337,20 +337,21 @@ G_STMT_START { \
* GstElement: * GstElement:
* @state_lock: Used to serialize execution of gst_element_set_state() * @state_lock: Used to serialize execution of gst_element_set_state()
* @state_cond: Used to signal completion of a state change * @state_cond: Used to signal completion of a state change
* @state_cookie: Used to detect concurrent execution of gst_element_set_state() and * @state_cookie: Used to detect concurrent execution of
* gst_element_get_state() * gst_element_set_state() and gst_element_get_state()
* @current_state: the current state of an element * @current_state: the current state of an element
* @next_state: the next state of an element, can be #GST_STATE_VOID_PENDING if the * @next_state: the next state of an element, can be #GST_STATE_VOID_PENDING if
* element is in the correct state. * the element is in the correct state.
* @pending_state: the final state the element should go to, can be #GST_STATE_VOID_PENDING * @pending_state: the final state the element should go to, can be
* if the element is in the correct state * #GST_STATE_VOID_PENDING if the element is in the correct state
* @last_return: the last return value of an element state change * @last_return: the last return value of an element state change
* @bus: the bus of the element. This bus is provided to the element by the parent element * @bus: the bus of the element. This bus is provided to the element by the
* or the application. A #GstPipeline has a bus of its own. * parent element or the application. A #GstPipeline has a bus of its own.
* @clock: the clock of the element. This clock is usually provided by to the element by * @clock: the clock of the element. This clock is usually provided by to the
* the toplevel #GstPipeline. * element by the toplevel #GstPipeline.
* @base_time: the time of the clock right before the element is set to PLAYING. Subtracting * @base_time: the time of the clock right before the element is set to
* @base_time from the current clock time in the PLAYING state will yield the stream time. * PLAYING. Subtracting @base_time from the current clock time in the PLAYING
* state will yield the stream time.
* @numpads: number of pads of the element, includes both source and sink pads. * @numpads: number of pads of the element, includes both source and sink pads.
* @pads: list of pads * @pads: list of pads
* @numsrcpads: number of source pads of the element. * @numsrcpads: number of source pads of the element.