From 4c89978b6e2e5d8d37d3b6810c3ce38bf20fb673 Mon Sep 17 00:00:00 2001 From: Stéphane Loeuillet Date: Fri, 21 May 2004 23:28:57 +0000 Subject: 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) --- ext/dv/gstdvdec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/dv') diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 0c4ba18d..338bfdbd 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -63,8 +63,8 @@ enum ARG_0, ARG_CLAMP_LUMA, ARG_CLAMP_CHROMA, - ARG_QUALITY, - /* FILL ME */ + ARG_QUALITY + /* FILL ME */ }; const gint qualities[] = { @@ -73,7 +73,7 @@ const gint qualities[] = { DV_QUALITY_AC_2, DV_QUALITY_DC | DV_QUALITY_COLOR, DV_QUALITY_AC_1 | DV_QUALITY_COLOR, - DV_QUALITY_AC_2 | DV_QUALITY_COLOR, + DV_QUALITY_AC_2 | DV_QUALITY_COLOR }; #define DV_QUALITY_DEFAULT 5 -- cgit