diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 23:28:57 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2004-05-21 23:28:57 +0000 |
commit | c9cb9718922fbfea5bdbf6933235eefcca0152d4 (patch) | |
tree | fe125e098c3598bbf876c356fcf684ac01dfbb98 /ext/hermes | |
parent | 97b6f6ccfa0ab837cb0e336a86f8a190d0ecd188 (diff) | |
download | gstreamer-plugins-bad-c9cb9718922fbfea5bdbf6933235eefcca0152d4.tar.gz |
second batch : remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc (in ...
Original commit message from CVS:
second batch :
remove ',' at end of enums as they could confuse older gcc, foreign compilers (forte) and gtk-doc
(in gst-plugins/ext/ this time)
Diffstat (limited to 'ext/hermes')
-rw-r--r-- | ext/hermes/gsthermescolorspace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/hermes/gsthermescolorspace.c b/ext/hermes/gsthermescolorspace.c index 732c79080..ed7639bab 100644 --- a/ext/hermes/gsthermescolorspace.c +++ b/ext/hermes/gsthermescolorspace.c @@ -47,7 +47,7 @@ typedef enum GST_HERMES_COLORSPACE_YUY2_I420, GST_HERMES_COLORSPACE_RGB32_I420, GST_HERMES_COLORSPACE_RGB32_YV12, - GST_HERMES_COLORSPACE_420_SWAP, + GST_HERMES_COLORSPACE_420_SWAP } GstColorSpaceConverterType; @@ -119,7 +119,7 @@ enum { ARG_0, ARG_SOURCE, - ARG_DEST, + ARG_DEST }; static void gst_hermes_colorspace_base_init (gpointer g_class); |