summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-04-25 21:19:33 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-04-26 00:01:19 +0100
commitf48bc702afa63d47004d8e80c04c410d38ed8b20 (patch)
treec9cc2aa539b72925b4c0457037f0627572be68c3
parent6b2a0c7c46616f8148e846a17f5675b0000f07cf (diff)
flvmux: hide is-live property for release
At the very least it needs a better/less wrong name. See #613066.
-rw-r--r--gst/flv/gstflvmux.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/flv/gstflvmux.c b/gst/flv/gstflvmux.c
index 0c6b7ad8c..4a59fc8ff 100644
--- a/gst/flv/gstflvmux.c
+++ b/gst/flv/gstflvmux.c
@@ -160,10 +160,14 @@ gst_flv_mux_class_init (GstFlvMuxClass * klass)
gobject_class->set_property = gst_flv_mux_set_property;
gobject_class->finalize = gst_flv_mux_finalize;
+ /* FIXME: disabled for release, needs a better/less wrong name; ideally the
+ * right mode of operation should be detected automatically using queries */
+#if 0
g_object_class_install_property (gobject_class, PROP_IS_LIVE,
g_param_spec_boolean ("is-live", "Is Live",
"The stream is live and does not need an index", DEFAULT_IS_LIVE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+#endif
gstelement_class->change_state = GST_DEBUG_FUNCPTR (gst_flv_mux_change_state);
gstelement_class->request_new_pad =