Way, way, way too many files: Remove crack comment from the 2000 era.
[platform/upstream/gst-plugins-good.git] / gst / effectv / gstrev.c
index c385a05..429a9b1 100644 (file)
@@ -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;
 }
 
@@ -255,7 +255,6 @@ gst_revtv_set_property (GObject * object, guint prop_id, const GValue * value,
 {
   GstRevTV *filter;
 
-  /* it's not null if we got it, but it might not be ours */
   g_return_if_fail (GST_IS_REVTV (object));
 
   filter = GST_REVTV (object);
@@ -281,7 +280,6 @@ gst_revtv_get_property (GObject * object, guint prop_id, GValue * value,
 {
   GstRevTV *filter;
 
-  /* it's not null if we got it, but it might not be ours */
   g_return_if_fail (GST_IS_REVTV (object));
 
   filter = GST_REVTV (object);