ulaw.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 1999 - 2005, Digium, Inc.
  5. *
  6. * Mark Spencer <markster@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*! \file
  19. *
  20. * \brief u-Law to Signed linear conversion
  21. *
  22. */
  23. #include "asterisk.h"
  24. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  25. #include "asterisk/ulaw.h"
  26. #define ZEROTRAP /*!< turn on the trap as per the MIL-STD */
  27. #define BIAS 0x84 /*!< define the add-in bias for 16 bit samples */
  28. #define CLIP 32635
  29. unsigned char __ast_lin2mu[16384];
  30. short __ast_mulaw[256];
  31. static unsigned char linear2ulaw(short sample)
  32. {
  33. static int exp_lut[256] = {
  34. 0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,
  35. 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
  36. 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  37. 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  38. 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  39. 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  40. 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  41. 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  42. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  43. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  44. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  45. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  46. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  47. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  48. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  49. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7 };
  50. int sign, exponent, mantissa;
  51. unsigned char ulawbyte;
  52. /* Get the sample into sign-magnitude. */
  53. sign = (sample >> 8) & 0x80; /* set aside the sign */
  54. if (sign != 0)
  55. sample = -sample; /* get magnitude */
  56. if (sample > CLIP)
  57. sample = CLIP; /* clip the magnitude */
  58. /* Convert from 16 bit linear to ulaw. */
  59. sample = sample + BIAS;
  60. exponent = exp_lut[(sample >> 7) & 0xFF];
  61. mantissa = (sample >> (exponent + 3)) & 0x0F;
  62. ulawbyte = ~(sign | (exponent << 4) | mantissa);
  63. #ifdef ZEROTRAP
  64. if (ulawbyte == 0)
  65. ulawbyte = 0x02; /* optional CCITT trap */
  66. #endif
  67. return ulawbyte;
  68. }
  69. /*!
  70. * \brief Set up mu-law conversion table
  71. */
  72. void ast_ulaw_init(void)
  73. {
  74. int i;
  75. for(i = 0;i < 256;i++) {
  76. short mu,e,f,y;
  77. static short etab[]={0,132,396,924,1980,4092,8316,16764};
  78. mu = 255-i;
  79. e = (mu & 0x70)/16;
  80. f = mu & 0x0f;
  81. y = f * (1 << (e + 3));
  82. y += etab[e];
  83. if (mu & 0x80) y = -y;
  84. __ast_mulaw[i] = y;
  85. }
  86. /* set up the reverse (mu-law) conversion table */
  87. for(i = -32768; i < 32768; i++) {
  88. __ast_lin2mu[((unsigned short)i) >> 2] = linear2ulaw(i);
  89. }
  90. }