g_code.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 : g_code.h
  11. * Purpose : Compute the innovative codebook gain.
  12. *
  13. ********************************************************************************
  14. */
  15. #ifndef g_code_h
  16. #define g_code_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 G_code_ex ( /* out : Gain of innovation code. */
  34. Word16 xn[], /* in : target vector */
  35. Word16 y2[] /* in : filtered inovation vector */
  36. );
  37. #endif