From: Filippo Argiolas Date: Sat, 23 Aug 2008 15:43:49 +0000 (+0000) Subject: sys/v4l2/gstv4l2tuner.c: v4l2src doesn't have a property named "norm" so don't try... X-Git-Tag: RELEASE-0_10_11~67 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4cefe7e94477e1b097638b30718b4f99640de7b3;p=platform%2Fupstream%2Fgst-plugins-good.git sys/v4l2/gstv4l2tuner.c: v4l2src doesn't have a property named "norm" so don't try to notify about changes to that pr... Original commit message from CVS: Patch by: Filippo Argiolas * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_set_norm_and_notify): v4l2src doesn't have a property named "norm" so don't try to notify about changes to that property. The "norm" property and related code are commented out currently. Fixes bug #549090. --- diff --git a/ChangeLog b/ChangeLog index 486d62365..984f9cd31 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2008-08-23 Sebastian Dröge + + Patch by: Filippo Argiolas + + * sys/v4l2/gstv4l2tuner.c: (gst_v4l2_tuner_set_norm_and_notify): + v4l2src doesn't have a property named "norm" so don't try to notify + about changes to that property. The "norm" property and related + code are commented out currently. Fixes bug #549090. + 2008-08-23 Sebastian Dröge Patch by: Mike Ruprecht diff --git a/sys/v4l2/gstv4l2tuner.c b/sys/v4l2/gstv4l2tuner.c index 94bf90857..e9f5af54d 100644 --- a/sys/v4l2/gstv4l2tuner.c +++ b/sys/v4l2/gstv4l2tuner.c @@ -207,7 +207,9 @@ gst_v4l2_tuner_set_norm_and_notify (GstV4l2Object * v4l2object, GstTunerNorm * norm) { if (gst_v4l2_tuner_set_norm (v4l2object, norm)) { +#if 0 g_object_notify (G_OBJECT (v4l2object->element), "norm"); +#endif } }