diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-06 19:44:58 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-06 19:44:58 +0000 |
commit | 3ecf433432289b9c1990165f65bdd51aaad2eaa7 (patch) | |
tree | dc7bd5c5b4eb37d49b1a37ca1f33c9d9ed2a8374 /gst/matroska | |
parent | f2085bd7ef2a4e685b8a58ae0848c43aab0d8747 (diff) |
expand tabs
Original commit message from CVS:
expand tabs
Diffstat (limited to 'gst/matroska')
-rw-r--r-- | gst/matroska/ebml-write.h | 52 | ||||
-rw-r--r-- | gst/matroska/matroska-demux.h | 2 | ||||
-rw-r--r-- | gst/matroska/matroska-ids.h | 4 | ||||
-rw-r--r-- | gst/matroska/matroska-mux.h | 2 |
4 files changed, 30 insertions, 30 deletions
diff --git a/gst/matroska/ebml-write.h b/gst/matroska/ebml-write.h index b579d8b2..a0739c0b 100644 --- a/gst/matroska/ebml-write.h +++ b/gst/matroska/ebml-write.h @@ -77,56 +77,56 @@ GstFlowReturn gst_ebml_last_write_result (GstEbmlWrite *ebml); * each element, but fill this one until a flush. */ void gst_ebml_write_set_cache (GstEbmlWrite *ebml, - guint size); + guint size); void gst_ebml_write_flush_cache (GstEbmlWrite *ebml); /* * Seeking. */ void gst_ebml_write_seek (GstEbmlWrite *ebml, - guint64 pos); + guint64 pos); /* * Data writing. */ void gst_ebml_write_uint (GstEbmlWrite *ebml, - guint32 id, - guint64 num); + guint32 id, + guint64 num); void gst_ebml_write_sint (GstEbmlWrite *ebml, - guint32 id, - gint64 num); + guint32 id, + gint64 num); void gst_ebml_write_float (GstEbmlWrite *ebml, - guint32 id, - gdouble num); + guint32 id, + gdouble num); void gst_ebml_write_ascii (GstEbmlWrite *ebml, - guint32 id, - const gchar *str); + guint32 id, + const gchar *str); void gst_ebml_write_utf8 (GstEbmlWrite *ebml, - guint32 id, - const gchar *str); + guint32 id, + const gchar *str); void gst_ebml_write_date (GstEbmlWrite *ebml, - guint32 id, - gint64 date); + guint32 id, + gint64 date); guint64 gst_ebml_write_master_start (GstEbmlWrite *ebml, - guint32 id); + guint32 id); void gst_ebml_write_master_finish (GstEbmlWrite *ebml, - guint64 startpos); + guint64 startpos); void gst_ebml_write_binary (GstEbmlWrite *ebml, - guint32 id, - guchar *binary, - guint64 length); + guint32 id, + guchar *binary, + guint64 length); void gst_ebml_write_header (GstEbmlWrite *ebml, - gchar *doctype, - guint version); + gchar *doctype, + guint version); /* * Note: this is supposed to be used only for media data. */ void gst_ebml_write_buffer_header (GstEbmlWrite *ebml, - guint32 id, - guint64 length); + guint32 id, + guint64 length); void gst_ebml_write_buffer (GstEbmlWrite *ebml, - GstBuffer *data); + GstBuffer *data); /* * A hack, basically... See matroska-mux.c. I should actually @@ -134,8 +134,8 @@ void gst_ebml_write_buffer (GstEbmlWrite *ebml, * works for now. */ void gst_ebml_replace_uint (GstEbmlWrite *ebml, - guint64 pos, - guint64 num); + guint64 pos, + guint64 num); G_END_DECLS diff --git a/gst/matroska/matroska-demux.h b/gst/matroska/matroska-demux.h index 889bb650..14401a58 100644 --- a/gst/matroska/matroska-demux.h +++ b/gst/matroska/matroska-demux.h @@ -40,7 +40,7 @@ G_BEGIN_DECLS #define GST_IS_MATROSKA_DEMUX_CLASS(obj) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_MATROSKA_DEMUX)) -#define GST_MATROSKA_DEMUX_MAX_STREAMS 64 +#define GST_MATROSKA_DEMUX_MAX_STREAMS 64 typedef enum { GST_MATROSKA_DEMUX_STATE_START, diff --git a/gst/matroska/matroska-ids.h b/gst/matroska/matroska-ids.h index ff61efd1..a23bfdb3 100644 --- a/gst/matroska/matroska-ids.h +++ b/gst/matroska/matroska-ids.h @@ -218,7 +218,7 @@ typedef enum { typedef struct _GstMatroskaTrackContext { GstPad *pad; GstCaps *caps; - guint index; + guint index; /* some often-used info */ gchar *codec_id, *codec_name, *name, *language; @@ -249,7 +249,7 @@ typedef struct _GstMatroskaTrackAudioContext { /* Special flag for Vorbis, we need to send codec_priv first before * sending any data, and just testing for time == 0 is not enough * to detect that */ - gboolean first_frame; + gboolean first_frame; } GstMatroskaTrackAudioContext; typedef struct _GstMatroskaTrackComplexContext { diff --git a/gst/matroska/matroska-mux.h b/gst/matroska/matroska-mux.h index 2f1d2db4..e3d3499e 100644 --- a/gst/matroska/matroska-mux.h +++ b/gst/matroska/matroska-mux.h @@ -84,7 +84,7 @@ typedef struct _GstMatroskaMux { GstElement element; /* pads */ - GstPad *srcpad; + GstPad *srcpad; GstCollectPads *collect; GstEbmlWrite *ebml_write; |