hpInput.h 580 B

123456789101112131415161718192021222324252627
  1. /******************************************************************
  2. iLBC Speech Coder ANSI-C Source Code
  3. hpInput.h
  4. Copyright (c) 2001,
  5. Global IP Sound AB.
  6. All rights reserved.
  7. ******************************************************************/
  8. #ifndef __iLBC_HPINPUT_H
  9. #define __iLBC_HPINPUT_H
  10. void hpInput(
  11. float *In, /* (i) vector to filter */
  12. int len, /* (i) length of vector to filter */
  13. float *Out, /* (o) the resulting filtered vector */
  14. float *mem /* (i/o) the filter state */
  15. );
  16. #endif