a_refl.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 : a_refl.h
  11. * Purpose : Convert from direct form coefficients to
  12. * reflection coefficients
  13. *
  14. ********************************************************************************
  15. */
  16. #ifndef a_refl_h
  17. #define a_refl_h "$Id $"
  18. /*
  19. ********************************************************************************
  20. * INCLUDE FILES
  21. ********************************************************************************
  22. */
  23. #include "typedef.h"
  24. /*
  25. ********************************************************************************
  26. * DEFINITION OF DATA TYPES
  27. ********************************************************************************
  28. */
  29. /*
  30. ********************************************************************************
  31. * DECLARATION OF PROTOTYPES
  32. ********************************************************************************
  33. */
  34. /*************************************************************************
  35. *
  36. * FUNCTION: A_Refl()
  37. *
  38. * PURPOSE: Convert from direct form coefficients to reflection coefficients
  39. *
  40. * DESCRIPTION:
  41. * Directform coeffs in Q12 are converted to
  42. * reflection coefficients Q15
  43. *
  44. *************************************************************************/
  45. void A_Refl(
  46. Word16 a[], /* i : Directform coefficients */
  47. Word16 refl[] /* o : Reflection coefficients */
  48. );
  49. #endif