GNOME Bugzilla – Bug 549090
v4l2src has no property named norm but notifies it
Last modified: 2008-08-23 15:43:37 UTC
Here is what I get when I try to use a tuner device with v4l2src: GLib-GObject-WARNING **: IA__g_object_notify: object class `GstV4l2Src' has no property named `norm' This happens because gst_v4l2_tuner_set_norm_and_notify calls g_object_notify for "norm" property but there is no norm property installed (there is some disabled stuff about PROP_NORM in gstv4l2object.c). Attaching a simple patch.
Created attachment 117256 [details] [review] disable g_object_notify
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.