diff options
Diffstat (limited to 'ext/faad/gstfaad.h')
-rw-r--r-- | ext/faad/gstfaad.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/faad/gstfaad.h b/ext/faad/gstfaad.h index 419ce20d..160b8ba4 100644 --- a/ext/faad/gstfaad.h +++ b/ext/faad/gstfaad.h @@ -33,7 +33,7 @@ G_BEGIN_DECLS (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_FAAD, GstFaadClass)) #define GST_IS_FAAD(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_FAAD)) -#define GST_IS_FAAD_CLASS(obj) \ +#define GST_IS_FAAD_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_FAAD)) typedef struct _GstFaad { @@ -46,6 +46,8 @@ typedef struct _GstFaad { guint channels; /* number of channels of the last frame */ guint bps; /* bytes per sample */ + guint8 fake_codec_data[2]; + GstBuffer *tempbuf; /* used to keep input leftovers */ /* FAAD object */ |