summaryrefslogtreecommitdiffstats
path: root/ext/faac/gstfaac.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/faac/gstfaac.h
parent1633bd8693c54cbc5f6648703a7ecf01548ec55f (diff)
downloadgst-plugins-bad-39fd8a2dbd436cbabe5e336d1145b62c2a885ed5.tar.gz
gst-plugins-bad-39fd8a2dbd436cbabe5e336d1145b62c2a885ed5.tar.bz2
gst-plugins-bad-39fd8a2dbd436cbabe5e336d1145b62c2a885ed5.zip
*.h: Revert indenting
Original commit message from CVS: * *.h: Revert indenting
Diffstat (limited to 'ext/faac/gstfaac.h')
-rw-r--r--ext/faac/gstfaac.h23
1 files changed, 16 insertions, 7 deletions
diff --git a/ext/faac/gstfaac.h b/ext/faac/gstfaac.h
index b888ed34..55daea67 100644
--- a/ext/faac/gstfaac.h
+++ b/ext/faac/gstfaac.h
@@ -24,6 +24,7 @@
#include <faac.h>
G_BEGIN_DECLS
+
#define GST_TYPE_FAAC \
(gst_faac_get_type ())
#define GST_FAAC(obj) \
@@ -34,17 +35,25 @@ G_BEGIN_DECLS
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_FAAC))
#define GST_IS_FAAC_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_FAAC))
- typedef struct _GstFaac
-{
+
+typedef struct _GstFaac {
GstElement element;
/* pads */
GstPad *srcpad, *sinkpad;
/* stream properties */
- gint samplerate, channels, format, bps, bitrate, profile, shortctl;
- gboolean tns, midside;
- gulong bytes, samples;
+ gint samplerate,
+ channels,
+ format,
+ bps,
+ bitrate,
+ profile,
+ shortctl;
+ gboolean tns,
+ midside;
+ gulong bytes,
+ samples;
/* FAAC object */
faacEncHandle handle;
@@ -54,12 +63,12 @@ G_BEGIN_DECLS
guint64 cache_time, cache_duration;
} GstFaac;
-typedef struct _GstFaacClass
-{
+typedef struct _GstFaacClass {
GstElementClass parent_class;
} GstFaacClass;
GType gst_faac_get_type (void);
G_END_DECLS
+
#endif /* __GST_FAAC_H__ */