residu.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. ********************************************************************************
  3. *
  4. * GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
  5. * R99 Version 3.3.0
  6. * REL-4 Version 4.1.0
  7. *
  8. ********************************************************************************
  9. *
  10. * File : residu.h
  11. * Purpose : Computes the LP residual.
  12. * Description : The LP residual is computed by filtering the input
  13. * : speech through the LP inverse filter A(z).
  14. *
  15. *
  16. ********************************************************************************
  17. */
  18. #ifndef residu_h
  19. #define residu_h "$Id $"
  20. /*
  21. ********************************************************************************
  22. * INCLUDE FILES
  23. ********************************************************************************
  24. */
  25. #include "typedef.h"
  26. /*
  27. ********************************************************************************
  28. * DEFINITION OF DATA TYPES
  29. ********************************************************************************
  30. */
  31. /*
  32. ********************************************************************************
  33. * DECLARATION OF PROTOTYPES
  34. ********************************************************************************
  35. */
  36. void Residu (
  37. Word16 a[], /* (i) : prediction coefficients */
  38. Word16 x[], /* (i) : speech signal */
  39. Word16 y[], /* (o) : residual signal */
  40. Word16 lg /* (i) : size of filtering */
  41. );
  42. #endif