pred_lt.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 : pred_lt.h
  11. * Purpose : Compute the result of long term prediction.
  12. *
  13. *
  14. ********************************************************************************
  15. */
  16. #ifndef pred_lt_h
  17. #define pred_lt_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 Pred_lt_3or6 (
  35. Word16 exc[], /* in/out: excitation buffer */
  36. Word16 T0, /* input : integer pitch lag */
  37. Word16 frac, /* input : fraction of lag */
  38. Word16 L_subfr, /* input : subframe size */
  39. Word16 flag3 /* input : if set, upsampling rate = 3 (6 otherwise) */
  40. );
  41. #endif