summaryrefslogtreecommitdiffstats
path: root/ext/dv/gstdvdec.c
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2004-05-21 23:28:57 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2004-05-21 23:28:57 +0000
commit4c89978b6e2e5d8d37d3b6810c3ce38bf20fb673 (patch)
treeb30718e4a7043aae0bfdd4269074e79c1cb9d5e3 /ext/dv/gstdvdec.c
parentec8a1bb76cd36de9bfa880fed9d44ae617fa2fc4 (diff)
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/dv/gstdvdec.c')
-rw-r--r--ext/dv/gstdvdec.c6
1 files changed, 3 insertions, 3 deletions
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