ol_ltp.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 : ol_ltp.h
  11. * Purpose : Compute the open loop pitch lag.
  12. *
  13. ********************************************************************************
  14. */
  15. #ifndef ol_ltp_h
  16. #define ol_ltp_h "$Id $"
  17. /*
  18. ********************************************************************************
  19. * INCLUDE FILES
  20. ********************************************************************************
  21. */
  22. #include "typedef.h"
  23. #include "mode.h"
  24. #include "p_ol_wgh.h"
  25. /*
  26. ********************************************************************************
  27. * DECLARATION OF PROTOTYPES
  28. ********************************************************************************
  29. */
  30. int ol_ltp(
  31. pitchOLWghtState *st, /* i/o : State struct */
  32. vadState *vadSt, /* i/o : VAD state struct */
  33. enum Mode mode, /* i : coder mode */
  34. Word16 wsp[], /* i : signal used to compute the OL pitch, Q0 */
  35. /* uses signal[-pit_max] to signal[-1] */
  36. Word16 *T_op, /* o : open loop pitch lag, Q0 */
  37. Word16 old_lags[], /* i : history with old stored Cl lags */
  38. Word16 ol_gain_flg[], /* i : OL gain flag */
  39. Word16 idx, /* i : index */
  40. Flag dtx /* i : dtx flag; use dtx=1, do not use dtx=0 */
  41. );
  42. #endif