gst/: Remove comma at end of enumerator list.

Original commit message from CVS:
* gst/gstbus.h:
* gst/gstclock.h:
* gst/gstevent.h:
* gst/gstiterator.h:
* gst/gstpad.h:
* gst/gstplugin.h:
* gst/gsttask.h:
Remove comma at end of enumerator list.
This commit is contained in:
Wim Taymans 2006-07-06 09:21:03 +00:00
parent cc2aa735eb
commit 15d8500f57
8 changed files with 21 additions and 10 deletions

View file

@ -1,3 +1,14 @@
2006-07-06 Wim Taymans <wim@fluendo.com>
* gst/gstbus.h:
* gst/gstclock.h:
* gst/gstevent.h:
* gst/gstiterator.h:
* gst/gstpad.h:
* gst/gstplugin.h:
* gst/gsttask.h:
Remove comma at end of enumerator list.
2006-07-05 Sebastien Moutte <sebastien@moutte.net> 2006-07-05 Sebastien Moutte <sebastien@moutte.net>
* win32/common/libgstbase.def: * win32/common/libgstbase.def:

View file

@ -65,7 +65,7 @@ typedef enum
{ {
GST_BUS_DROP = 0, GST_BUS_DROP = 0,
GST_BUS_PASS = 1, GST_BUS_PASS = 1,
GST_BUS_ASYNC = 2, GST_BUS_ASYNC = 2
} GstBusSyncReply; } GstBusSyncReply;
/** /**

View file

@ -232,7 +232,7 @@ typedef enum
GST_CLOCK_BUSY = 3, GST_CLOCK_BUSY = 3,
GST_CLOCK_BADTIME = 4, GST_CLOCK_BADTIME = 4,
GST_CLOCK_ERROR = 5, GST_CLOCK_ERROR = 5,
GST_CLOCK_UNSUPPORTED = 6, GST_CLOCK_UNSUPPORTED = 6
} GstClockReturn; } GstClockReturn;
/** /**
@ -329,7 +329,7 @@ typedef enum {
GST_CLOCK_FLAG_CAN_SET_RESOLUTION = (GST_OBJECT_FLAG_LAST << 4), GST_CLOCK_FLAG_CAN_SET_RESOLUTION = (GST_OBJECT_FLAG_LAST << 4),
GST_CLOCK_FLAG_CAN_SET_MASTER = (GST_OBJECT_FLAG_LAST << 5), GST_CLOCK_FLAG_CAN_SET_MASTER = (GST_OBJECT_FLAG_LAST << 5),
/* padding */ /* padding */
GST_CLOCK_FLAG_LAST = (GST_OBJECT_FLAG_LAST << 8), GST_CLOCK_FLAG_LAST = (GST_OBJECT_FLAG_LAST << 8)
} GstClockFlags; } GstClockFlags;
/** /**

View file

@ -48,7 +48,7 @@ G_BEGIN_DECLS
typedef enum { typedef enum {
GST_EVENT_TYPE_UPSTREAM = 1 << 0, GST_EVENT_TYPE_UPSTREAM = 1 << 0,
GST_EVENT_TYPE_DOWNSTREAM = 1 << 1, GST_EVENT_TYPE_DOWNSTREAM = 1 << 1,
GST_EVENT_TYPE_SERIALIZED = 1 << 2, GST_EVENT_TYPE_SERIALIZED = 1 << 2
} GstEventTypeFlags; } GstEventTypeFlags;
/** /**

View file

@ -40,7 +40,7 @@ typedef enum {
GST_ITERATOR_DONE = 0, GST_ITERATOR_DONE = 0,
GST_ITERATOR_OK = 1, GST_ITERATOR_OK = 1,
GST_ITERATOR_RESYNC = 2, GST_ITERATOR_RESYNC = 2,
GST_ITERATOR_ERROR = 3, GST_ITERATOR_ERROR = 3
} GstIteratorResult; } GstIteratorResult;
typedef struct _GstIterator GstIterator; typedef struct _GstIterator GstIterator;
@ -56,7 +56,7 @@ typedef struct _GstIterator GstIterator;
typedef enum { typedef enum {
GST_ITERATOR_ITEM_SKIP = 0, GST_ITERATOR_ITEM_SKIP = 0,
GST_ITERATOR_ITEM_PASS = 1, GST_ITERATOR_ITEM_PASS = 1,
GST_ITERATOR_ITEM_END = 2, GST_ITERATOR_ITEM_END = 2
} GstIteratorItem; } GstIteratorItem;
/** /**

View file

@ -68,7 +68,7 @@ typedef enum {
GST_PAD_LINK_WRONG_DIRECTION = -3, GST_PAD_LINK_WRONG_DIRECTION = -3,
GST_PAD_LINK_NOFORMAT = -4, GST_PAD_LINK_NOFORMAT = -4,
GST_PAD_LINK_NOSCHED = -5, GST_PAD_LINK_NOSCHED = -5,
GST_PAD_LINK_REFUSED = -6, GST_PAD_LINK_REFUSED = -6
} GstPadLinkReturn; } GstPadLinkReturn;
/** /**
@ -171,7 +171,7 @@ GQuark gst_flow_to_quark (GstFlowReturn ret);
typedef enum { typedef enum {
GST_ACTIVATE_NONE, GST_ACTIVATE_NONE,
GST_ACTIVATE_PUSH, GST_ACTIVATE_PUSH,
GST_ACTIVATE_PULL, GST_ACTIVATE_PULL
} GstActivateMode; } GstActivateMode;
/** /**

View file

@ -72,7 +72,7 @@ typedef enum
typedef enum typedef enum
{ {
GST_PLUGIN_FLAG_CACHED = (1<<0), GST_PLUGIN_FLAG_CACHED = (1<<0)
} GstPluginFlags; } GstPluginFlags;
/** /**

View file

@ -59,7 +59,7 @@ typedef struct _GstTaskClass GstTaskClass;
typedef enum { typedef enum {
GST_TASK_STARTED, GST_TASK_STARTED,
GST_TASK_STOPPED, GST_TASK_STOPPED,
GST_TASK_PAUSED, GST_TASK_PAUSED
} GstTaskState; } GstTaskState;
/** /**