home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Sound / SoX / Source / libst.h < prev    next >
C/C++ Source or Header  |  1999-07-18  |  1KB  |  34 lines

  1. /* libst.h - include file for portable sound tools library
  2. **
  3. ** Copyright (C) 1989 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. /* These do not round data.  Caller must round appropriately. */
  14.  
  15. #ifdef FAST_ULAW_CONVERSION
  16. extern int ulaw_exp_table[256];
  17. extern unsigned char ulaw_comp_table[16384];
  18. #define st_ulaw_to_linear(ulawbyte) ulaw_exp_table[ulawbyte]
  19. #define st_linear_to_ulaw(linearword) ulaw_comp_table[(linearword / 4) & 0x3fff]
  20. #else
  21. unsigned char st_linear_to_ulaw( /* int sample */ );
  22. int st_ulaw_to_linear( /* unsigned char ulawbyte */ );
  23. #endif
  24.  
  25. #ifdef FAST_ALAW_CONVERSION
  26. extern int Alaw_exp_table[256];
  27. extern unsigned char Alaw_comp_table[16384];
  28. #define st_Alaw_to_linear(Alawbyte) Alaw_exp_table[Alawbyte]
  29. #define st_linear_to_Alaw(linearword) Alaw_comp_table[(linearword / 4) & 0x3fff]
  30. #else
  31. unsigned char st_linear_to_Alaw( /* int sample */ );
  32. int st_Alaw_to_linear( /* unsigned char ulawbyte */ );
  33. #endif
  34.