weight_a.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 : weight_a.h
  11. * Purpose : Spectral expansion of LP coefficients. (order==10)
  12. * Description : a_exp[i] = a[i] * fac[i-1] ,i=1,10
  13. *
  14. *
  15. ********************************************************************************
  16. */
  17. #ifndef weight_a_h
  18. #define weight_a_h "$Id $"
  19. /*
  20. ********************************************************************************
  21. * INCLUDE FILES
  22. ********************************************************************************
  23. */
  24. #include "typedef.h"
  25. /*
  26. ********************************************************************************
  27. * DEFINITION OF DATA TYPES
  28. ********************************************************************************
  29. */
  30. /*
  31. ********************************************************************************
  32. * DECLARATION OF PROTOTYPES
  33. ********************************************************************************
  34. */
  35. void Weight_Ai (
  36. Word16 a[], /* (i) : a[m+1] LPC coefficients (m=10) */
  37. const Word16 fac[],/* (i) : Spectral expansion factors. */
  38. Word16 a_exp[] /* (o) : Spectral expanded LPC coefficients */
  39. );
  40. #endif