summaryrefslogtreecommitdiffstats
path: root/sys/v4l2/gstv4l2object.c
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2006-10-03 13:47:10 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2006-10-03 13:47:10 +0000
commitfd3b9b26f194395b14d548606ffafb5693882278 (patch)
tree9bd80aeb418c68517f641e5154a9c8b950261bb7 /sys/v4l2/gstv4l2object.c
parent2d65bbb7c4fd7ed64d8c1410a49a7cc3a1310dbb (diff)
comment out the notifies for removed properties
Original commit message from CVS: comment out the notifies for removed properties
Diffstat (limited to 'sys/v4l2/gstv4l2object.c')
-rw-r--r--sys/v4l2/gstv4l2object.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/v4l2/gstv4l2object.c b/sys/v4l2/gstv4l2object.c
index 682915a8..3ed211df 100644
--- a/sys/v4l2/gstv4l2object.c
+++ b/sys/v4l2/gstv4l2object.c
@@ -441,7 +441,9 @@ gst_v4l2_set_defaults (GstV4l2Object * v4l2object)
g_free (v4l2object->norm);
v4l2object->norm = g_strdup (norm->label);
gst_tuner_norm_changed (tuner, norm);
+/* FIXME: remove
g_object_notify (G_OBJECT (v4l2object->element), "norm");
+*/
}
}
@@ -456,7 +458,9 @@ gst_v4l2_set_defaults (GstV4l2Object * v4l2object)
g_free (v4l2object->channel);
v4l2object->channel = g_strdup (channel->label);
gst_tuner_channel_changed (tuner, channel);
+/* FIXME: remove
g_object_notify (G_OBJECT (v4l2object->element), "channel");
+*/
}
if (GST_TUNER_CHANNEL_HAS_FLAG (channel, GST_TUNER_CHANNEL_FREQUENCY)) {
@@ -468,7 +472,9 @@ gst_v4l2_set_defaults (GstV4l2Object * v4l2object)
/* guess */
gst_tuner_set_frequency (tuner, channel, 1000);
} else {
+/* FIXME: remove
g_object_notify (G_OBJECT (v4l2object->element), "frequency");
+*/
}
}
}