summaryrefslogtreecommitdiff
path: root/ext/ladspa/gstladspa.h
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2004-03-15 16:32:54 +0000
committerJohan Dahlin <johan@gnome.org>2004-03-15 16:32:54 +0000
commit39fd8a2dbd436cbabe5e336d1145b62c2a885ed5 (patch)
tree61df7da4a9d2b8bdb853af50a27219a8921bf5e4 /ext/ladspa/gstladspa.h
parent1633bd8693c54cbc5f6648703a7ecf01548ec55f (diff)
downloadgstreamer-plugins-bad-39fd8a2dbd436cbabe5e336d1145b62c2a885ed5.tar.gz
*.h: Revert indenting
Original commit message from CVS: * *.h: Revert indenting
Diffstat (limited to 'ext/ladspa/gstladspa.h')
-rw-r--r--ext/ladspa/gstladspa.h78
1 files changed, 40 insertions, 38 deletions
diff --git a/ext/ladspa/gstladspa.h b/ext/ladspa/gstladspa.h
index b40cd145d..f3556f74d 100644
--- a/ext/ladspa/gstladspa.h
+++ b/ext/ladspa/gstladspa.h
@@ -31,60 +31,62 @@
#ifdef __cplusplus
-extern "C"
-{
-#endif /* __cplusplus */
+extern "C" {
+#endif /* __cplusplus */
- typedef struct _ladspa_control_info
- {
- gchar *name;
- gchar *param_name;
- gfloat lowerbound, upperbound;
- gfloat def;
- gboolean lower, upper, samplerate;
- gboolean toggled, logarithmic, integer, writable;
- } ladspa_control_info;
+typedef struct _ladspa_control_info {
+ gchar *name;
+ gchar *param_name;
+ gfloat lowerbound, upperbound;
+ gfloat def;
+ gboolean lower,upper,samplerate;
+ gboolean toggled, logarithmic, integer, writable;
+} ladspa_control_info;
- typedef struct _GstLADSPA GstLADSPA;
- typedef struct _GstLADSPAClass GstLADSPAClass;
+typedef struct _GstLADSPA GstLADSPA;
+typedef struct _GstLADSPAClass GstLADSPAClass;
- struct _GstLADSPA
- {
- GstElement element;
+struct _GstLADSPA {
+ GstElement element;
- LADSPA_Descriptor *descriptor;
- LADSPA_Handle *handle;
+ LADSPA_Descriptor *descriptor;
+ LADSPA_Handle *handle;
- GstDParamManager *dpman;
+ GstDParamManager *dpman;
- gfloat *controls;
+ gfloat *controls;
+
+ GstPad **sinkpads,
+ **srcpads;
- GstPad **sinkpads, **srcpads;
+ gboolean activated;
- gboolean activated;
+ gint samplerate, buffer_frames;
+ gint64 timestamp;
+ gboolean inplace_broken;
+};
- gint samplerate, buffer_frames;
- gint64 timestamp;
- gboolean inplace_broken;
- };
+struct _GstLADSPAClass {
+ GstElementClass parent_class;
- struct _GstLADSPAClass
- {
- GstElementClass parent_class;
+ LADSPA_Descriptor *descriptor;
- LADSPA_Descriptor *descriptor;
+ gint numports,
+ numsinkpads,
+ numsrcpads,
+ numcontrols;
- gint numports, numsinkpads, numsrcpads, numcontrols;
+ gint *sinkpad_portnums,
+ *srcpad_portnums,
+ *control_portnums;
- gint *sinkpad_portnums, *srcpad_portnums, *control_portnums;
-
- ladspa_control_info *control_info;
- };
+ ladspa_control_info *control_info;
+};
#ifdef __cplusplus
}
-#endif /* __cplusplus */
+#endif /* __cplusplus */
-#endif /* __GST_LADSPA_H__ */
+#endif /* __GST_LADSPA_H__ */