g711.c
上传用户:meifeng08
上传日期:2013-06-18
资源大小:5304k
文件大小:8k
源码类别:

语音压缩

开发平台:

C/C++

  1. /*
  2.  * This source code is a product of Sun Microsystems, Inc. and is provided
  3.  * for unrestricted use.  Users may copy or modify this source code without
  4.  * charge.
  5.  *
  6.  * SUN SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING
  7.  * THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  8.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  9.  *
  10.  * Sun source code is provided with no support and without any obligation on
  11.  * the part of Sun Microsystems, Inc. to assist in its use, correction,
  12.  * modification or enhancement.
  13.  *
  14.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  15.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE
  16.  * OR ANY PART THEREOF.
  17.  *
  18.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  19.  * or profits or other special, indirect and consequential damages, even if
  20.  * Sun has been advised of the possibility of such damages.
  21.  *
  22.  * Sun Microsystems, Inc.
  23.  * 2550 Garcia Avenue
  24.  * Mountain View, California  94043
  25.  */
  26. /*
  27.  * g711.c
  28.  *
  29.  * u-law, A-law and linear PCM conversions.
  30.  */
  31. #define SIGN_BIT (0x80) /* Sign bit for a A-law byte. */
  32. #define QUANT_MASK (0xf) /* Quantization field mask. */
  33. #define NSEGS (8) /* Number of A-law segments. */
  34. #define SEG_SHIFT (4) /* Left shift for segment number. */
  35. #define SEG_MASK (0x70) /* Segment field mask. */
  36. static short seg_end[8] = {0xFF, 0x1FF, 0x3FF, 0x7FF,
  37.     0xFFF, 0x1FFF, 0x3FFF, 0x7FFF};
  38. /* copy from CCITT G.711 specifications */
  39. unsigned char _u2a[128] = { /* u- to A-law conversions */
  40. 1, 1, 2, 2, 3, 3, 4, 4,
  41. 5, 5, 6, 6, 7, 7, 8, 8,
  42. 9, 10, 11, 12, 13, 14, 15, 16,
  43. 17, 18, 19, 20, 21, 22, 23, 24,
  44. 25, 27, 29, 31, 33, 34, 35, 36,
  45. 37, 38, 39, 40, 41, 42, 43, 44,
  46. 46, 48, 49, 50, 51, 52, 53, 54,
  47. 55, 56, 57, 58, 59, 60, 61, 62,
  48. 64, 65, 66, 67, 68, 69, 70, 71,
  49. 72, 73, 74, 75, 76, 77, 78, 79,
  50. 81, 82, 83, 84, 85, 86, 87, 88,
  51. 89, 90, 91, 92, 93, 94, 95, 96,
  52. 97, 98, 99, 100, 101, 102, 103, 104,
  53. 105, 106, 107, 108, 109, 110, 111, 112,
  54. 113, 114, 115, 116, 117, 118, 119, 120,
  55. 121, 122, 123, 124, 125, 126, 127, 128};
  56. unsigned char _a2u[128] = { /* A- to u-law conversions */
  57. 1, 3, 5, 7, 9, 11, 13, 15,
  58. 16, 17, 18, 19, 20, 21, 22, 23,
  59. 24, 25, 26, 27, 28, 29, 30, 31,
  60. 32, 32, 33, 33, 34, 34, 35, 35,
  61. 36, 37, 38, 39, 40, 41, 42, 43,
  62. 44, 45, 46, 47, 48, 48, 49, 49,
  63. 50, 51, 52, 53, 54, 55, 56, 57,
  64. 58, 59, 60, 61, 62, 63, 64, 64,
  65. 65, 66, 67, 68, 69, 70, 71, 72,
  66. 73, 74, 75, 76, 77, 78, 79, 79,
  67. 80, 81, 82, 83, 84, 85, 86, 87,
  68. 88, 89, 90, 91, 92, 93, 94, 95,
  69. 96, 97, 98, 99, 100, 101, 102, 103,
  70. 104, 105, 106, 107, 108, 109, 110, 111,
  71. 112, 113, 114, 115, 116, 117, 118, 119,
  72. 120, 121, 122, 123, 124, 125, 126, 127};
  73. static int
  74. search(
  75. int val,
  76. short *table,
  77. int size)
  78. {
  79. int i;
  80. for (i = 0; i < size; i++) {
  81. if (val <= *table++)
  82. return (i);
  83. }
  84. return (size);
  85. }
  86. /*
  87.  * linear2alaw() - Convert a 16-bit linear PCM value to 8-bit A-law
  88.  *
  89.  * linear2alaw() accepts an 16-bit integer and encodes it as A-law data.
  90.  *
  91.  * Linear Input Code Compressed Code
  92.  * ------------------------ ---------------
  93.  * 0000000wxyza 000wxyz
  94.  * 0000001wxyza 001wxyz
  95.  * 000001wxyzab 010wxyz
  96.  * 00001wxyzabc 011wxyz
  97.  * 0001wxyzabcd 100wxyz
  98.  * 001wxyzabcde 101wxyz
  99.  * 01wxyzabcdef 110wxyz
  100.  * 1wxyzabcdefg 111wxyz
  101.  *
  102.  * For further information see John C. Bellamy's Digital Telephony, 1982,
  103.  * John Wiley & Sons, pps 98-111 and 472-476.
  104.  */
  105. unsigned char
  106. linear2alaw(
  107. int pcm_val) /* 2's complement (16-bit range) */
  108. {
  109. int mask;
  110. int seg;
  111. unsigned char aval;
  112. if (pcm_val >= 0) {
  113. mask = 0xD5; /* sign (7th) bit = 1 */
  114. } else {
  115. mask = 0x55; /* sign bit = 0 */
  116. pcm_val = -pcm_val - 8;
  117. }
  118. /* Convert the scaled magnitude to segment number. */
  119. seg = search(pcm_val, seg_end, 8);
  120. /* Combine the sign, segment, and quantization bits. */
  121. if (seg >= 8) /* out of range, return maximum value. */
  122. return (0x7F ^ mask);
  123. else {
  124. aval = seg << SEG_SHIFT;
  125. if (seg < 2)
  126. aval |= (pcm_val >> 4) & QUANT_MASK;
  127. else
  128. aval |= (pcm_val >> (seg + 3)) & QUANT_MASK;
  129. return (aval ^ mask);
  130. }
  131. }
  132. /*
  133.  * alaw2linear() - Convert an A-law value to 16-bit linear PCM
  134.  *
  135.  */
  136. int
  137. alaw2linear(
  138. unsigned char a_val)
  139. {
  140. int t;
  141. int seg;
  142. a_val ^= 0x55;
  143. t = (a_val & QUANT_MASK) << 4;
  144. seg = ((unsigned)a_val & SEG_MASK) >> SEG_SHIFT;
  145. switch (seg) {
  146. case 0:
  147. t += 8;
  148. break;
  149. case 1:
  150. t += 0x108;
  151. break;
  152. default:
  153. t += 0x108;
  154. t <<= seg - 1;
  155. }
  156. return ((a_val & SIGN_BIT) ? t : -t);
  157. }
  158. #define BIAS (0x84) /* Bias for linear code. */
  159. /*
  160.  * linear2ulaw() - Convert a linear PCM value to u-law
  161.  *
  162.  * In order to simplify the encoding process, the original linear magnitude
  163.  * is biased by adding 33 which shifts the encoding range from (0 - 8158) to
  164.  * (33 - 8191). The result can be seen in the following encoding table:
  165.  *
  166.  * Biased Linear Input Code Compressed Code
  167.  * ------------------------ ---------------
  168.  * 00000001wxyza 000wxyz
  169.  * 0000001wxyzab 001wxyz
  170.  * 000001wxyzabc 010wxyz
  171.  * 00001wxyzabcd 011wxyz
  172.  * 0001wxyzabcde 100wxyz
  173.  * 001wxyzabcdef 101wxyz
  174.  * 01wxyzabcdefg 110wxyz
  175.  * 1wxyzabcdefgh 111wxyz
  176.  *
  177.  * Each biased linear code has a leading 1 which identifies the segment
  178.  * number. The value of the segment number is equal to 7 minus the number
  179.  * of leading 0's. The quantization interval is directly available as the
  180.  * four bits wxyz.  * The trailing bits (a - h) are ignored.
  181.  *
  182.  * Ordinarily the complement of the resulting code word is used for
  183.  * transmission, and so the code word is complemented before it is returned.
  184.  *
  185.  * For further information see John C. Bellamy's Digital Telephony, 1982,
  186.  * John Wiley & Sons, pps 98-111 and 472-476.
  187.  */
  188. unsigned char
  189. linear2ulaw(
  190. int pcm_val) /* 2's complement (16-bit range) */
  191. {
  192. int mask;
  193. int seg;
  194. unsigned char uval;
  195. /* Get the sign and the magnitude of the value. */
  196. if (pcm_val < 0) {
  197. pcm_val = BIAS - pcm_val;
  198. mask = 0x7F;
  199. } else {
  200. pcm_val += BIAS;
  201. mask = 0xFF;
  202. }
  203. /* Convert the scaled magnitude to segment number. */
  204. seg = search(pcm_val, seg_end, 8);
  205. /*
  206.  * Combine the sign, segment, quantization bits;
  207.  * and complement the code word.
  208.  */
  209. if (seg >= 8) /* out of range, return maximum value. */
  210. return (0x7F ^ mask);
  211. else {
  212. uval = (seg << 4) | ((pcm_val >> (seg + 3)) & 0xF);
  213. return (uval ^ mask);
  214. }
  215. }
  216. /*
  217.  * ulaw2linear() - Convert a u-law value to 16-bit linear PCM
  218.  *
  219.  * First, a biased linear code is derived from the code word. An unbiased
  220.  * output can then be obtained by subtracting 33 from the biased code.
  221.  *
  222.  * Note that this function expects to be passed the complement of the
  223.  * original code word. This is in keeping with ISDN conventions.
  224.  */
  225. int
  226. ulaw2linear(
  227. unsigned char u_val)
  228. {
  229. int t;
  230. /* Complement to obtain normal u-law value. */
  231. u_val = ~u_val;
  232. /*
  233.  * Extract and bias the quantization bits. Then
  234.  * shift up by the segment number and subtract out the bias.
  235.  */
  236. t = ((u_val & QUANT_MASK) << 3) + BIAS;
  237. t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT;
  238. return ((u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS));
  239. }
  240. /* A-law to u-law conversion */
  241. unsigned char
  242. alaw2ulaw(
  243. unsigned char aval)
  244. {
  245. aval &= 0xff;
  246. return ((aval & 0x80) ? (0xFF ^ _a2u[aval ^ 0xD5]) :
  247.     (0x7F ^ _a2u[aval ^ 0x55]));
  248. }
  249. /* u-law to A-law conversion */
  250. unsigned char
  251. ulaw2alaw(
  252. unsigned char uval)
  253. {
  254. uval &= 0xff;
  255. return ((uval & 0x80) ? (0xD5 ^ (_u2a[0xFF ^ uval] - 1)) :
  256.     (0x55 ^ (_u2a[0x7F ^ uval] - 1)));
  257. }