summaryrefslogtreecommitdiffstats
path: root/ext/faac/gstfaac.h
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-03-14 22:34:33 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-03-14 22:34:33 +0000
commit7a778ee4b7ec09a1f5b2185c9cceee3910dfbdf2 (patch)
treef863b467dea9559a6ec9c48affbfae11f8104164 /ext/faac/gstfaac.h
parenta19db4bbdc4a15ea0d8f4d28e9a1302c9c3d1657 (diff)
downloadgst-plugins-bad-7a778ee4b7ec09a1f5b2185c9cceee3910dfbdf2.tar.gz
gst-plugins-bad-7a778ee4b7ec09a1f5b2185c9cceee3910dfbdf2.tar.bz2
gst-plugins-bad-7a778ee4b7ec09a1f5b2185c9cceee3910dfbdf2.zip
gst-indent
Original commit message from CVS: gst-indent
Diffstat (limited to 'ext/faac/gstfaac.h')
-rw-r--r--ext/faac/gstfaac.h23
1 files changed, 7 insertions, 16 deletions
diff --git a/ext/faac/gstfaac.h b/ext/faac/gstfaac.h
index 55daea67..b888ed34 100644
--- a/ext/faac/gstfaac.h
+++ b/ext/faac/gstfaac.h
@@ -24,7 +24,6 @@
#include <faac.h>
G_BEGIN_DECLS
-
#define GST_TYPE_FAAC \
(gst_faac_get_type ())
#define GST_FAAC(obj) \
@@ -35,25 +34,17 @@ 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;
@@ -63,12 +54,12 @@ typedef struct _GstFaac {
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__ */