diff options
Diffstat (limited to 'ext/flac/gstflacdec.h')
-rw-r--r-- | ext/flac/gstflacdec.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/flac/gstflacdec.h b/ext/flac/gstflacdec.h index 53919414..2280b3f5 100644 --- a/ext/flac/gstflacdec.h +++ b/ext/flac/gstflacdec.h @@ -41,26 +41,26 @@ typedef struct _FlacDec FlacDec; typedef struct _FlacDecClass FlacDecClass; struct _FlacDec { - GstElement element; + GstElement element; - GstPad *sinkpad,*srcpad; - guint64 offset; + GstPad *sinkpad,*srcpad; + guint64 offset; FLAC__SeekableStreamDecoder *decoder; - gint channels; - gint depth; + gint channels; + gint depth; gint width; - gint frequency; + gint frequency; - gboolean need_discont; - gboolean seek_pending; - gint64 seek_value; + gboolean need_discont; + gboolean seek_pending; + gint64 seek_value; - gboolean init; - guint64 total_samples; - guint64 stream_samples; + gboolean init; + guint64 total_samples; + guint64 stream_samples; - gboolean eos; + gboolean eos; }; struct _FlacDecClass { |