summaryrefslogtreecommitdiffstats
path: root/gst/median
diff options
context:
space:
mode:
authorChristian Schaller <uraeus@gnome.org>2002-01-19 15:06:48 +0000
committerChristian Schaller <uraeus@gnome.org>2002-01-19 15:06:48 +0000
commit3d6ee376df5b35a4a8934ccbb608d129821f1442 (patch)
tree0310c4d8b26803373a33f34f0224c86db77e5983 /gst/median
parentf14fcbf8968c7fafa3a7d515df6b1cc1f76e17cc (diff)
more // fixage
Original commit message from CVS: more // fixage
Diffstat (limited to 'gst/median')
-rw-r--r--gst/median/gstmedian.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/gst/median/gstmedian.c b/gst/median/gstmedian.c
index 89a9a8c2..72a48e61 100644
--- a/gst/median/gstmedian.c
+++ b/gst/median/gstmedian.c
@@ -1,4 +1,4 @@
-/* Gnome-Streamer
+/* GStreamer
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
*
* This library is free software; you can redistribute it and/or
@@ -78,7 +78,7 @@ static void gst_median_set_property (GObject *object, guint prop_id, const GValu
static void gst_median_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
static GstElementClass *parent_class = NULL;
-//static guint gst_median_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_median_signals[LAST_SIGNAL] = { 0 }; */
GType
gst_median_get_type (void)
@@ -112,13 +112,13 @@ gst_median_class_init (GstMedianClass *klass)
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_ACTIVE,
g_param_spec_boolean("active","active","active",
- TRUE,G_PARAM_READWRITE)); // CHECKME
+ TRUE,G_PARAM_READWRITE)); /* CHECKME */
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_FILTERSIZE,
g_param_spec_int("filtersize","filtersize","filtersize",
- G_MININT,G_MAXINT,0,G_PARAM_READWRITE)); // CHECKME
+ G_MININT,G_MAXINT,0,G_PARAM_READWRITE)); /* CHECKME */
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_LUM_ONLY,
g_param_spec_boolean("lum_only","lum_only","lum_only",
- TRUE,G_PARAM_READWRITE)); // CHECKME
+ TRUE,G_PARAM_READWRITE)); /* CHECKME */
gobject_class->set_property = gst_median_set_property;
gobject_class->get_property = gst_median_get_property;
@@ -171,7 +171,7 @@ median_5 (unsigned char *src, unsigned char *dest, int width, int height)
nLastCol = width - 1;
nLastRow = height - 1;
- //copy the top and bottom rows into the result array
+ /*copy the top and bottom rows into the result array */
for (i=0; i<width; i++) {
dest[i] = src[i];
dest[nLastRow * width + i] = src[nLastRow * width + i];
@@ -212,7 +212,7 @@ median_9 (unsigned char *src, unsigned char *dest, int width, int height)
nLastCol = width - 1;
nLastRow = height - 1;
- //copy the top and bottom rows into the result array
+ /*copy the top and bottom rows into the result array */
for (i=0; i<width; i++) {
dest[i] = src[i];
dest[nLastRow * width + i] = src[nLastRow * width + i];
@@ -257,7 +257,7 @@ gst_median_chain (GstPad *pad, GstBuffer *buf)
guchar *data;
gulong size;
GstBuffer *outbuf;
-// GstMeta *meta;
+/* GstMeta *meta; */
int lumsize, chromsize;
g_return_if_fail(pad != NULL);