mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
*.h: Revert indenting
Original commit message from CVS: * *.h: Revert indenting
This commit is contained in:
parent
89b52fa125
commit
583a2aa96b
1 changed files with 16 additions and 19 deletions
|
@ -26,9 +26,8 @@
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C"
|
extern "C" {
|
||||||
{
|
#endif /* __cplusplus */
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
||||||
#define GST_TYPE_STEREO \
|
#define GST_TYPE_STEREO \
|
||||||
|
@ -42,29 +41,27 @@ extern "C"
|
||||||
#define GST_IS_STEREO_CLASS(obj) \
|
#define GST_IS_STEREO_CLASS(obj) \
|
||||||
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_STEREO))
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_STEREO))
|
||||||
|
|
||||||
typedef struct _GstStereo GstStereo;
|
typedef struct _GstStereo GstStereo;
|
||||||
typedef struct _GstStereoClass GstStereoClass;
|
typedef struct _GstStereoClass GstStereoClass;
|
||||||
|
|
||||||
struct _GstStereo
|
struct _GstStereo {
|
||||||
{
|
GstElement element;
|
||||||
GstElement element;
|
|
||||||
|
|
||||||
GstPad *sinkpad, *srcpad;
|
GstPad *sinkpad,*srcpad;
|
||||||
|
|
||||||
gint8 active;
|
gint8 active;
|
||||||
gfloat stereo;
|
gfloat stereo;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstStereoClass
|
struct _GstStereoClass {
|
||||||
{
|
GstElementClass parent_class;
|
||||||
GstElementClass parent_class;
|
};
|
||||||
};
|
|
||||||
|
|
||||||
GType gst_stereo_get_type (void);
|
GType gst_stereo_get_type(void);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
|
||||||
#endif /* __GST_STEREO_H__ */
|
#endif /* __GST_STEREO_H__ */
|
||||||
|
|
Loading…
Reference in a new issue