summaryrefslogtreecommitdiff
path: root/gst/effectv/gstrev.c
diff options
context:
space:
mode:
authorChristian Schaller <uraeus@gnome.org>2005-05-06 11:04:30 +0000
committerChristian Schaller <uraeus@gnome.org>2005-05-06 11:04:30 +0000
commit0751f737336db408d0de424c2032b421d558dbbd (patch)
tree8c2bc5772f29b7a285e1a35eec0420c188d6668f /gst/effectv/gstrev.c
parent08616b7531b685ab582a212ed84f0967e27a7d00 (diff)
ported mad and effectv plugins
Original commit message from CVS: ported mad and effectv plugins
Diffstat (limited to 'gst/effectv/gstrev.c')
-rw-r--r--gst/effectv/gstrev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/effectv/gstrev.c b/gst/effectv/gstrev.c
index c385a058b..a7f5dd426 100644
--- a/gst/effectv/gstrev.c
+++ b/gst/effectv/gstrev.c
@@ -171,6 +171,9 @@ gst_revtv_class_init (gpointer klass, gpointer class_data)
gobject_class = G_OBJECT_CLASS (klass);
videofilter_class = GST_VIDEOFILTER_CLASS (klass);
+ gobject_class->set_property = gst_revtv_set_property;
+ gobject_class->get_property = gst_revtv_get_property;
+
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DELAY,
g_param_spec_int ("delay", "Delay", "Delay in frames between updates",
1, 100, 1, G_PARAM_READWRITE));
@@ -181,9 +184,6 @@ gst_revtv_class_init (gpointer klass, gpointer class_data)
g_param_spec_int ("gain", "Gain", "Control gain",
1, 200, 50, G_PARAM_READWRITE));
- gobject_class->set_property = gst_revtv_set_property;
- gobject_class->get_property = gst_revtv_get_property;
-
videofilter_class->setup = gst_revtv_setup;
}