diff options
author | Wim Taymans <wtaymans@redhat.com> | 2018-09-28 17:44:14 +0200 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2018-09-28 17:44:14 +0200 |
commit | 940c8645d3f31e29a052b65671b88854cef047de (patch) | |
tree | f552b8a1ba2b59c5745d574872a4d7154ae70ef8 /spa/plugins/audiotestsrc | |
parent | 2ebc65728c161d2208000ef83d082731b38cc212 (diff) |
remove property flags
Remove the property flags, we will add info about properties
with the param interface.
Diffstat (limited to 'spa/plugins/audiotestsrc')
-rw-r--r-- | spa/plugins/audiotestsrc/audiotestsrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spa/plugins/audiotestsrc/audiotestsrc.c b/spa/plugins/audiotestsrc/audiotestsrc.c index 9213dfe7..29a02995 100644 --- a/spa/plugins/audiotestsrc/audiotestsrc.c +++ b/spa/plugins/audiotestsrc/audiotestsrc.c @@ -174,7 +174,7 @@ static int impl_node_enum_params(struct spa_node *node, SPA_PROP_INFO_name, &SPA_POD_Stringc("Select the waveform"), SPA_PROP_INFO_type, &SPA_POD_Int(p->wave), 0); - spa_pod_builder_prop(&b, SPA_PROP_INFO_labels, SPA_POD_PROP_FLAG_INFO); + spa_pod_builder_prop(&b, SPA_PROP_INFO_labels, 0); spa_pod_builder_push_struct(&b); spa_pod_builder_int(&b, WAVE_SINE); spa_pod_builder_string(&b, "Sine wave"); |