lsf.h 574 B

123456789101112131415161718192021222324252627282930
  1. /******************************************************************
  2. iLBC Speech Coder ANSI-C Source Code
  3. lsf.h
  4. Copyright (c) 2001,
  5. Global IP Sound AB.
  6. All rights reserved.
  7. ******************************************************************/
  8. #ifndef __iLBC_LSF_H
  9. #define __iLBC_LSF_H
  10. void a2lsf(
  11. float *freq,/* (o) lsf coefficients */
  12. float *a /* (i) lpc coefficients */
  13. );
  14. void lsf2a(
  15. float *a_coef, /* (o) lpc coefficients */
  16. float *freq /* (i) lsf coefficients */
  17. );
  18. #endif