mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
*.h: Revert indenting
Original commit message from CVS: * *.h: Revert indenting
This commit is contained in:
parent
c2bcfc8446
commit
44f714a5fd
1 changed files with 33 additions and 39 deletions
|
@ -64,8 +64,7 @@ typedef GstJack GstJackSrc;
|
||||||
typedef GstJackClass GstJackSrcClass;
|
typedef GstJackClass GstJackSrcClass;
|
||||||
|
|
||||||
|
|
||||||
enum
|
enum {
|
||||||
{
|
|
||||||
GST_JACK_OPEN = GST_BIN_FLAG_LAST,
|
GST_JACK_OPEN = GST_BIN_FLAG_LAST,
|
||||||
GST_JACK_ACTIVE,
|
GST_JACK_ACTIVE,
|
||||||
GST_JACK_FLAG_LAST = GST_BIN_FLAG_LAST + 3,
|
GST_JACK_FLAG_LAST = GST_BIN_FLAG_LAST + 3,
|
||||||
|
@ -74,8 +73,7 @@ enum
|
||||||
|
|
||||||
typedef jack_default_audio_sample_t sample_t;
|
typedef jack_default_audio_sample_t sample_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct {
|
||||||
{
|
|
||||||
GstPad *pad;
|
GstPad *pad;
|
||||||
void *data;
|
void *data;
|
||||||
const gchar *name;
|
const gchar *name;
|
||||||
|
@ -83,8 +81,7 @@ typedef struct
|
||||||
jack_port_t *port;
|
jack_port_t *port;
|
||||||
} GstJackPad;
|
} GstJackPad;
|
||||||
|
|
||||||
struct _GstJack
|
struct _GstJack {
|
||||||
{
|
|
||||||
GstElement element;
|
GstElement element;
|
||||||
|
|
||||||
/* list of GstJackPads */
|
/* list of GstJackPads */
|
||||||
|
@ -98,13 +95,11 @@ struct _GstJack
|
||||||
GstJackBin *bin;
|
GstJackBin *bin;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstJackClass
|
struct _GstJackClass {
|
||||||
{
|
|
||||||
GstElementClass parent_class;
|
GstElementClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstJackBin
|
struct _GstJackBin {
|
||||||
{
|
|
||||||
GstBin bin;
|
GstBin bin;
|
||||||
|
|
||||||
jack_client_t *client;
|
jack_client_t *client;
|
||||||
|
@ -120,8 +115,7 @@ struct _GstJackBin
|
||||||
jack_nframes_t nframes;
|
jack_nframes_t nframes;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstJackBinClass
|
struct _GstJackBinClass {
|
||||||
{
|
|
||||||
GstBinClass parent_class;
|
GstBinClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue