diff options
Diffstat (limited to 'ext/speex/gstspeexenc.h')
-rw-r--r-- | ext/speex/gstspeexenc.h | 70 |
1 files changed, 35 insertions, 35 deletions
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 { |