mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
fourth batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc (in ...
Original commit message from CVS: fourth batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc (in gst-plugins/sys/ this time)
This commit is contained in:
parent
f68a449ea3
commit
8ab84441bb
6 changed files with 8 additions and 8 deletions
|
@ -31,14 +31,14 @@ enum
|
|||
ARG_START_TRACK,
|
||||
ARG_END_TRACK,
|
||||
ARG_CURRENT_TRACK,
|
||||
ARG_CDDB_DISCID,
|
||||
ARG_CDDB_DISCID
|
||||
};
|
||||
|
||||
/* signals */
|
||||
enum
|
||||
{
|
||||
TRACK_CHANGE,
|
||||
LAST_SIGNAL,
|
||||
LAST_SIGNAL
|
||||
};
|
||||
|
||||
static void cdplayer_base_init (gpointer g_class);
|
||||
|
|
|
@ -60,7 +60,7 @@ enum
|
|||
|
||||
enum
|
||||
{
|
||||
ARG_0,
|
||||
ARG_0
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ enum
|
|||
{
|
||||
PARSE_STATE_WAITING, /* Waiting for the start of a sequence. */
|
||||
PARSE_STATE_START, /* Start of sequence seen. */
|
||||
PARSE_STATE_PICTURE, /* Picture start seen. */
|
||||
PARSE_STATE_PICTURE /* Picture start seen. */
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -101,7 +101,7 @@ enum
|
|||
ARG_TRANSFER_SCALE,
|
||||
ARG_DEPTH,
|
||||
ARG_PORT,
|
||||
ARG_AUTOEXP,
|
||||
ARG_AUTOEXP
|
||||
};
|
||||
|
||||
static void gst_qcamsrc_base_init (gpointer g_class);
|
||||
|
|
|
@ -81,14 +81,14 @@ static GstElementDetails plugin_details = {
|
|||
enum
|
||||
{
|
||||
/* FILL ME */
|
||||
LAST_SIGNAL,
|
||||
LAST_SIGNAL
|
||||
};
|
||||
|
||||
enum
|
||||
{
|
||||
ARG_0,
|
||||
ARG_DEVICE,
|
||||
ARG_BUFFER_SIZE,
|
||||
ARG_BUFFER_SIZE
|
||||
};
|
||||
|
||||
static GstStaticPadTemplate gst_sunaudiosink_sink_factory =
|
||||
|
|
|
@ -57,7 +57,7 @@ enum
|
|||
ARG_TRACK,
|
||||
ARG_BYTESPERREAD,
|
||||
ARG_OFFSET,
|
||||
ARG_MAX_ERRORS,
|
||||
ARG_MAX_ERRORS
|
||||
};
|
||||
|
||||
static void vcdsrc_base_init (gpointer g_class);
|
||||
|
|
Loading…
Reference in a new issue