summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/speex/speex_echo.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libspeex/speex/speex_echo.h')
-rw-r--r--apps/codecs/libspeex/speex/speex_echo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libspeex/speex/speex_echo.h b/apps/codecs/libspeex/speex/speex_echo.h
index 5b5eccd1d5..6fcb0c00d7 100644
--- a/apps/codecs/libspeex/speex/speex_echo.h
+++ b/apps/codecs/libspeex/speex/speex_echo.h
@@ -74,10 +74,10 @@ SpeexEchoState *speex_echo_state_init(int frame_size, int filter_length);
74void speex_echo_state_destroy(SpeexEchoState *st); 74void speex_echo_state_destroy(SpeexEchoState *st);
75 75
76/** Performs echo cancellation a frame, based on the audio sent to the speaker (no delay is added 76/** Performs echo cancellation a frame, based on the audio sent to the speaker (no delay is added
77 * to playback ni this form) 77 * to playback in this form)
78 * 78 *
79 * @param st Echo canceller state 79 * @param st Echo canceller state
80 * @param rec signal from the microphone (near end + far end echo) 80 * @param rec Signal from the microphone (near end + far end echo)
81 * @param play Signal played to the speaker (received from far end) 81 * @param play Signal played to the speaker (received from far end)
82 * @param out Returns near-end signal with echo removed 82 * @param out Returns near-end signal with echo removed
83 */ 83 */
@@ -89,7 +89,7 @@ void speex_echo_cancel(SpeexEchoState *st, const spx_int16_t *rec, const spx_int
89/** Perform echo cancellation using internal playback buffer, which is delayed by two frames 89/** Perform echo cancellation using internal playback buffer, which is delayed by two frames
90 * to account for the delay introduced by most soundcards (but it could be off!) 90 * to account for the delay introduced by most soundcards (but it could be off!)
91 * @param st Echo canceller state 91 * @param st Echo canceller state
92 * @param rec signal from the microphone (near end + far end echo) 92 * @param rec Signal from the microphone (near end + far end echo)
93 * @param out Returns near-end signal with echo removed 93 * @param out Returns near-end signal with echo removed
94*/ 94*/
95void speex_echo_capture(SpeexEchoState *st, const spx_int16_t *rec, spx_int16_t *out); 95void speex_echo_capture(SpeexEchoState *st, const spx_int16_t *rec, spx_int16_t *out);