headerless_test.c
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:5k
源码类别:

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 1999-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  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 "sfconfig.h"
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <math.h>
  23. #if HAVE_UNISTD_H
  24. #include <unistd.h>
  25. #endif
  26. #include <sndfile.h>
  27. #include "utils.h"
  28. #define BUFFER_SIZE (2000)
  29. static void old_test (void) ;
  30. static void headerless_test (const char * filename, int format, int expected) ;
  31. int
  32. main (void)
  33. {
  34. old_test () ;
  35. headerless_test ("raw.vox", SF_FORMAT_VOX_ADPCM, SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM) ;
  36. headerless_test ("raw.gsm", SF_FORMAT_GSM610, SF_FORMAT_RAW | SF_FORMAT_GSM610) ;
  37. headerless_test ("raw.snd", SF_FORMAT_ULAW, SF_FORMAT_RAW | SF_FORMAT_ULAW) ;
  38. headerless_test ("raw.au" , SF_FORMAT_ULAW, SF_FORMAT_RAW | SF_FORMAT_ULAW) ;
  39. return 0 ;
  40. } /* main */
  41. static void
  42. headerless_test (const char * filename, int format, int expected)
  43. { static short buffer [BUFFER_SIZE] ;
  44. SNDFILE *file ;
  45. SF_INFO sfinfo ;
  46. int k ;
  47. format &= SF_FORMAT_SUBMASK ;
  48. print_test_name (__func__, filename) ;
  49. for (k = 0 ; k < BUFFER_SIZE ; k++)
  50. buffer [k] = k ;
  51. sfinfo.samplerate = 8000 ;
  52. sfinfo.frames = 0 ;
  53. sfinfo.channels = 1 ;
  54. sfinfo.format = SF_FORMAT_RAW | format ;
  55. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;
  56. if ((k = sf_write_short (file, buffer, BUFFER_SIZE)) != BUFFER_SIZE)
  57. { printf ("Line %d: sf_write_short failed with short write (%d => %d).n", __LINE__, BUFFER_SIZE, k) ;
  58. fflush (stdout) ;
  59. puts (sf_strerror (file)) ;
  60. exit (1) ;
  61. } ;
  62. sf_close (file) ;
  63. memset (buffer, 0, sizeof (buffer)) ;
  64. /* We should be able to detect these so clear sfinfo. */
  65. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  66. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_TRUE, __LINE__) ;
  67. if (sfinfo.format != expected)
  68. { printf ("Line %d: Returned format incorrect (0x%08X => 0x%08X).n", __LINE__, expected, sfinfo.format) ;
  69. exit (1) ;
  70. } ;
  71. if (sfinfo.frames < BUFFER_SIZE)
  72. { printf ("Line %d: Incorrect number of.frames in file. (%d => %ld)n", __LINE__, BUFFER_SIZE, SF_COUNT_TO_LONG (sfinfo.frames)) ;
  73. exit (1) ;
  74. } ;
  75. if (sfinfo.channels != 1)
  76. { printf ("Line %d: Incorrect number of channels in file.n", __LINE__) ;
  77. exit (1) ;
  78. } ;
  79. check_log_buffer_or_die (file, __LINE__) ;
  80. sf_close (file) ;
  81. printf ("okn") ;
  82. unlink (filename) ;
  83. } /* headerless_test */
  84. static void
  85. old_test (void)
  86. { static short buffer [BUFFER_SIZE] ;
  87. SNDFILE *file ;
  88. SF_INFO sfinfo ;
  89. int k, filetype ;
  90. const char *filename = "headerless.wav" ;
  91. print_test_name (__func__, "") ;
  92. for (k = 0 ; k < BUFFER_SIZE ; k++)
  93. buffer [k] = k ;
  94. filetype = SF_FORMAT_WAV | SF_FORMAT_PCM_16 ;
  95. sfinfo.samplerate = 32000 ;
  96. sfinfo.frames = 123456789 ; /* Wrong length. Library should correct this on sf_close. */
  97. sfinfo.channels = 1 ;
  98. sfinfo.format = filetype ;
  99. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;
  100. if ((k = sf_write_short (file, buffer, BUFFER_SIZE)) != BUFFER_SIZE)
  101. { printf ("Line %d: sf_write_short failed with short write (%d => %d).n", __LINE__, BUFFER_SIZE, k) ;
  102. fflush (stdout) ;
  103. puts (sf_strerror (file)) ;
  104. exit (1) ;
  105. } ;
  106. sf_close (file) ;
  107. memset (buffer, 0, sizeof (buffer)) ;
  108. /* Read as RAW but get the bit width and endian-ness correct. */
  109. sfinfo.format = filetype = SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_PCM_16 ;
  110. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_TRUE, __LINE__) ;
  111. if (sfinfo.format != filetype)
  112. { printf ("Line %d: Returned format incorrect (0x%08X => 0x%08X).n", __LINE__, filetype, sfinfo.format) ;
  113. exit (1) ;
  114. } ;
  115. if (sfinfo.frames < BUFFER_SIZE)
  116. { printf ("Line %d: Incorrect number of.frames in file. (%d => %ld)n", __LINE__, BUFFER_SIZE, SF_COUNT_TO_LONG (sfinfo.frames)) ;
  117. exit (1) ;
  118. } ;
  119. if (sfinfo.channels != 1)
  120. { printf ("Line %d: Incorrect number of channels in file.n", __LINE__) ;
  121. exit (1) ;
  122. } ;
  123. check_log_buffer_or_die (file, __LINE__) ;
  124. if ((k = sf_read_short (file, buffer, BUFFER_SIZE)) != BUFFER_SIZE)
  125. { printf ("Line %d: short read (%d).n", __LINE__, k) ;
  126. exit (1) ;
  127. } ;
  128. for (k = 0 ; k < BUFFER_SIZE - 22 ; k++)
  129. if (buffer [k + 22] != k)
  130. { printf ("Line %d: Incorrect sample (#%d : 0x%x => 0x%x).n", __LINE__, k, k, buffer [k]) ;
  131. exit (1) ;
  132. } ;
  133. sf_close (file) ;
  134. printf ("okn") ;
  135. unlink (filename) ;
  136. } /* old_test */