mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
faac: documentation fix
This commit is contained in:
parent
e63fc68628
commit
8f70f5c479
2 changed files with 8 additions and 5 deletions
|
@ -20,7 +20,7 @@
|
|||
|
||||
/**
|
||||
* SECTION:element-faac
|
||||
* @seealso: faad
|
||||
* @see_also: faad
|
||||
*
|
||||
* faac encodes raw audio to AAC (MPEG-4 part 10) streams.
|
||||
*
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue