mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
flvmux: hide is-live property for release
At the very least it needs a better/less wrong name. See #613066.
This commit is contained in:
parent
6b2a0c7c46
commit
f48bc702af
1 changed files with 4 additions and 0 deletions
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue