sys/v4l2/gstv4l2tuner.c: v4l2src doesn't have a property named "norm" so don't try...
authorFilippo Argiolas <filippo.argiolas@gmail.com>
Sat, 23 Aug 2008 15:43:49 +0000 (15:43 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Sat, 23 Aug 2008 15:43:49 +0000 (15:43 +0000)
Original commit message from CVS:
Patch by: Filippo Argiolas <filippo dot argiolas at gmail dot com>
* 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.

ChangeLog
sys/v4l2/gstv4l2tuner.c

index 486d623653d66c462c1ac37f9de170cf203fb176..984f9cd3191c8388290c20195efa9a7631540d79 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2008-08-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
+
+        Patch by: Filippo Argiolas <filippo dot argiolas at gmail dot com>
+
+       * 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  <sebastian.droege@collabora.co.uk>
 
         Patch by: Mike Ruprecht <cmaiku at gmail dot com>
index 94bf90857cc44d18ad402f5bbc54dbf7b8668f4d..e9f5af54df84a43c380e408e4e370dfd7738d113 100644 (file)
@@ -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
   }
 }