sqrt_l.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 : sqrt_l.h
  11. * Purpose : Computes sqrt(L_x), where L_x is positive.
  12. * : If L_x is negative or zero, the result is
  13. * : 0 (3fff ffff).
  14. *
  15. ********************************************************************************
  16. */
  17. #ifndef sqrt_l_h
  18. #define sqrt_l_h "$Id $"
  19. /*
  20. ********************************************************************************
  21. * INCLUDE FILES
  22. ********************************************************************************
  23. */
  24. #include "typedef.h"
  25. /*
  26. ********************************************************************************
  27. * DECLARATION OF PROTOTYPES
  28. ********************************************************************************
  29. */
  30. Word32 sqrt_l_exp (/* o : output value, Q31 */
  31. Word32 L_x, /* i : input value, Q31 */
  32. Word16 *exp /* o : right shift to be applied to result, Q0 */
  33. );
  34. #endif