mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-04-28 07:55:22 +00:00
fallbacksrc: Mark internal source property for custom sources as write/construct-only
It's only used during construction of the internal bin after all. Keeping it readable would cause e.g. creating a pipeline graph trying to read it, which is not implemented.
This commit is contained in:
parent
e40267e95d
commit
2e13e4ce73
1 changed files with 1 additions and 1 deletions
|
@ -1948,7 +1948,7 @@ mod custom_source {
|
||||||
"Source",
|
"Source",
|
||||||
"Source",
|
"Source",
|
||||||
gst::Element::static_type(),
|
gst::Element::static_type(),
|
||||||
glib::ParamFlags::READWRITE | glib::ParamFlags::CONSTRUCT_ONLY,
|
glib::ParamFlags::WRITABLE | glib::ParamFlags::CONSTRUCT_ONLY,
|
||||||
)
|
)
|
||||||
})];
|
})];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue