From: Stefan Kost Date: Fri, 2 Oct 2009 10:15:59 +0000 (+0300) Subject: videofilter: add G_OBJECT_WARN_INVALID_PROPERTY_ID to property setter X-Git-Tag: RELEASE-0.10.17~149 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da05a85455a259c05c28f1b8b29e2b230f38c676;p=platform%2Fupstream%2Fgst-plugins-good.git videofilter: add G_OBJECT_WARN_INVALID_PROPERTY_ID to property setter --- diff --git a/gst/videofilter/gstgamma.c b/gst/videofilter/gstgamma.c index e94de18..12ceb13 100644 --- a/gst/videofilter/gstgamma.c +++ b/gst/videofilter/gstgamma.c @@ -168,6 +168,7 @@ gst_gamma_set_property (GObject * object, guint prop_id, const GValue * value, gst_gamma_calculate_tables (gamma); break; default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } diff --git a/gst/videofilter/gstvideobalance.c b/gst/videofilter/gstvideobalance.c index 7e51ad5..c915212 100644 --- a/gst/videofilter/gstvideobalance.c +++ b/gst/videofilter/gstvideobalance.c @@ -539,6 +539,7 @@ gst_video_balance_set_property (GObject * object, guint prop_id, src->saturation = g_value_get_double (value); break; default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; }