mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
doc: Add GstObject specific GParamFlags
Document "controllable", "mutable-{ready, paused, playing}" and "conditonally-available" GParamFlags Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/283>
This commit is contained in:
parent
1769187328
commit
c092dd40ca
1 changed files with 17 additions and 1 deletions
|
@ -407,6 +407,7 @@ _add_properties (GString * json, GString * other_types,
|
||||||
|
|
||||||
for (i = 0; i < n_props; i++) {
|
for (i = 0; i < n_props; i++) {
|
||||||
GValue value = { 0, };
|
GValue value = { 0, };
|
||||||
|
const gchar *mutable_str = NULL;
|
||||||
spec = specs[i];
|
spec = specs[i];
|
||||||
|
|
||||||
if (spec->owner_type == GST_TYPE_PAD || spec->owner_type == GST_TYPE_OBJECT)
|
if (spec->owner_type == GST_TYPE_PAD || spec->owner_type == GST_TYPE_OBJECT)
|
||||||
|
@ -426,6 +427,16 @@ _add_properties (GString * json, GString * other_types,
|
||||||
if (!opened)
|
if (!opened)
|
||||||
g_string_append (json, ",\"properties\": {");
|
g_string_append (json, ",\"properties\": {");
|
||||||
|
|
||||||
|
if ((spec->flags & GST_PARAM_MUTABLE_PLAYING)) {
|
||||||
|
mutable_str = "\"playing\"";
|
||||||
|
} else if ((spec->flags & GST_PARAM_MUTABLE_PAUSED)) {
|
||||||
|
mutable_str = "\"paused\"";
|
||||||
|
} else if ((spec->flags & GST_PARAM_MUTABLE_READY)) {
|
||||||
|
mutable_str = "\"ready\"";
|
||||||
|
} else {
|
||||||
|
mutable_str = "\"playing\"";
|
||||||
|
}
|
||||||
|
|
||||||
tmpstr = json_strescape (g_param_spec_get_blurb (spec));
|
tmpstr = json_strescape (g_param_spec_get_blurb (spec));
|
||||||
g_string_append_printf (json,
|
g_string_append_printf (json,
|
||||||
"%s"
|
"%s"
|
||||||
|
@ -435,6 +446,9 @@ _add_properties (GString * json, GString * other_types,
|
||||||
"\"readable\": %s,"
|
"\"readable\": %s,"
|
||||||
"\"writable\": %s,"
|
"\"writable\": %s,"
|
||||||
"\"blurb\": \"%s\","
|
"\"blurb\": \"%s\","
|
||||||
|
"\"controllable\": %s,"
|
||||||
|
"\"conditionally-available\": %s,"
|
||||||
|
"\"mutable\": %s,"
|
||||||
"\"type\": \"%s\"",
|
"\"type\": \"%s\"",
|
||||||
opened ? "," : "",
|
opened ? "," : "",
|
||||||
spec->name,
|
spec->name,
|
||||||
|
@ -442,7 +456,9 @@ _add_properties (GString * json, GString * other_types,
|
||||||
spec->flags & G_PARAM_CONSTRUCT ? "true" : "false",
|
spec->flags & G_PARAM_CONSTRUCT ? "true" : "false",
|
||||||
spec->flags & G_PARAM_READABLE ? "true" : "false",
|
spec->flags & G_PARAM_READABLE ? "true" : "false",
|
||||||
spec->flags & G_PARAM_WRITABLE ? "true" : "false", tmpstr,
|
spec->flags & G_PARAM_WRITABLE ? "true" : "false", tmpstr,
|
||||||
g_type_name (G_PARAM_SPEC_VALUE_TYPE (spec)));
|
spec->flags & GST_PARAM_CONTROLLABLE ? "true" : "false",
|
||||||
|
spec->flags & GST_PARAM_CONDITIONALLY_AVAILABLE ? "true" : "false",
|
||||||
|
mutable_str, g_type_name (G_PARAM_SPEC_VALUE_TYPE (spec)));
|
||||||
g_free (tmpstr);
|
g_free (tmpstr);
|
||||||
|
|
||||||
if (!g_hash_table_contains (seen_other_types,
|
if (!g_hash_table_contains (seen_other_types,
|
||||||
|
|
Loading…
Reference in a new issue