diff options
author | Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk> | 2010-01-05 16:10:13 +0100 |
---|---|---|
committer | Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk> | 2010-01-05 17:50:41 +0100 |
commit | 8f70f5c47904170aa8e0fd9dbffda62584d62705 (patch) | |
tree | 7fe371e03f63eecb3ce134e39842a4fd44f4e166 /ext/faac | |
parent | e63fc686286eefeb3c4e15f5c0d4df19448fb39f (diff) | |
download | gstreamer-plugins-bad-8f70f5c47904170aa8e0fd9dbffda62584d62705.tar.gz |
faac: documentation fix
Diffstat (limited to 'ext/faac')
-rw-r--r-- | ext/faac/gstfaac.c | 2 | ||||
-rw-r--r-- | ext/faac/gstfaac.h | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/ext/faac/gstfaac.c b/ext/faac/gstfaac.c index 9e3da5e64..2a6838d50 100644 --- a/ext/faac/gstfaac.c +++ b/ext/faac/gstfaac.c @@ -20,7 +20,7 @@ /** * SECTION:element-faac - * @seealso: faad + * @see_also: faad * * faac encodes raw audio to AAC (MPEG-4 part 10) streams. * diff --git a/ext/faac/gstfaac.h b/ext/faac/gstfaac.h index 61cd7e3ec..781e24041 100644 --- a/ext/faac/gstfaac.h +++ b/ext/faac/gstfaac.h @@ -38,7 +38,10 @@ G_BEGIN_DECLS #define GST_IS_FAAC_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_FAAC)) -typedef struct _GstFaac { +typedef struct _GstFaac GstFaac; +typedef struct _GstFaacClass GstFaacClass; + +struct _GstFaac { GstElement element; /* pads */ @@ -65,11 +68,11 @@ typedef struct _GstFaac { GstAdapter *adapter; /* offset of data to be encoded next */ guint offset; -} GstFaac; +}; -typedef struct _GstFaacClass { +struct _GstFaacClass { GstElementClass parent_class; -} GstFaacClass; +}; GType gst_faac_get_type (void); |