ulaw_test.c
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /*
  2. ** Copyright (C) 1999-2000 Erik de Castro Lopo <erikd@zip.com.au>
  3. **  
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU General Public License as published by
  6. ** the Free Software Foundation; either version 2 of the License, or
  7. ** (at your option) any later version.
  8. ** 
  9. ** This program is distributed in the hope that it will be useful,
  10. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ** GNU General Public License for more details.
  13. ** 
  14. ** You should have received a copy of the GNU General Public License
  15. ** along with this program; if not, write to the Free Software 
  16. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #include <stdio.h>
  19. #include <unistd.h>
  20. #include <sndfile.h>
  21. #define BUFFER_SIZE (65536)
  22. static unsigned char ulaw_encode (int sample) ;
  23. static int ulaw_decode (unsigned int ulawbyte) ;
  24. static short short_buffer [BUFFER_SIZE] ;
  25. static unsigned char ulaw_buffer [BUFFER_SIZE] ;
  26. int main (int argc, char *argv[])
  27. { SNDFILE *file ;
  28. SF_INFO sfinfo ;
  29. char *filename ;
  30. int k ;
  31. filename = "test.au" ;
  32. sfinfo.format      = SF_FORMAT_AU | SF_FORMAT_ULAW ;
  33. sfinfo.samplerate  = 44100 ;
  34. sfinfo.samples     = 123456789 ; /* Wrong length. Library should correct this on sf_close. */
  35. sfinfo.channels    = 1 ;
  36. sfinfo.pcmbitwidth = 16 ;
  37. if (! (file = sf_open_write (filename, &sfinfo)))
  38. { printf ("sf_open_write failed with error : ") ;
  39. sf_perror (NULL) ;
  40. exit (1) ;
  41. } ;
  42. /* Generate a file containing all possible 16 bit sample values 
  43. ** and write it to disk as ulaw encoded samples. 
  44. */
  45. for (k = 0 ; k < 0x10000 ; k++)
  46. short_buffer [k] = k & 0xFFFF ;
  47. sf_write_short (file, short_buffer, BUFFER_SIZE) ;
  48. sf_close (file) ;
  49. /* Now open that file and compare the ulaw encoded sample values 
  50. ** with what they should be.
  51. */
  52. if (! (file = sf_open_read (filename, &sfinfo)))
  53. { printf ("sf_open_write failed with error : ") ;
  54. sf_perror (NULL) ;
  55. exit (1) ;
  56. } ;
  57. if (sf_read_raw (file, ulaw_buffer, BUFFER_SIZE) != BUFFER_SIZE)
  58. { printf ("sf_read_raw : ") ;
  59. sf_perror (file) ;
  60. exit (1) ;
  61. } ;
  62. for (k = 0 ; k < 0x10000 ; k++)
  63. if (ulaw_encode (short_buffer [k]) != ulaw_buffer [k])
  64. { printf ("Encoder error : sample #%d (0x%02X should be 0x%02X)n", k, ulaw_buffer [k], ulaw_encode (short_buffer [k])) ;
  65. exit (1) ;
  66. } ;
  67. sf_close (file) ;
  68. printf ("    ulaw_test : encoder ... okn") ;
  69. /* Now generate a file containing all possible 8 bit encoded
  70. ** sample values and write it to disk as ulaw encoded samples. 
  71. */
  72. if (! (file = sf_open_write (filename, &sfinfo)))
  73. { printf ("sf_open_write failed with error : ") ;
  74. sf_perror (NULL) ;
  75. exit (1) ;
  76. } ;
  77. for (k = 0 ; k < 256 ; k++)
  78. ulaw_buffer [k] = k & 0xFF ;
  79. sf_write_raw (file, ulaw_buffer, 256) ;
  80. sf_close (file) ;
  81. /* Now open that file and compare the ulaw decoded sample values 
  82. ** with what they should be.
  83. */
  84. if (! (file = sf_open_read (filename, &sfinfo)))
  85. { printf ("sf_open_write failed with error : ") ;
  86. sf_perror (NULL) ;
  87. exit (1) ;
  88. } ;
  89. if (sf_read_short (file, short_buffer, 256) != 256)
  90. { printf ("sf_read_short : ") ;
  91. sf_perror (file) ;
  92. exit (1) ;
  93. } ;
  94. for (k = 0 ; k < 256 ; k++)
  95. if (short_buffer [k] != ulaw_decode (ulaw_buffer [k]))
  96. { printf ("Decoder error : sample #%d (0x%04X should be 0x%04X)n", k, short_buffer [k], ulaw_decode (ulaw_buffer [k])) ;
  97. exit (1) ;
  98. } ;
  99. sf_close (file) ;
  100. printf ("    ulaw_test : decoder ... okn") ;
  101. unlink (filename) ;
  102. return 0 ;
  103. } /* main */
  104. /*=================================================================================
  105. ** The following routines came from the sox-12.15 (Sound eXcahcnge) distribution.
  106. **
  107. ** This code is not compiled into libsndfile. It is only used to test the 
  108. ** libsndfile lookup tables for correctness.
  109. **
  110. ** I have included the original authors comments.
  111. */
  112. /*
  113. ** This routine converts from linear to ulaw.
  114. **
  115. ** Craig Reese: IDA/Supercomputing Research Center
  116. ** Joe Campbell: Department of Defense
  117. ** 29 September 1989
  118. **
  119. ** References:
  120. ** 1) CCITT Recommendation G.711  (very difficult to follow)
  121. ** 2) "A New Digital Technique for Implementation of Any
  122. **     Continuous PCM Companding Law," Villeret, Michel,
  123. **     et al. 1973 IEEE Int. Conf. on Communications, Vol 1,
  124. **     1973, pg. 11.12-11.17
  125. ** 3) MIL-STD-188-113,"Interoperability and Performance Standards
  126. **     for Analog-to_Digital Conversion Techniques,"
  127. **     17 February 1987
  128. **
  129. ** Input: Signed 16 bit linear sample
  130. ** Output: 8 bit ulaw sample
  131. */
  132. #define uBIAS 0x84   /* define the add-in bias for 16 bit samples */
  133. #define uCLIP 32635
  134. static 
  135. unsigned char ulaw_encode (int sample)
  136. { static int exp_lut[256] = {0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,
  137.                                4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
  138.                                5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  139.                                5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  140.                                6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  141.                                6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  142.                                6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  143.                                6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  144.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  145.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  146.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  147.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  148.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  149.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  150.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  151.                                7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7};
  152.     int sign, exponent, mantissa;
  153.     unsigned char ulawbyte;
  154.     /* Get the sample into sign-magnitude. */
  155.     sign = (sample >> 8) & 0x80 ; /* set aside the sign */
  156.     if ( sign != 0 ) 
  157. sample = -sample ; /* get magnitude */
  158.     if ( sample > uCLIP ) 
  159. sample = uCLIP ; /* clip the magnitude */
  160.     /* Convert from 16 bit linear to ulaw. */
  161.     sample = sample + uBIAS;
  162.     exponent = exp_lut[( sample >> 7 ) & 0xFF];
  163.     mantissa = ( sample >> ( exponent + 3 ) ) & 0x0F;
  164.     ulawbyte = ~ ( sign | ( exponent << 4 ) | mantissa );
  165. return ulawbyte;
  166. } /* ulaw_encode */
  167. /*
  168. ** This routine converts from ulaw to 16 bit linear.
  169. **
  170. ** Craig Reese: IDA/Supercomputing Research Center
  171. ** 29 September 1989
  172. **
  173. ** References:
  174. ** 1) CCITT Recommendation G.711  (very difficult to follow)
  175. ** 2) MIL-STD-188-113,"Interoperability and Performance Standards
  176. **     for Analog-to_Digital Conversion Techniques,"
  177. **     17 February 1987
  178. **
  179. ** Input: 8 bit ulaw sample
  180. ** Output: signed 16 bit linear sample
  181. */
  182. static 
  183. int ulaw_decode (unsigned int ulawbyte)
  184. { static int exp_lut[8] = { 0, 132, 396, 924, 1980, 4092, 8316, 16764 };
  185.     int sign, exponent, mantissa, sample;
  186.     ulawbyte = ~ ulawbyte ;
  187.     sign = (ulawbyte & 0x80) ;
  188.     exponent = (ulawbyte >> 4) & 0x07 ;
  189.     mantissa = ulawbyte & 0x0F ;
  190.     sample = exp_lut [exponent] + (mantissa << (exponent + 3)) ;
  191.     if ( sign != 0 ) 
  192. sample = -sample ;
  193.     return sample;
  194. } /* ulaw_decode */