Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speexdsp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2007-10-09 15:08:15 +0400
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2007-10-09 15:08:15 +0400
commit78564cfb054d78019a0d8831d37f86d495784052 (patch)
tree6c75ad4b10ec82979301c9e0654d030b6cdb0a37 /include/speex
parentc896eafc04bf35f2991ea2c9e806793344dae3b0 (diff)
Minor documentation fixes from Alexander Chemeris
git-svn-id: http://svn.xiph.org/trunk/speex@13943 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'include/speex')
-rw-r--r--include/speex/speex_echo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/speex/speex_echo.h b/include/speex/speex_echo.h
index f2440ba..77a7846 100644
--- a/include/speex/speex_echo.h
+++ b/include/speex/speex_echo.h
@@ -77,7 +77,7 @@ void speex_echo_state_destroy(SpeexEchoState *st);
* to playback in this form)
*
* @param st Echo canceller state
- * @param rec signal from the microphone (near end + far end echo)
+ * @param rec Signal from the microphone (near end + far end echo)
* @param play Signal played to the speaker (received from far end)
* @param out Returns near-end signal with echo removed
*/
@@ -89,7 +89,7 @@ void speex_echo_cancel(SpeexEchoState *st, const spx_int16_t *rec, const spx_int
/** Perform echo cancellation using internal playback buffer, which is delayed by two frames
* to account for the delay introduced by most soundcards (but it could be off!)
* @param st Echo canceller state
- * @param rec signal from the microphone (near end + far end echo)
+ * @param rec Signal from the microphone (near end + far end echo)
* @param out Returns near-end signal with echo removed
*/
void speex_echo_capture(SpeexEchoState *st, const spx_int16_t *rec, spx_int16_t *out);