summaryrefslogtreecommitdiff
path: root/ext/webrtcdsp/gstwebrtcdsp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ext/webrtcdsp/gstwebrtcdsp.cpp')
-rw-r--r--ext/webrtcdsp/gstwebrtcdsp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/webrtcdsp/gstwebrtcdsp.cpp b/ext/webrtcdsp/gstwebrtcdsp.cpp
index 9d7c8d2a3..4f097e0e5 100644
--- a/ext/webrtcdsp/gstwebrtcdsp.cpp
+++ b/ext/webrtcdsp/gstwebrtcdsp.cpp
@@ -40,13 +40,13 @@
* a single probe and DSP.
*
* The probe can only be used within the same top level GstPipeline.
- * Additonally, to simplify the code, the probe element must be created
+ * Additionally, to simplify the code, the probe element must be created
* before the DSP sink pad is activated. It does not need to be in any
* particular state and does not even need to be added to the pipeline yet.
*
* # Example launch line
*
- * As a conveniance, the echo canceller can be tested using an echo loop. In
+ * As a convenience, the echo canceller can be tested using an echo loop. In
* this configuration, one would expect a single echo to be heard.
*
* |[
@@ -279,7 +279,7 @@ G_DEFINE_TYPE (GstWebrtcDsp, gst_webrtc_dsp, GST_TYPE_AUDIO_FILTER);
static const gchar *
webrtc_error_to_string (gint err)
{
- const gchar *str = "unkown error";
+ const gchar *str = "unknown error";
switch (err) {
case webrtc::AudioProcessing::kNoError: