mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
gdp: dataprotocol, lfocontrolsource: fix enum value name in enums that are public API
So run-time bindings can introspect the names correctly (we abuse this field as description field only in elements, not for public API (where the description belongs into the gtk-doc chunk). https://bugzilla.gnome.org/show_bug.cgi?id=629946
This commit is contained in:
parent
a7078b74fb
commit
dbbbe59577
1 changed files with 2 additions and 2 deletions
|
@ -294,8 +294,8 @@ gst_dp_version_get_type (void)
|
|||
{
|
||||
static GType gst_dp_version_type = 0;
|
||||
static const GEnumValue gst_dp_version[] = {
|
||||
{GST_DP_VERSION_0_2, "GDP Version 0.2", "0.2"},
|
||||
{GST_DP_VERSION_1_0, "GDP Version 1.0", "1.0"},
|
||||
{GST_DP_VERSION_0_2, "GST_DP_VERSION_0_2", "0.2"},
|
||||
{GST_DP_VERSION_1_0, "GST_DP_VERSION_1_0", "1.0"},
|
||||
{0, NULL, NULL},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue