gmed_n.h 1.5 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 : gmed_n.h
  11. * Purpose : calculates N-point median.
  12. *
  13. ********************************************************************************
  14. */
  15. #ifndef gmed_n_h
  16. #define gmed_n_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 gmed_n ( /* o : index of the median value (0...N-1) */
  34. Word16 ind[], /* i : Past gain values */
  35. Word16 n /* i : The number of gains; this routine */
  36. /* is only valid for a odd number of gains */
  37. );
  38. #endif