speex_echo.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) Jean-Marc Valin
  2.    File: speex_echo.h
  3.    Redistribution and use in source and binary forms, with or without
  4.    modification, are permitted provided that the following conditions are
  5.    met:
  6.    1. Redistributions of source code must retain the above copyright notice,
  7.    this list of conditions and the following disclaimer.
  8.    2. Redistributions in binary form must reproduce the above copyright
  9.    notice, this list of conditions and the following disclaimer in the
  10.    documentation and/or other materials provided with the distribution.
  11.    3. The name of the author may not be used to endorse or promote products
  12.    derived from this software without specific prior written permission.
  13.    THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  14.    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  15.    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  16.    DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  17.    INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  18.    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  19.    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  20.    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  21.    STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  22.    ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  23.    POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #ifndef SPEEX_ECHO_H
  26. #define SPEEX_ECHO_H
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. struct drft_lookup;
  31. typedef struct SpeexEchoState {
  32.    int frame_size;           /**< Number of samples processed each time */
  33.    int window_size;
  34.    int M;
  35.    int cancel_count;
  36.    int adapted;
  37.    float adapt_rate;
  38.    float sum_adapt;
  39.    float Sey;
  40.    float Syy;
  41.    float See;
  42.    
  43.    float *x;
  44.    float *X;
  45.    float *d;
  46.    float *D;
  47.    float *y;
  48.    float *y2;
  49.    float *last_y;
  50.    float *Yps;
  51.    float *Y;
  52.    float *Y2;
  53.    float *E;
  54.    float *PHI;
  55.    float * restrict W;
  56.    float *power;
  57.    float *power_1;
  58.    float *grad;
  59.    float *Rf;
  60.    float *Yf;
  61.    float *Xf;
  62.    float *fratio;
  63.    float *regul;
  64.    struct drft_lookup *fft_lookup;
  65. } SpeexEchoState;
  66. /** Creates a new echo canceller state */
  67. SpeexEchoState *speex_echo_state_init(int frame_size, int filter_length);
  68. /** Destroys an echo canceller state */
  69. void speex_echo_state_destroy(SpeexEchoState *st);
  70. /** Performs echo cancellation a frame */
  71. void speex_echo_cancel(SpeexEchoState *st, short *ref, short *echo, short *out, float *Y);
  72. /** Reset the echo canceller state */
  73. void speex_echo_state_reset(SpeexEchoState *st);
  74. #ifdef __cplusplus
  75. }
  76. #endif
  77. #endif