diff options
Diffstat (limited to 'ext/flac/gstflacenc.h')
-rw-r--r-- | ext/flac/gstflacenc.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/ext/flac/gstflacenc.h b/ext/flac/gstflacenc.h index 73c40285..dd3ad40c 100644 --- a/ext/flac/gstflacenc.h +++ b/ext/flac/gstflacenc.h @@ -40,27 +40,27 @@ typedef struct _GstFlacEnc GstFlacEnc; typedef struct _GstFlacEncClass GstFlacEncClass; struct _GstFlacEnc { - GstElement element; + GstElement element; GstPad *sinkpad,*srcpad; - gboolean first; - GstBuffer *first_buf; - guint64 offset; - guint64 samples_written; - gboolean eos; - gint channels; - gint depth; - gint sample_rate; - gboolean negotiated; - gint quality; - gboolean stopped; - FLAC__int32 *data; + gboolean first; + GstBuffer *first_buf; + guint64 offset; + guint64 samples_written; + gboolean eos; + gint channels; + gint depth; + gint sample_rate; + gboolean negotiated; + gint quality; + gboolean stopped; + FLAC__int32 *data; FLAC__SeekableStreamEncoder *encoder; FLAC__StreamMetadata **meta; - GstTagList * tags; + GstTagList * tags; }; struct _GstFlacEncClass { |