mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
*.h: Revert indenting
Original commit message from CVS: * *.h: Revert indenting
This commit is contained in:
parent
2940fc1d56
commit
12ccc90d59
1 changed files with 57 additions and 61 deletions
|
@ -25,8 +25,7 @@
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C"
|
extern "C" {
|
||||||
{
|
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
#include <lame/lame.h>
|
#include <lame/lame.h>
|
||||||
|
@ -42,8 +41,7 @@ extern "C"
|
||||||
#define GST_IS_LAME_CLASS(obj) \
|
#define GST_IS_LAME_CLASS(obj) \
|
||||||
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_LAME))
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_LAME))
|
||||||
|
|
||||||
typedef enum
|
typedef enum {
|
||||||
{
|
|
||||||
GST_LAME_OPEN = GST_ELEMENT_FLAG_LAST,
|
GST_LAME_OPEN = GST_ELEMENT_FLAG_LAST,
|
||||||
|
|
||||||
GST_LAME_FLAG_LAST = GST_ELEMENT_FLAG_LAST+2,
|
GST_LAME_FLAG_LAST = GST_ELEMENT_FLAG_LAST+2,
|
||||||
|
@ -52,8 +50,7 @@ extern "C"
|
||||||
typedef struct _GstLame GstLame;
|
typedef struct _GstLame GstLame;
|
||||||
typedef struct _GstLameClass GstLameClass;
|
typedef struct _GstLameClass GstLameClass;
|
||||||
|
|
||||||
struct _GstLame
|
struct _GstLame {
|
||||||
{
|
|
||||||
GstElement element;
|
GstElement element;
|
||||||
/* pads */
|
/* pads */
|
||||||
GstPad *srcpad, *sinkpad;
|
GstPad *srcpad, *sinkpad;
|
||||||
|
@ -102,8 +99,7 @@ extern "C"
|
||||||
guint64 last_ts, last_offs, last_duration;
|
guint64 last_ts, last_offs, last_duration;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstLameClass
|
struct _GstLameClass {
|
||||||
{
|
|
||||||
GstElementClass parent_class;
|
GstElementClass parent_class;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue