summaryrefslogtreecommitdiffstats
path: root/ext/flac
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-12-06 19:44:58 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-12-06 19:44:58 +0000
commit3ecf433432289b9c1990165f65bdd51aaad2eaa7 (patch)
treedc7bd5c5b4eb37d49b1a37ca1f33c9d9ed2a8374 /ext/flac
parentf2085bd7ef2a4e685b8a58ae0848c43aab0d8747 (diff)
expand tabs
Original commit message from CVS: expand tabs
Diffstat (limited to 'ext/flac')
-rw-r--r--ext/flac/flac_compat.h12
-rw-r--r--ext/flac/gstflacdec.h26
-rw-r--r--ext/flac/gstflacenc.h28
3 files changed, 33 insertions, 33 deletions
diff --git a/ext/flac/flac_compat.h b/ext/flac/flac_compat.h
index 87b5b864..23605289 100644
--- a/ext/flac/flac_compat.h
+++ b/ext/flac/flac_compat.h
@@ -32,21 +32,21 @@
#if FLAC_VERSION < 0x010004
#define FLAC__STREAM_ENCODER_OK FLAC__STREAM_ENCODER_WRITE_OK
#define FLAC__seekable_stream_decoder_process_single(a) \
- FLAC__seekable_stream_decoder_process_one_frame(a)
+ FLAC__seekable_stream_decoder_process_one_frame(a)
#endif /* FLAC_VERSION < 0x010004 */
#if FLAC_VERSION < 0x010003
#define FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC \
- FLAC__STREAM_DECODER_ERROR_LOST_SYNC
+ FLAC__STREAM_DECODER_ERROR_LOST_SYNC
#define FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER \
- FLAC__STREAM_DECODER_ERROR_BAD_HEADER
+ FLAC__STREAM_DECODER_ERROR_BAD_HEADER
#define FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH \
- FLAC__STREAM_DECODER_ERROR_FRAME_CRC_MISMATCH
+ FLAC__STREAM_DECODER_ERROR_FRAME_CRC_MISMATCH
#define FLAC__STREAM_DECODER_WRITE_STATUS_ABORT \
- FLAC__STREAM_DECODER_WRITE_ABORT
+ FLAC__STREAM_DECODER_WRITE_ABORT
#define FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE \
- FLAC__STREAM_DECODER_WRITE_CONTINUE
+ FLAC__STREAM_DECODER_WRITE_CONTINUE
#define FLAC__StreamMetadata FLAC__StreamMetaData
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 {
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 {