whitespace removal and width coercion

Original commit message from CVS:
whitespace removal and width coercion
This commit is contained in:
Thomas Vander Stichele 2006-05-03 16:42:08 +00:00
parent 0442db045b
commit 493b84107d
2 changed files with 61 additions and 62 deletions

View file

@ -208,8 +208,8 @@ enum
#define DEFAULT_CAN_ACTIVATE_PULL FALSE /* fixme: enable me */ #define DEFAULT_CAN_ACTIVATE_PULL FALSE /* fixme: enable me */
#define DEFAULT_CAN_ACTIVATE_PUSH TRUE #define DEFAULT_CAN_ACTIVATE_PUSH TRUE
#define DEFAULT_PREROLL_QUEUE_LEN 0 #define DEFAULT_PREROLL_QUEUE_LEN 0
#define DEFAULT_SYNC TRUE #define DEFAULT_SYNC TRUE
#define DEFAULT_MAX_LATENESS -1 #define DEFAULT_MAX_LATENESS -1
#define DEFAULT_QOS FALSE #define DEFAULT_QOS FALSE

View file

@ -104,7 +104,6 @@ struct _GstBaseSink {
/** /**
* GstBaseSinkClass: * GstBaseSinkClass:
* @parent_class: Element parent class
* @get_caps: Called to get sink pad caps from the subclass * @get_caps: Called to get sink pad caps from the subclass
* @set_caps: Notify subclass of changed caps * @set_caps: Notify subclass of changed caps
* @buffer_alloc: Subclasses can override to perform custom buffer allocations * @buffer_alloc: Subclasses can override to perform custom buffer allocations
@ -120,12 +119,12 @@ struct _GstBaseSink {
* correct moment if the #GstBaseSink has been set to sync to * correct moment if the #GstBaseSink has been set to sync to
* the clock. * the clock.
* @async_play: Subclasses should override this when they need to perform * @async_play: Subclasses should override this when they need to perform
* special processing when changing to the PLAYING state asynchronously. * special processing when changing to the PLAYING state
* Called with the OBJECT_LOCK held. * asynchronously. Called with the OBJECT_LOCK held.
* *
* Subclasses can override any of the available virtual methods or not, as * Subclasses can override any of the available virtual methods or not, as
* needed. At the minimum, the render method should be overridden to * needed. At the minimum, the render method should be overridden to
* output/present buffers * output/present buffers.
*/ */
struct _GstBaseSinkClass { struct _GstBaseSinkClass {
GstElementClass parent_class; GstElementClass parent_class;