hpInput.h 587 B

1234567891011121314151617181920212223
  1. /******************************************************************
  2. iLBC Speech Coder ANSI-C Source Code
  3. hpInput.h
  4. Copyright (C) The Internet Society (2004).
  5. All Rights Reserved.
  6. ******************************************************************/
  7. #ifndef __iLBC_HPINPUT_H
  8. #define __iLBC_HPINPUT_H
  9. void hpInput(
  10. float *In, /* (i) vector to filter */
  11. int len, /* (i) length of vector to filter */
  12. float *Out, /* (o) the resulting filtered vector */
  13. float *mem /* (i/o) the filter state */
  14. );
  15. #endif