From bdb814f6ef56edca67e1241eb16df22fdd8ab17c Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 6 Dec 2005 19:55:58 +0000 Subject: expand tabs Original commit message from CVS: expand tabs --- ext/ivorbis/vorbisenc.h | 14 +++++++------- ext/ivorbis/vorbisfile.c | 10 +++++----- 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'ext/ivorbis') diff --git a/ext/ivorbis/vorbisenc.h b/ext/ivorbis/vorbisenc.h index 60fdf670..fe44be34 100644 --- a/ext/ivorbis/vorbisenc.h +++ b/ext/ivorbis/vorbisenc.h @@ -45,18 +45,18 @@ typedef struct _VorbisEnc VorbisEnc; typedef struct _VorbisEncClass VorbisEncClass; struct _VorbisEnc { - GstElement element; + GstElement element; GstPad *sinkpad, *srcpad; ogg_stream_state os; /* take physical pages, weld into a logical - stream of packets */ + stream of packets */ ogg_page og; /* one Ogg bitstream page. Vorbis packets are inside */ ogg_packet op; /* one raw packet of data for decode */ vorbis_info vi; /* struct that stores all the static vorbis bitstream - settings */ + settings */ vorbis_comment vc; /* struct that stores all the user comments */ vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ @@ -69,20 +69,20 @@ struct _VorbisEnc { gint min_bitrate; gint max_bitrate; gfloat quality; - gboolean quality_set; + gboolean quality_set; gint serial; gint channels; gint frequency; - guint64 samples_in; - guint64 bytes_out; + guint64 samples_in; + guint64 bytes_out; GstCaps *metadata; gboolean setup; gboolean flush_header; - gchar *last_message; + gchar *last_message; }; struct _VorbisEncClass { diff --git a/ext/ivorbis/vorbisfile.c b/ext/ivorbis/vorbisfile.c index 22668a8a..353a2b43 100644 --- a/ext/ivorbis/vorbisfile.c +++ b/ext/ivorbis/vorbisfile.c @@ -31,15 +31,15 @@ GST_DEBUG_CATEGORY_STATIC (ivorbisfile_debug); #define GST_CAT_DEFAULT ivorbisfile_debug -#define GST_TYPE_IVORBISFILE \ +#define GST_TYPE_IVORBISFILE \ (ivorbisfile_get_type()) -#define GST_IVORBISFILE(obj) \ +#define GST_IVORBISFILE(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_IVORBISFILE,Ivorbisfile)) -#define GST_IVORBISFILE_CLASS(klass) \ +#define GST_IVORBISFILE_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_IVORBISFILE,IvorbisfileClass)) -#define GST_IS_IVORBISFILE(obj) \ +#define GST_IS_IVORBISFILE(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_IVORBISFILE)) -#define GST_IS_IVORBISFILE_CLASS(obj) \ +#define GST_IS_IVORBISFILE_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_IVORBISFILE)) typedef struct _Ivorbisfile Ivorbisfile; -- cgit v1.2.1