mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
sys/v4l2/gstv4l2object.c: comment out the properties that are already part of the tuner interface.
Original commit message from CVS: * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_install_properties_helper): comment out the properties that are already part of the tuner interface.
This commit is contained in:
parent
d928cf05c3
commit
2d65bbb7c4
1 changed files with 3 additions and 0 deletions
|
@ -244,6 +244,8 @@ gst_v4l2_object_install_properties_helper (GObjectClass * gobject_class)
|
||||||
g_object_class_install_property (gobject_class, PROP_FLAGS,
|
g_object_class_install_property (gobject_class, PROP_FLAGS,
|
||||||
g_param_spec_flags ("flags", "Flags", "Device type flags",
|
g_param_spec_flags ("flags", "Flags", "Device type flags",
|
||||||
GST_TYPE_V4L2_DEVICE_FLAGS, DEFAULT_PROP_FLAGS, G_PARAM_READABLE));
|
GST_TYPE_V4L2_DEVICE_FLAGS, DEFAULT_PROP_FLAGS, G_PARAM_READABLE));
|
||||||
|
/* FIXME norm, channel, frequency are part of the tuner interface, so they
|
||||||
|
should be removed from the properties
|
||||||
g_object_class_install_property (gobject_class, PROP_NORM,
|
g_object_class_install_property (gobject_class, PROP_NORM,
|
||||||
g_param_spec_string ("norm", "Norm", "Standard norm to use",
|
g_param_spec_string ("norm", "Norm", "Standard norm to use",
|
||||||
DEFAULT_PROP_NORM, G_PARAM_READWRITE));
|
DEFAULT_PROP_NORM, G_PARAM_READWRITE));
|
||||||
|
@ -255,6 +257,7 @@ gst_v4l2_object_install_properties_helper (GObjectClass * gobject_class)
|
||||||
g_param_spec_ulong ("frequency", "Frequency",
|
g_param_spec_ulong ("frequency", "Frequency",
|
||||||
"Frequency to tune to (in Hz)", 0, G_MAXULONG, DEFAULT_PROP_FREQUENCY,
|
"Frequency to tune to (in Hz)", 0, G_MAXULONG, DEFAULT_PROP_FREQUENCY,
|
||||||
G_PARAM_READWRITE));
|
G_PARAM_READWRITE));
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
GstV4l2Object *
|
GstV4l2Object *
|
||||||
|
|
Loading…
Reference in a new issue