enc_lag6.h 1.6 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 : enc_lag6.h
  11. * Purpose : Encoding of fractional pitch lag with 1/6 resolution.
  12. *
  13. ********************************************************************************
  14. */
  15. #ifndef enc_lag6_h
  16. #define enc_lag6_h "$Id $"
  17. /*
  18. ********************************************************************************
  19. * INCLUDE FILES
  20. ********************************************************************************
  21. */
  22. #include "typedef.h"
  23. /*
  24. ********************************************************************************
  25. * DEFINITION OF DATA TYPES
  26. ********************************************************************************
  27. */
  28. /*
  29. ********************************************************************************
  30. * DECLARATION OF PROTOTYPES
  31. ********************************************************************************
  32. */
  33. Word16 Enc_lag6 ( /* o : Return index of encoding */
  34. Word16 T0, /* i : Pitch delay */
  35. Word16 T0_frac, /* i : Fractional pitch delay */
  36. Word16 T0_min, /* i : minimum of search range */
  37. Word16 delta_flag /* i : Flag for 1st (or 3rd) subframe */
  38. );
  39. #endif