lsp_az.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 : lsp_az.h
  11. * Purpose : Converts from the line spectral pairs (LSP) to
  12. * : LP coefficients, for a 10th order filter.
  13. *
  14. ********************************************************************************
  15. */
  16. #ifndef lsp_az_h
  17. #define lsp_az_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. void Lsp_Az (
  35. Word16 lsp[], /* (i) : line spectral frequencies */
  36. Word16 a[] /* (o) : predictor coefficients (order = 10) */
  37. );
  38. #endif