dec_lag6.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 : dec_lag6.h
  11. * Purpose : Decoding of fractional pitch lag with 1/6 resolution.
  12. *
  13. ********************************************************************************
  14. */
  15. #ifndef dec_lag6_h
  16. #define dec_lag6_h "$Id $"
  17. /*
  18. ********************************************************************************
  19. * INCLUDE FILES
  20. ********************************************************************************
  21. */
  22. #include "typedef.h"
  23. /*
  24. ********************************************************************************
  25. * DECLARATION OF PROTOTYPES
  26. ********************************************************************************
  27. */
  28. void Dec_lag6 (
  29. Word16 index, /* input : received pitch index */
  30. Word16 pit_min, /* input : minimum pitch lag */
  31. Word16 pit_max, /* input : maximum pitch lag */
  32. Word16 i_subfr, /* input : subframe flag */
  33. Word16 *T0, /* in/out: integer part of pitch lag */
  34. Word16 *T0_frac /* output: fractional part of pitch lag */
  35. );
  36. #endif