comment out the notifies for removed properties

Original commit message from CVS:
comment out the notifies for removed properties
This commit is contained in:
Thomas Vander Stichele 2006-10-03 13:47:10 +00:00
parent 2d65bbb7c4
commit fd3b9b26f1

View file

@ -441,7 +441,9 @@ gst_v4l2_set_defaults (GstV4l2Object * v4l2object)
g_free (v4l2object->norm); g_free (v4l2object->norm);
v4l2object->norm = g_strdup (norm->label); v4l2object->norm = g_strdup (norm->label);
gst_tuner_norm_changed (tuner, norm); gst_tuner_norm_changed (tuner, norm);
/* FIXME: remove
g_object_notify (G_OBJECT (v4l2object->element), "norm"); g_object_notify (G_OBJECT (v4l2object->element), "norm");
*/
} }
} }
@ -456,7 +458,9 @@ gst_v4l2_set_defaults (GstV4l2Object * v4l2object)
g_free (v4l2object->channel); g_free (v4l2object->channel);
v4l2object->channel = g_strdup (channel->label); v4l2object->channel = g_strdup (channel->label);
gst_tuner_channel_changed (tuner, channel); gst_tuner_channel_changed (tuner, channel);
/* FIXME: remove
g_object_notify (G_OBJECT (v4l2object->element), "channel"); g_object_notify (G_OBJECT (v4l2object->element), "channel");
*/
} }
if (GST_TUNER_CHANNEL_HAS_FLAG (channel, GST_TUNER_CHANNEL_FREQUENCY)) { if (GST_TUNER_CHANNEL_HAS_FLAG (channel, GST_TUNER_CHANNEL_FREQUENCY)) {
@ -468,7 +472,9 @@ gst_v4l2_set_defaults (GstV4l2Object * v4l2object)
/* guess */ /* guess */
gst_tuner_set_frequency (tuner, channel, 1000); gst_tuner_set_frequency (tuner, channel, 1000);
} else { } else {
/* FIXME: remove
g_object_notify (G_OBJECT (v4l2object->element), "frequency"); g_object_notify (G_OBJECT (v4l2object->element), "frequency");
*/
} }
} }
} }