mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
docs: Fix the way we mark properties mutability
When nothing is specified, we should default to NULL, not PLAYING
This commit is contained in:
parent
44d73efc49
commit
34db244d46
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ _add_properties (GString * json, GString * other_types,
|
|||
} else if ((spec->flags & GST_PARAM_MUTABLE_READY)) {
|
||||
mutable_str = "\"ready\"";
|
||||
} else {
|
||||
mutable_str = "\"playing\"";
|
||||
mutable_str = "\"null\"";
|
||||
}
|
||||
|
||||
tmpstr = json_strescape (g_param_spec_get_blurb (spec));
|
||||
|
|
Loading…
Reference in a new issue