webrtcdsp: fix doc string of echo-cancel property
authorGeorge Kiagiadakis <george.kiagiadakis@collabora.com>
Fri, 7 Apr 2017 14:13:52 +0000 (17:13 +0300)
committerGeorge Kiagiadakis <george.kiagiadakis@collabora.com>
Tue, 2 May 2017 12:59:31 +0000 (15:59 +0300)
If the echo probe element is not found, initialization actually fails
instead of silently working with echo-cancel disabled.

https://bugzilla.gnome.org/show_bug.cgi?id=780976

ext/webrtcdsp/gstwebrtcdsp.cpp

index 57e4e90..3a6a48b 100644 (file)
@@ -903,8 +903,7 @@ gst_webrtc_dsp_class_init (GstWebrtcDspClass * klass)
   g_object_class_install_property (gobject_class,
       PROP_ECHO_CANCEL,
       g_param_spec_boolean ("echo-cancel", "Echo Cancel",
-          "Enable or disable echo canceller, note that it will be disabled if "
-          "no webrtcechoprobe has been found", TRUE,
+          "Enable or disable echo canceller", TRUE,
           (GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS |
               G_PARAM_CONSTRUCT)));