mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +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
4c89978b6e
commit
f5876c0e87
4 changed files with 5 additions and 5 deletions
|
@ -44,7 +44,7 @@ enum
|
||||||
ARG_0,
|
ARG_0,
|
||||||
ARG_DEVICE,
|
ARG_DEVICE,
|
||||||
ARG_MIXERDEV,
|
ARG_MIXERDEV,
|
||||||
ARG_DEVICE_NAME,
|
ARG_DEVICE_NAME
|
||||||
};
|
};
|
||||||
|
|
||||||
/* elementfactory information */
|
/* elementfactory information */
|
||||||
|
|
|
@ -84,8 +84,8 @@ enum
|
||||||
ARG_FRAGMENT,
|
ARG_FRAGMENT,
|
||||||
ARG_BUFFER_SIZE,
|
ARG_BUFFER_SIZE,
|
||||||
ARG_SYNC,
|
ARG_SYNC,
|
||||||
ARG_CHUNK_SIZE,
|
ARG_CHUNK_SIZE
|
||||||
/* FILL ME */
|
/* FILL ME */
|
||||||
};
|
};
|
||||||
|
|
||||||
static GstStaticPadTemplate osssink_sink_factory =
|
static GstStaticPadTemplate osssink_sink_factory =
|
||||||
|
|
|
@ -55,7 +55,7 @@ enum
|
||||||
{
|
{
|
||||||
ARG_0,
|
ARG_0,
|
||||||
ARG_BUFFERSIZE,
|
ARG_BUFFERSIZE,
|
||||||
ARG_FRAGMENT,
|
ARG_FRAGMENT
|
||||||
};
|
};
|
||||||
|
|
||||||
static GstStaticPadTemplate osssrc_src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
static GstStaticPadTemplate osssrc_src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
ARG_0,
|
ARG_0,
|
||||||
ARG_DEVICE,
|
ARG_DEVICE
|
||||||
};
|
};
|
||||||
|
|
||||||
/* elementfactory information */
|
/* elementfactory information */
|
||||||
|
|
Loading…
Reference in a new issue