mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 23:18:52 +00:00
whitespace fixes
This commit is contained in:
parent
265e125993
commit
42fad5a166
2 changed files with 8 additions and 8 deletions
|
@ -42,19 +42,19 @@ G_BEGIN_DECLS
|
||||||
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_COLOR_BALANCE))
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_COLOR_BALANCE))
|
||||||
#define GST_COLOR_BALANCE_GET_CLASS(inst) \
|
#define GST_COLOR_BALANCE_GET_CLASS(inst) \
|
||||||
(G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_COLOR_BALANCE, GstColorBalanceClass))
|
(G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_COLOR_BALANCE, GstColorBalanceClass))
|
||||||
|
|
||||||
#define GST_COLOR_BALANCE_TYPE(klass) (klass->balance_type)
|
#define GST_COLOR_BALANCE_TYPE(klass) (klass->balance_type)
|
||||||
|
|
||||||
typedef struct _GstColorBalance GstColorBalance;
|
typedef struct _GstColorBalance GstColorBalance;
|
||||||
typedef struct _GstColorBalanceClass GstColorBalanceClass;
|
typedef struct _GstColorBalanceClass GstColorBalanceClass;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstColorBalanceType:
|
* GstColorBalanceType:
|
||||||
* @GST_COLOR_BALANCE_HARDWARE: Color balance is implemented with dedicated
|
* @GST_COLOR_BALANCE_HARDWARE: Color balance is implemented with dedicated
|
||||||
* hardware.
|
* hardware.
|
||||||
* @GST_COLOR_BALANCE_SOFTWARE: Color balance is implemented via software
|
* @GST_COLOR_BALANCE_SOFTWARE: Color balance is implemented via software
|
||||||
* processing.
|
* processing.
|
||||||
*
|
*
|
||||||
* An enumeration indicating whether an element implements color balancing
|
* An enumeration indicating whether an element implements color balancing
|
||||||
* operations in software or in dedicated hardware. In general, dedicated
|
* operations in software or in dedicated hardware. In general, dedicated
|
||||||
* hardware implementations (such as those provided by xvimagesink) are
|
* hardware implementations (such as those provided by xvimagesink) are
|
||||||
|
@ -70,7 +70,7 @@ struct _GstColorBalanceClass {
|
||||||
GTypeInterface klass;
|
GTypeInterface klass;
|
||||||
|
|
||||||
GstColorBalanceType balance_type;
|
GstColorBalanceType balance_type;
|
||||||
|
|
||||||
/* virtual functions */
|
/* virtual functions */
|
||||||
const GList * (* list_channels) (GstColorBalance *balance);
|
const GList * (* list_channels) (GstColorBalance *balance);
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ typedef enum
|
||||||
* @GST_MIXER_MESSAGE_MIXER_CHANGED: A mixer-changed GstMixer message, posted
|
* @GST_MIXER_MESSAGE_MIXER_CHANGED: A mixer-changed GstMixer message, posted
|
||||||
* when the list of available mixer tracks has changed. The application
|
* when the list of available mixer tracks has changed. The application
|
||||||
* should re-build its interface in this case (Since: 0.10.18)
|
* should re-build its interface in this case (Since: 0.10.18)
|
||||||
*
|
*
|
||||||
* An enumeration for the type of a GstMixer message received on the bus
|
* An enumeration for the type of a GstMixer message received on the bus
|
||||||
*
|
*
|
||||||
* Since: 0.10.14
|
* Since: 0.10.14
|
||||||
|
@ -93,7 +93,7 @@ typedef enum
|
||||||
* marked without either input or output. Controls marked as input or
|
* marked without either input or output. Controls marked as input or
|
||||||
* output should be grouped with input & output sliders, even if they
|
* output should be grouped with input & output sliders, even if they
|
||||||
* are options or bare switches. Since: 0.10.23
|
* are options or bare switches. Since: 0.10.23
|
||||||
*
|
*
|
||||||
* Flags indicating which optional features are supported by a mixer
|
* Flags indicating which optional features are supported by a mixer
|
||||||
* implementation.
|
* implementation.
|
||||||
*
|
*
|
||||||
|
@ -111,7 +111,7 @@ struct _GstMixerClass {
|
||||||
GTypeInterface klass;
|
GTypeInterface klass;
|
||||||
|
|
||||||
GstMixerType mixer_type;
|
GstMixerType mixer_type;
|
||||||
|
|
||||||
/* virtual functions */
|
/* virtual functions */
|
||||||
const GList * (* list_tracks) (GstMixer *mixer);
|
const GList * (* list_tracks) (GstMixer *mixer);
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ struct _GstMixerClass {
|
||||||
gpointer padding2;
|
gpointer padding2;
|
||||||
#endif /* not GST_DISABLE_DEPRECATED */
|
#endif /* not GST_DISABLE_DEPRECATED */
|
||||||
|
|
||||||
GstMixerFlags (* get_mixer_flags) (GstMixer *mixer);
|
GstMixerFlags (* get_mixer_flags) (GstMixer *mixer);
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gpointer _gst_reserved[GST_PADDING-1];
|
gpointer _gst_reserved[GST_PADDING-1];
|
||||||
|
|
Loading…
Reference in a new issue