summaryrefslogtreecommitdiffstats
path: root/ext/speex
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/speex
parentf2085bd7ef2a4e685b8a58ae0848c43aab0d8747 (diff)
expand tabs
Original commit message from CVS: expand tabs
Diffstat (limited to 'ext/speex')
-rw-r--r--ext/speex/gstspeexdec.h30
-rw-r--r--ext/speex/gstspeexenc.c16
-rw-r--r--ext/speex/gstspeexenc.h70
3 files changed, 58 insertions, 58 deletions
diff --git a/ext/speex/gstspeexdec.h b/ext/speex/gstspeexdec.h
index f60a679e..cae005b0 100644
--- a/ext/speex/gstspeexdec.h
+++ b/ext/speex/gstspeexdec.h
@@ -48,30 +48,30 @@ typedef struct _GstSpeexDecClass GstSpeexDecClass;
#define DEC_MAX_FRAME_SIZE 2000
struct _GstSpeexDec {
- GstElement element;
+ GstElement element;
/* pads */
- GstPad *sinkpad,
- *srcpad;
+ GstPad *sinkpad,
+ *srcpad;
- void *state;
- SpeexStereoState stereo;
+ void *state;
+ SpeexStereoState stereo;
#ifdef SPEEX_1_0
- SpeexMode *mode;
+ SpeexMode *mode;
#else
- const SpeexMode *mode;
+ const SpeexMode *mode;
#endif
- SpeexHeader *header;
- SpeexCallback callback;
- SpeexBits bits;
+ SpeexHeader *header;
+ SpeexCallback callback;
+ SpeexBits bits;
- gfloat output[DEC_MAX_FRAME_SIZE];
+ gfloat output[DEC_MAX_FRAME_SIZE];
- gboolean enh;
+ gboolean enh;
- gint frame_size;
- guint64 samples_out;
- guint64 packetno;
+ gint frame_size;
+ guint64 samples_out;
+ guint64 packetno;
};
struct _GstSpeexDecClass {
diff --git a/ext/speex/gstspeexenc.c b/ext/speex/gstspeexenc.c
index 777b75ba..7d6f3695 100644
--- a/ext/speex/gstspeexenc.c
+++ b/ext/speex/gstspeexenc.c
@@ -52,14 +52,14 @@ enum
LAST_SIGNAL
};
-#define DEFAULT_QUALITY 8.0
-#define DEFAULT_BITRATE 0
-#define DEFAULT_VBR FALSE
-#define DEFAULT_ABR 0
-#define DEFAULT_VAD FALSE
-#define DEFAULT_DTX FALSE
-#define DEFAULT_COMPLEXITY 3
-#define DEFAULT_NFRAMES 1
+#define DEFAULT_QUALITY 8.0
+#define DEFAULT_BITRATE 0
+#define DEFAULT_VBR FALSE
+#define DEFAULT_ABR 0
+#define DEFAULT_VAD FALSE
+#define DEFAULT_DTX FALSE
+#define DEFAULT_COMPLEXITY 3
+#define DEFAULT_NFRAMES 1
enum
{
diff --git a/ext/speex/gstspeexenc.h b/ext/speex/gstspeexenc.h
index b16e7f37..d6dbbabc 100644
--- a/ext/speex/gstspeexenc.h
+++ b/ext/speex/gstspeexenc.h
@@ -59,58 +59,58 @@ typedef struct _GstSpeexEnc GstSpeexEnc;
typedef struct _GstSpeexEncClass GstSpeexEncClass;
struct _GstSpeexEnc {
- GstElement element;
+ GstElement element;
/* pads */
- GstPad *sinkpad,
- *srcpad;
+ GstPad *sinkpad,
+ *srcpad;
- gint packet_count;
- gint n_packets;
+ gint packet_count;
+ gint n_packets;
- SpeexBits bits;
- SpeexHeader header;
+ SpeexBits bits;
+ SpeexHeader header;
#if SPEEX_1_0
- SpeexMode *speex_mode;
+ SpeexMode *speex_mode;
#else
- const SpeexMode *speex_mode;
+ const SpeexMode *speex_mode;
#endif
- void *state;
- GstSpeexMode mode;
- GstAdapter *adapter;
+ void *state;
+ GstSpeexMode mode;
+ GstAdapter *adapter;
- gfloat quality;
- gint bitrate;
- gboolean vbr;
- gint abr;
- gboolean vad;
- gboolean dtx;
- gint complexity;
- gint nframes;
+ gfloat quality;
+ gint bitrate;
+ gboolean vbr;
+ gint abr;
+ gboolean vad;
+ gboolean dtx;
+ gint complexity;
+ gint nframes;
- gint lookahead;
+ gint lookahead;
- gint channels;
- gint rate;
+ gint channels;
+ gint rate;
- gboolean setup;
- gboolean header_sent;
- gboolean eos;
+ gboolean setup;
+ gboolean header_sent;
+ gboolean eos;
- guint64 samples_in;
- guint64 bytes_out;
+ guint64 samples_in;
+ guint64 bytes_out;
- GstTagList *tags;
+ GstTagList *tags;
- gchar *last_message;
+ gchar *last_message;
- gint frame_size;
- guint64 frameno;
+ gint frame_size;
+ guint64 frameno;
- guint8 *comments;
- gint comment_len;
+ guint8 *comments;
+ gint comment_len;
- gfloat input[MAX_FRAME_SIZE];
+ gfloat input[MAX_FRAME_SIZE];
};
struct _GstSpeexEncClass {