wasapi: fix "device" property description

Fixes gstreamer/gst-plugins-bad#1620

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4651>
This commit is contained in:
Tim-Philipp Müller 2023-05-16 17:01:32 +01:00 committed by GStreamer Marge Bot
parent 5cf384a632
commit c80b0a589a
2 changed files with 2 additions and 2 deletions

View file

@ -123,7 +123,7 @@ gst_wasapi_sink_class_init (GstWasapiSinkClass * klass)
g_object_class_install_property (gobject_class,
PROP_DEVICE,
g_param_spec_string ("device", "Device",
"WASAPI playback device as a GUID string",
"WASAPI device endpoint ID as provided by IMMDevice::GetId",
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class,

View file

@ -122,7 +122,7 @@ gst_wasapi_src_class_init (GstWasapiSrcClass * klass)
g_object_class_install_property (gobject_class,
PROP_DEVICE,
g_param_spec_string ("device", "Device",
"WASAPI playback device as a GUID string",
"WASAPI device endpoint ID as provided by IMMDevice::GetId",
NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
g_object_class_install_property (gobject_class,