mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-22 00:48:17 +00:00
fallbackswitch: document the pad priority ordering
I just wasted lots of time trying to figure out why my higher priority pad wasn't used... Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1208>
This commit is contained in:
parent
067d47f0ec
commit
7ebf2d7a4f
2 changed files with 4 additions and 2 deletions
|
@ -1653,7 +1653,7 @@
|
|||
"writable": false
|
||||
},
|
||||
"priority": {
|
||||
"blurb": "Selection priority for this stream",
|
||||
"blurb": "Selection priority for this stream (lower number has a higher priority)",
|
||||
"conditionally-available": false,
|
||||
"construct": false,
|
||||
"construct-only": false,
|
||||
|
|
|
@ -138,7 +138,9 @@ impl ObjectImpl for FallbackSwitchSinkPad {
|
|||
vec![
|
||||
glib::ParamSpecUInt::builder(PROP_PRIORITY)
|
||||
.nick("Stream Priority")
|
||||
.blurb("Selection priority for this stream")
|
||||
.blurb(
|
||||
"Selection priority for this stream (lower number has a higher priority)",
|
||||
)
|
||||
.default_value(SinkSettings::default().priority)
|
||||
.build(),
|
||||
glib::ParamSpecBoolean::builder(PROP_IS_HEALTHY)
|
||||
|
|
Loading…
Reference in a new issue