From: Tim-Philipp Müller Date: Sun, 9 Sep 2012 22:52:41 +0000 (+0100) Subject: opencv: disable motioncells "date" property for now X-Git-Tag: 1.19.3~507^2~15133 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ef529601b0a9dfd9d278e37dbe141f21b9b8525;p=platform%2Fupstream%2Fgstreamer.git opencv: disable motioncells "date" property for now Shouldn't be of type long. Not sure it's useful at all, so just disable it for now to see if someone misses it. --- diff --git a/ext/opencv/gstmotioncells.c b/ext/opencv/gstmotioncells.c index ad5758c..04d5de3 100644 --- a/ext/opencv/gstmotioncells.c +++ b/ext/opencv/gstmotioncells.c @@ -258,10 +258,14 @@ gst_motion_cells_class_init (GstMotioncellsClass * klass) g_param_spec_boolean ("usealpha", "Use alpha", "Use or not alpha blending on frames with motion cells", TRUE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); +#if 0 + /* FIXME: should not be a long property, make it either gint or gint64 + * (is this property actually used or useful for anything?) */ g_object_class_install_property (gobject_class, PROP_DATE, g_param_spec_long ("date", "Motion Cell Date", "Current Date in milliseconds", DATE_MIN, DATE_MAX, DATE_DEF, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)); +#endif g_object_class_install_property (gobject_class, PROP_DATAFILE, g_param_spec_string ("datafile", "DataFile", "Location of motioncells data file (empty string means no saving)",