Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing typo #4274

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pjmedia/include/pjmedia/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@


/**
* Speex Accoustic Echo Cancellation (AEC).
* Speex Acoustic Echo Cancellation (AEC).
* By default is enabled.
*/
#ifndef PJMEDIA_HAS_SPEEX_AEC
Expand Down Expand Up @@ -735,7 +735,7 @@


/**
* WebRtc Accoustic Echo Cancellation (AEC).
* WebRtc Acoustic Echo Cancellation (AEC).
* By default is disabled.
*/
#ifndef PJMEDIA_HAS_WEBRTC_AEC
Expand Down
10 changes: 5 additions & 5 deletions pjmedia/include/pjmedia/echo.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@


/**
* @defgroup PJMEDIA_Echo_Cancel Accoustic Echo Cancellation API
* @defgroup PJMEDIA_Echo_Cancel Acoustic Echo Cancellation API
* @ingroup PJMEDIA_PORT
* @brief Echo Cancellation API.
* @{
*
* This section describes API to perform echo cancellation to audio signal.
* There may be multiple echo canceller implementation in PJMEDIA, ranging
* from simple echo suppressor to a full Accoustic Echo Canceller/AEC. By
* from simple echo suppressor to a full Acoustic Echo Canceller/AEC. By
* using this API, application should be able to use which EC backend to
* use base on the requirement and capability of the platform.
*/
Expand Down Expand Up @@ -71,7 +71,7 @@ typedef enum pjmedia_echo_flag
/**
* If PJMEDIA_ECHO_SIMPLE flag is specified during echo canceller
* creation, then a simple echo suppressor will be used instead of
* an accoustic echo cancellation. You can only choose one backend.
* an acoustic echo cancellation. You can only choose one backend.
*/
PJMEDIA_ECHO_SIMPLE = 2,

Expand Down Expand Up @@ -268,7 +268,7 @@ PJ_DECL(void) pjmedia_echo_stat_default(pjmedia_echo_stat *stat);
* is not known.
* @param options Options. If PJMEDIA_ECHO_SIMPLE is specified,
* then a simple echo suppressor implementation
* will be used instead of an accoustic echo
* will be used instead of an acoustic echo
* cancellation.
* See #pjmedia_echo_flag for other options.
* @param p_echo Pointer to receive the Echo Canceller state.
Expand Down Expand Up @@ -296,7 +296,7 @@ PJ_DECL(pj_status_t) pjmedia_echo_create(pj_pool_t *pool,
* is not known.
* @param options Options. If PJMEDIA_ECHO_SIMPLE is specified,
* then a simple echo suppressor implementation
* will be used instead of an accoustic echo
* will be used instead of an acoustic echo
* cancellation.
* See #pjmedia_echo_flag for other options.
* @param p_echo Pointer to receive the Echo Canceller state.
Expand Down
2 changes: 1 addition & 1 deletion pjmedia/include/pjmedia/echo_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

/**
* @file echo_port.h
* @brief AEC (Accoustic Echo Cancellation) media port.
* @brief AEC (Acoustic Echo Cancellation) media port.
*/
#include <pjmedia/port.h>

Expand Down
2 changes: 1 addition & 1 deletion pjmedia/src/pjmedia/audiodev.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static struct cap_info
DEFINE_CAP("meter-out", "Output meter"),
DEFINE_CAP("route-in", "Input routing"),
DEFINE_CAP("route-out", "Output routing"),
DEFINE_CAP("aec", "Accoustic echo cancellation"),
DEFINE_CAP("aec", "Acoustic echo cancellation"),
DEFINE_CAP("aec-tail", "Tail length setting for AEC"),
DEFINE_CAP("vad", "Voice activity detection"),
DEFINE_CAP("cng", "Comfort noise generation"),
Expand Down
2 changes: 1 addition & 1 deletion pjsip-apps/build/get-footprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
['HAS_PJNATH_ICE', 'PJNATH ICE'],

# PJMEDIA
['HAS_PJMEDIA_EC', 'PJMEDIA accoustic echo cancellation'],
['HAS_PJMEDIA_EC', 'PJMEDIA acoustic echo cancellation'],
['HAS_PJMEDIA_SND_DEV', 'PJMEDIA sound device backend (platform specific)'],
['HAS_PJMEDIA_SILENCE_DET', 'PJMEDIA Adaptive silence detector'],
['HAS_PJMEDIA', 'PJMEDIA endpoint'],
Expand Down
Loading