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

Audio

开发平台:

Unix_Linux

  1. [+ AutoGen5 template c +]
  2. /*
  3. ** Copyright (C) 1999-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  4. **
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU General Public License as published by
  7. ** the Free Software Foundation; either version 2 of the License, or
  8. ** (at your option) any later version.
  9. **
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ** GNU General Public License for more details.
  14. **
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program; if not, write to the Free Software
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. #include "sfconfig.h"
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #if HAVE_UNISTD_H
  24. #include <unistd.h>
  25. #endif
  26. #include <math.h>
  27. #if (defined (WIN32) || defined (_WIN32))
  28. #include <fcntl.h>
  29. static int truncate (const char *filename, int ignored) ;
  30. #endif
  31. #include <sndfile.h>
  32. #include "utils.h"
  33. #include "generate.h"
  34. #define SAMPLE_RATE 11025
  35. #define DATA_LENGTH (1<<12)
  36. #define SILLY_WRITE_COUNT (234)
  37. [+ FOR data_type
  38. +]static void pcm_test_[+ (get "type_name") +] (const char *str, int format, int long_file_okz) ;
  39. [+ ENDFOR data_type
  40. +]
  41. static void empty_file_test (const char *filename, int format) ;
  42. typedef union
  43. { double d [DATA_LENGTH] ;
  44. float f [DATA_LENGTH] ;
  45. int i [DATA_LENGTH] ;
  46. short s [DATA_LENGTH] ;
  47. char c [DATA_LENGTH] ;
  48. } BUFFER ;
  49. static BUFFER orig_data ;
  50. static BUFFER test_data ;
  51. int
  52. main (int argc, char **argv)
  53. { int do_all = 0 ;
  54. int test_count = 0 ;
  55. count_open_files () ;
  56. if (argc != 2)
  57. { printf ("Usage : %s <test>n", argv [0]) ;
  58. printf ("    Where <test> is one of the following:n") ;
  59. printf ("           wav   - test WAV file functions (little endian)n") ;
  60. printf ("           aiff  - test AIFF file functions (big endian)n") ;
  61. printf ("           au    - test AU file functionsn") ;
  62. printf ("           avr   - test AVR file functionsn") ;
  63. printf ("           caf   - test CAF file functionsn") ;
  64. printf ("           raw   - test RAW header-less PCM file functionsn") ;
  65. printf ("           paf   - test PAF file functionsn") ;
  66. printf ("           svx   - test 8SVX/16SV file functionsn") ;
  67. printf ("           nist  - test NIST Sphere file functionsn") ;
  68. printf ("           ircam - test IRCAM file functionsn") ;
  69. printf ("           voc   - Create Voice file functionsn") ;
  70. printf ("           w64   - Sonic Foundry's W64 file functionsn") ;
  71. printf ("           flac  - test FLAC file functionsn") ;
  72. printf ("           mpc2k - test MPC 2000 file functionsn") ;
  73. printf ("           rf64  - test RF64 file functionsn") ;
  74. printf ("           all   - perform all testsn") ;
  75. exit (1) ;
  76. } ;
  77. do_all = !strcmp (argv [1], "all") ;
  78. if (do_all || ! strcmp (argv [1], "wav"))
  79. { pcm_test_char ("char.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_U8, SF_FALSE) ;
  80. pcm_test_short ("short.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_16, SF_FALSE) ;
  81. pcm_test_24bit ("24bit.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_24, SF_FALSE) ;
  82. pcm_test_int ("int.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_32, SF_FALSE) ;
  83. pcm_test_char ("char.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_PCM_U8, SF_FALSE) ;
  84. pcm_test_short ("short.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_PCM_16, SF_FALSE) ;
  85. pcm_test_24bit ("24bit.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_PCM_24, SF_FALSE) ;
  86. pcm_test_int ("int.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_PCM_32, SF_FALSE) ;
  87. pcm_test_24bit ("24bit.wavex" , SF_FORMAT_WAVEX | SF_FORMAT_PCM_24, SF_FALSE) ;
  88. pcm_test_int ("int.wavex" , SF_FORMAT_WAVEX | SF_FORMAT_PCM_32, SF_FALSE) ;
  89. /* Lite remove start */
  90. pcm_test_float ("float.wav" , SF_FORMAT_WAV | SF_FORMAT_FLOAT , SF_FALSE) ;
  91. pcm_test_double ("double.wav" , SF_FORMAT_WAV | SF_FORMAT_DOUBLE, SF_FALSE) ;
  92. pcm_test_float ("float.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_FLOAT , SF_FALSE) ;
  93. pcm_test_double ("double.rifx" , SF_ENDIAN_BIG | SF_FORMAT_WAV | SF_FORMAT_DOUBLE, SF_FALSE) ;
  94. pcm_test_float ("float.wavex" , SF_FORMAT_WAVEX | SF_FORMAT_FLOAT , SF_FALSE) ;
  95. pcm_test_double ("double.wavex" , SF_FORMAT_WAVEX | SF_FORMAT_DOUBLE, SF_FALSE) ;
  96. /* Lite remove end */
  97. empty_file_test ("empty_char.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_U8) ;
  98. empty_file_test ("empty_short.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16) ;
  99. empty_file_test ("empty_float.wav", SF_FORMAT_WAV | SF_FORMAT_FLOAT) ;
  100. test_count++ ;
  101. } ;
  102. if (do_all || ! strcmp (argv [1], "aiff"))
  103. { pcm_test_char ("char_u8.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_U8, SF_FALSE) ;
  104. pcm_test_char ("char_s8.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_S8, SF_FALSE) ;
  105. pcm_test_short ("short.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_16, SF_FALSE) ;
  106. pcm_test_24bit ("24bit.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_24, SF_FALSE) ;
  107. pcm_test_int ("int.aiff" , SF_FORMAT_AIFF | SF_FORMAT_PCM_32, SF_FALSE) ;
  108. pcm_test_short ("short_sowt.aifc" , SF_ENDIAN_LITTLE | SF_FORMAT_AIFF | SF_FORMAT_PCM_16, SF_FALSE) ;
  109. pcm_test_24bit ("24bit_sowt.aifc" , SF_ENDIAN_LITTLE | SF_FORMAT_AIFF | SF_FORMAT_PCM_24, SF_FALSE) ;
  110. pcm_test_int ("int_sowt.aifc" , SF_ENDIAN_LITTLE | SF_FORMAT_AIFF | SF_FORMAT_PCM_32, SF_FALSE) ;
  111. pcm_test_short ("short_twos.aifc" , SF_ENDIAN_BIG | SF_FORMAT_AIFF | SF_FORMAT_PCM_16, SF_FALSE) ;
  112. pcm_test_24bit ("24bit_twos.aifc" , SF_ENDIAN_BIG | SF_FORMAT_AIFF | SF_FORMAT_PCM_24, SF_FALSE) ;
  113. pcm_test_int ("int_twos.aifc" , SF_ENDIAN_BIG | SF_FORMAT_AIFF | SF_FORMAT_PCM_32, SF_FALSE) ;
  114. /* Lite remove start */
  115. pcm_test_short ("dwvw16.aifc", SF_FORMAT_AIFF | SF_FORMAT_DWVW_16, SF_TRUE) ;
  116. pcm_test_24bit ("dwvw24.aifc", SF_FORMAT_AIFF | SF_FORMAT_DWVW_24, SF_TRUE) ;
  117. pcm_test_float ("float.aifc" , SF_FORMAT_AIFF | SF_FORMAT_FLOAT , SF_FALSE) ;
  118. pcm_test_double ("double.aifc" , SF_FORMAT_AIFF | SF_FORMAT_DOUBLE, SF_FALSE) ;
  119. /* Lite remove end */
  120. empty_file_test ("empty_char.aiff", SF_FORMAT_AIFF | SF_FORMAT_PCM_U8) ;
  121. empty_file_test ("empty_short.aiff", SF_FORMAT_AIFF | SF_FORMAT_PCM_16) ;
  122. empty_file_test ("empty_float.aiff", SF_FORMAT_AIFF | SF_FORMAT_FLOAT) ;
  123. test_count++ ;
  124. } ;
  125. if (do_all || ! strcmp (argv [1], "au"))
  126. { pcm_test_char ("char.au" , SF_FORMAT_AU | SF_FORMAT_PCM_S8, SF_FALSE) ;
  127. pcm_test_short ("short.au" , SF_FORMAT_AU | SF_FORMAT_PCM_16, SF_FALSE) ;
  128. pcm_test_24bit ("24bit.au" , SF_FORMAT_AU | SF_FORMAT_PCM_24, SF_FALSE) ;
  129. pcm_test_int ("int.au" , SF_FORMAT_AU | SF_FORMAT_PCM_32, SF_FALSE) ;
  130. /* Lite remove start */
  131. pcm_test_float ("float.au" , SF_FORMAT_AU | SF_FORMAT_FLOAT , SF_FALSE) ;
  132. pcm_test_double ("double.au", SF_FORMAT_AU | SF_FORMAT_DOUBLE, SF_FALSE) ;
  133. /* Lite remove end */
  134. pcm_test_char ("char_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_PCM_S8, SF_FALSE) ;
  135. pcm_test_short ("short_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_PCM_16, SF_FALSE) ;
  136. pcm_test_24bit ("24bit_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_PCM_24, SF_FALSE) ;
  137. pcm_test_int ("int_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_PCM_32, SF_FALSE) ;
  138. /* Lite remove start */
  139. pcm_test_float ("float_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_FLOAT , SF_FALSE) ;
  140. pcm_test_double ("double_le.au" , SF_ENDIAN_LITTLE | SF_FORMAT_AU | SF_FORMAT_DOUBLE, SF_FALSE) ;
  141. /* Lite remove end */
  142. test_count++ ;
  143. } ;
  144. if (do_all || ! strcmp (argv [1], "caf"))
  145. { pcm_test_char ("char.caf" , SF_FORMAT_CAF | SF_FORMAT_PCM_S8, SF_FALSE) ;
  146. pcm_test_short ("short.caf" , SF_FORMAT_CAF | SF_FORMAT_PCM_16, SF_FALSE) ;
  147. pcm_test_24bit ("24bit.caf" , SF_FORMAT_CAF | SF_FORMAT_PCM_24, SF_FALSE) ;
  148. pcm_test_int ("int.caf" , SF_FORMAT_CAF | SF_FORMAT_PCM_32, SF_FALSE) ;
  149. /* Lite remove start */
  150. pcm_test_float ("float.caf" , SF_FORMAT_CAF | SF_FORMAT_FLOAT , SF_FALSE) ;
  151. pcm_test_double ("double.caf" , SF_FORMAT_CAF | SF_FORMAT_DOUBLE, SF_FALSE) ;
  152. /* Lite remove end */
  153. pcm_test_short ("short_le.caf" , SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_PCM_16, SF_FALSE) ;
  154. pcm_test_24bit ("24bit_le.caf" , SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_PCM_24, SF_FALSE) ;
  155. pcm_test_int ("int_le.caf" , SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_PCM_32, SF_FALSE) ;
  156. /* Lite remove start */
  157. pcm_test_float ("float_le.caf" , SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_FLOAT , SF_FALSE) ;
  158. pcm_test_double ("double_le.caf", SF_ENDIAN_LITTLE | SF_FORMAT_CAF | SF_FORMAT_DOUBLE, SF_FALSE) ;
  159. /* Lite remove end */
  160. test_count++ ;
  161. } ;
  162. if (do_all || ! strcmp (argv [1], "raw"))
  163. { pcm_test_char ("char_s8.raw" , SF_FORMAT_RAW | SF_FORMAT_PCM_S8, SF_FALSE) ;
  164. pcm_test_char ("char_u8.raw" , SF_FORMAT_RAW | SF_FORMAT_PCM_U8, SF_FALSE) ;
  165. pcm_test_short ("short_le.raw" , SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_PCM_16, SF_FALSE) ;
  166. pcm_test_short ("short_be.raw" , SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_PCM_16, SF_FALSE) ;
  167. pcm_test_24bit ("24bit_le.raw" , SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_PCM_24, SF_FALSE) ;
  168. pcm_test_24bit ("24bit_be.raw" , SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_PCM_24, SF_FALSE) ;
  169. pcm_test_int ("int_le.raw" , SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_PCM_32, SF_FALSE) ;
  170. pcm_test_int ("int_be.raw" , SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_PCM_32, SF_FALSE) ;
  171. /* Lite remove start */
  172. pcm_test_float ("float_le.raw" , SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_FLOAT , SF_FALSE) ;
  173. pcm_test_float ("float_be.raw" , SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_FLOAT , SF_FALSE) ;
  174. pcm_test_double ("double_le.raw", SF_ENDIAN_LITTLE | SF_FORMAT_RAW | SF_FORMAT_DOUBLE, SF_FALSE) ;
  175. pcm_test_double ("double_be.raw", SF_ENDIAN_BIG | SF_FORMAT_RAW | SF_FORMAT_DOUBLE, SF_FALSE) ;
  176. /* Lite remove end */
  177. test_count++ ;
  178. } ;
  179. /* Lite remove start */
  180. if (do_all || ! strcmp (argv [1], "paf"))
  181. { pcm_test_char ("char_le.paf", SF_ENDIAN_LITTLE | SF_FORMAT_PAF | SF_FORMAT_PCM_S8, SF_FALSE) ;
  182. pcm_test_char ("char_be.paf", SF_ENDIAN_BIG | SF_FORMAT_PAF | SF_FORMAT_PCM_S8, SF_FALSE) ;
  183. pcm_test_short ("short_le.paf", SF_ENDIAN_LITTLE | SF_FORMAT_PAF | SF_FORMAT_PCM_16, SF_FALSE) ;
  184. pcm_test_short ("short_be.paf", SF_ENDIAN_BIG | SF_FORMAT_PAF | SF_FORMAT_PCM_16, SF_FALSE) ;
  185. pcm_test_24bit ("24bit_le.paf", SF_ENDIAN_LITTLE | SF_FORMAT_PAF | SF_FORMAT_PCM_24, SF_TRUE) ;
  186. pcm_test_24bit ("24bit_be.paf", SF_ENDIAN_BIG | SF_FORMAT_PAF | SF_FORMAT_PCM_24, SF_TRUE) ;
  187. test_count++ ;
  188. } ;
  189. if (do_all || ! strcmp (argv [1], "svx"))
  190. { pcm_test_char ("char.svx" , SF_FORMAT_SVX | SF_FORMAT_PCM_S8, SF_FALSE) ;
  191. pcm_test_short ("short.svx", SF_FORMAT_SVX | SF_FORMAT_PCM_16, SF_FALSE) ;
  192. empty_file_test ("empty_char.svx", SF_FORMAT_SVX | SF_FORMAT_PCM_S8) ;
  193. empty_file_test ("empty_short.svx", SF_FORMAT_SVX | SF_FORMAT_PCM_16) ;
  194. test_count++ ;
  195. } ;
  196. if (do_all || ! strcmp (argv [1], "nist"))
  197. { pcm_test_short ("short_le.nist", SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_PCM_16, SF_FALSE) ;
  198. pcm_test_short ("short_be.nist", SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_PCM_16, SF_FALSE) ;
  199. pcm_test_24bit ("24bit_le.nist", SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_PCM_24, SF_FALSE) ;
  200. pcm_test_24bit ("24bit_be.nist", SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_PCM_24, SF_FALSE) ;
  201. pcm_test_int ("int_le.nist" , SF_ENDIAN_LITTLE | SF_FORMAT_NIST | SF_FORMAT_PCM_32, SF_FALSE) ;
  202. pcm_test_int  ("int_be.nist" , SF_ENDIAN_BIG | SF_FORMAT_NIST | SF_FORMAT_PCM_32, SF_FALSE) ;
  203. test_count++ ;
  204. } ;
  205. if (do_all || ! strcmp (argv [1], "ircam"))
  206. { pcm_test_short ("short_be.ircam" , SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_PCM_16, SF_FALSE) ;
  207. pcm_test_short ("short_le.ircam" , SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_PCM_16, SF_FALSE) ;
  208. pcm_test_int ("int_be.ircam" , SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_PCM_32, SF_FALSE) ;
  209. pcm_test_int  ("int_le.ircam" , SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_PCM_32, SF_FALSE) ;
  210. pcm_test_float ("float_be.ircam" , SF_ENDIAN_BIG | SF_FORMAT_IRCAM | SF_FORMAT_FLOAT , SF_FALSE) ;
  211. pcm_test_float ("float_le.ircam" , SF_ENDIAN_LITTLE | SF_FORMAT_IRCAM | SF_FORMAT_FLOAT , SF_FALSE) ;
  212. test_count++ ;
  213. } ;
  214. if (do_all || ! strcmp (argv [1], "voc"))
  215. { pcm_test_char  ("char.voc" , SF_FORMAT_VOC | SF_FORMAT_PCM_U8, SF_FALSE) ;
  216. pcm_test_short ("short.voc", SF_FORMAT_VOC | SF_FORMAT_PCM_16, SF_FALSE) ;
  217. test_count++ ;
  218. } ;
  219. if (do_all || ! strcmp (argv [1], "mat4"))
  220. { pcm_test_short ("short_be.mat4" , SF_ENDIAN_BIG | SF_FORMAT_MAT4 | SF_FORMAT_PCM_16, SF_FALSE) ;
  221. pcm_test_short ("short_le.mat4" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT4 | SF_FORMAT_PCM_16, SF_FALSE) ;
  222. pcm_test_int ("int_be.mat4" , SF_ENDIAN_BIG | SF_FORMAT_MAT4 | SF_FORMAT_PCM_32, SF_FALSE) ;
  223. pcm_test_int  ("int_le.mat4" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT4 | SF_FORMAT_PCM_32, SF_FALSE) ;
  224. pcm_test_float ("float_be.mat4" , SF_ENDIAN_BIG | SF_FORMAT_MAT4 | SF_FORMAT_FLOAT , SF_FALSE) ;
  225. pcm_test_float ("float_le.mat4" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT4 | SF_FORMAT_FLOAT , SF_FALSE) ;
  226. pcm_test_double ("double_be.mat4" , SF_ENDIAN_BIG | SF_FORMAT_MAT4 | SF_FORMAT_DOUBLE, SF_FALSE) ;
  227. pcm_test_double ("double_le.mat4" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT4 | SF_FORMAT_DOUBLE, SF_FALSE) ;
  228. empty_file_test ("empty_short.mat4", SF_FORMAT_MAT4 | SF_FORMAT_PCM_16) ;
  229. empty_file_test ("empty_float.mat4", SF_FORMAT_MAT4 | SF_FORMAT_FLOAT) ;
  230. test_count++ ;
  231. } ;
  232. if (do_all || ! strcmp (argv [1], "mat5"))
  233. { pcm_test_char  ("char_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_PCM_U8, SF_FALSE) ;
  234. pcm_test_char  ("char_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_PCM_U8, SF_FALSE) ;
  235. pcm_test_short ("short_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_PCM_16, SF_FALSE) ;
  236. pcm_test_short ("short_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_PCM_16, SF_FALSE) ;
  237. pcm_test_int ("int_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_PCM_32, SF_FALSE) ;
  238. pcm_test_int  ("int_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_PCM_32, SF_FALSE) ;
  239. pcm_test_float ("float_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_FLOAT , SF_FALSE) ;
  240. pcm_test_float ("float_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_FLOAT , SF_FALSE) ;
  241. pcm_test_double ("double_be.mat5" , SF_ENDIAN_BIG | SF_FORMAT_MAT5 | SF_FORMAT_DOUBLE, SF_FALSE) ;
  242. pcm_test_double ("double_le.mat5" , SF_ENDIAN_LITTLE | SF_FORMAT_MAT5 | SF_FORMAT_DOUBLE, SF_FALSE) ;
  243. increment_open_file_count () ;
  244. empty_file_test ("empty_char.mat5", SF_FORMAT_MAT5 | SF_FORMAT_PCM_U8) ;
  245. empty_file_test ("empty_short.mat5", SF_FORMAT_MAT5 | SF_FORMAT_PCM_16) ;
  246. empty_file_test ("empty_float.mat5", SF_FORMAT_MAT5 | SF_FORMAT_FLOAT) ;
  247. test_count++ ;
  248. } ;
  249. if (do_all || ! strcmp (argv [1], "pvf"))
  250. { pcm_test_char  ("char.pvf" , SF_FORMAT_PVF | SF_FORMAT_PCM_S8, SF_FALSE) ;
  251. pcm_test_short ("short.pvf", SF_FORMAT_PVF | SF_FORMAT_PCM_16, SF_FALSE) ;
  252. pcm_test_int ("int.pvf" , SF_FORMAT_PVF | SF_FORMAT_PCM_32, SF_FALSE) ;
  253. test_count++ ;
  254. } ;
  255. if (do_all || ! strcmp (argv [1], "htk"))
  256. { pcm_test_short ("short.htk", SF_FORMAT_HTK | SF_FORMAT_PCM_16, SF_FALSE) ;
  257. test_count++ ;
  258. } ;
  259. if (do_all || ! strcmp (argv [1], "mpc2k"))
  260. { pcm_test_short ("short.mpc", SF_FORMAT_MPC2K | SF_FORMAT_PCM_16, SF_FALSE) ;
  261. test_count++ ;
  262. } ;
  263. if (do_all || ! strcmp (argv [1], "avr"))
  264. { pcm_test_char  ("char_u8.avr" , SF_FORMAT_AVR | SF_FORMAT_PCM_U8, SF_FALSE) ;
  265. pcm_test_char  ("char_s8.avr" , SF_FORMAT_AVR | SF_FORMAT_PCM_S8, SF_FALSE) ;
  266. pcm_test_short ("short.avr" , SF_FORMAT_AVR | SF_FORMAT_PCM_16, SF_FALSE) ;
  267. test_count++ ;
  268. } ;
  269. /* Lite remove end */
  270. if (do_all || ! strcmp (argv [1], "w64"))
  271. { pcm_test_char ("char.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_U8, SF_FALSE) ;
  272. pcm_test_short ("short.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_16, SF_FALSE) ;
  273. pcm_test_24bit ("24bit.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_24, SF_FALSE) ;
  274. pcm_test_int ("int.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_32, SF_FALSE) ;
  275. /* Lite remove start */
  276. pcm_test_float ("float.w64" , SF_FORMAT_W64 | SF_FORMAT_FLOAT , SF_FALSE) ;
  277. pcm_test_double ("double.w64" , SF_FORMAT_W64 | SF_FORMAT_DOUBLE, SF_FALSE) ;
  278. /* Lite remove end */
  279. empty_file_test ("empty_char.w64", SF_FORMAT_W64 | SF_FORMAT_PCM_U8) ;
  280. empty_file_test ("empty_short.w64", SF_FORMAT_W64 | SF_FORMAT_PCM_16) ;
  281. empty_file_test ("empty_float.w64", SF_FORMAT_W64 | SF_FORMAT_FLOAT) ;
  282. test_count++ ;
  283. } ;
  284. if (do_all || ! strcmp (argv [1], "sds"))
  285. { pcm_test_char ("char.sds" , SF_FORMAT_SDS | SF_FORMAT_PCM_S8, SF_TRUE) ;
  286. pcm_test_short ("short.sds" , SF_FORMAT_SDS | SF_FORMAT_PCM_16, SF_TRUE) ;
  287. pcm_test_24bit ("24bit.sds" , SF_FORMAT_SDS | SF_FORMAT_PCM_24, SF_TRUE) ;
  288. empty_file_test ("empty_char.sds", SF_FORMAT_SDS | SF_FORMAT_PCM_S8) ;
  289. empty_file_test ("empty_short.sds", SF_FORMAT_SDS | SF_FORMAT_PCM_16) ;
  290. test_count++ ;
  291. } ;
  292. if (do_all || ! strcmp (argv [1], "sd2"))
  293. { pcm_test_char ("char.sd2" , SF_FORMAT_SD2 | SF_FORMAT_PCM_S8, SF_TRUE) ;
  294. pcm_test_short ("short.sd2" , SF_FORMAT_SD2 | SF_FORMAT_PCM_16, SF_TRUE) ;
  295. pcm_test_24bit ("24bit.sd2" , SF_FORMAT_SD2 | SF_FORMAT_PCM_24, SF_TRUE) ;
  296. test_count++ ;
  297. } ;
  298. if (do_all || ! strcmp (argv [1], "flac"))
  299. { if (HAVE_EXTERNAL_LIBS)
  300. { pcm_test_char ("char.flac" , SF_FORMAT_FLAC | SF_FORMAT_PCM_S8, SF_TRUE) ;
  301. pcm_test_short ("short.flac" , SF_FORMAT_FLAC | SF_FORMAT_PCM_16, SF_TRUE) ;
  302. pcm_test_24bit ("24bit.flac" , SF_FORMAT_FLAC | SF_FORMAT_PCM_24, SF_TRUE) ;
  303. }
  304. else
  305. puts ("    No FLAC tests because FLAC support was not compiled in.") ;
  306. test_count++ ;
  307. } ;
  308. if (do_all || ! strcmp (argv [1], "rf64"))
  309. { pcm_test_char ("char.rf64" , SF_FORMAT_RF64 | SF_FORMAT_PCM_U8, SF_FALSE) ;
  310. pcm_test_short ("short.rf64" , SF_FORMAT_RF64 | SF_FORMAT_PCM_16, SF_FALSE) ;
  311. pcm_test_24bit ("24bit.rf64" , SF_FORMAT_RF64 | SF_FORMAT_PCM_24, SF_FALSE) ;
  312. pcm_test_int ("int.rf64" , SF_FORMAT_RF64 | SF_FORMAT_PCM_32, SF_FALSE) ;
  313. /* Lite remove start */
  314. pcm_test_float ("float.rf64" , SF_FORMAT_RF64 | SF_FORMAT_FLOAT , SF_FALSE) ;
  315. pcm_test_double ("double.rf64" , SF_FORMAT_RF64 | SF_FORMAT_DOUBLE, SF_FALSE) ;
  316. empty_file_test ("empty_char.rf64", SF_FORMAT_RF64 | SF_FORMAT_PCM_U8) ;
  317. empty_file_test ("empty_short.rf64", SF_FORMAT_RF64 | SF_FORMAT_PCM_16) ;
  318. empty_file_test ("empty_float.rf64", SF_FORMAT_RF64 | SF_FORMAT_FLOAT) ;
  319. /* Lite remove end */
  320. test_count++ ;
  321. } ;
  322. if (test_count == 0)
  323. { printf ("Mono : ************************************n") ;
  324. printf ("Mono : *  No '%s' test defined.n", argv [1]) ;
  325. printf ("Mono : ************************************n") ;
  326. return 1 ;
  327. } ;
  328. /* Only open file descriptors should be stdin, stdout and stderr. */
  329. check_open_file_count_or_die (__LINE__) ;
  330. return 0 ;
  331. } /* main */
  332. /*============================================================================================
  333. ** Helper functions and macros.
  334. */
  335. static void create_short_file (const char *filename) ;
  336. #define CHAR_ERROR(x,y) (abs ((x) - (y)) > 255)
  337. #define INT_ERROR(x,y) (((x) - (y)) != 0)
  338. #define TRIBYTE_ERROR(x,y) (abs ((x) - (y)) > 255)
  339. #define FLOAT_ERROR(x,y) (fabs ((x) - (y)) > 1e-5)
  340. #define CONVERT_DATA(k,len,new,orig)
  341. { for ((k) = 0 ; (k) < (len) ; (k) ++)
  342. (new) [k] = (orig) [k] ;
  343. }
  344. [+ FOR data_type
  345. +]
  346. /*======================================================================================
  347. */
  348. static void mono_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd) ;
  349. static void stereo_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd) ;
  350. static void mono_rdwr_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd) ;
  351. static void new_rdwr_[+ (get "type_name") +]_test (const char *filename, int format, int allow_fd) ;
  352. static void multi_seek_test (const char * filename, int format) ;
  353. static void write_seek_extend_test (const char * filename, int format) ;
  354. static void
  355. pcm_test_[+ (get "type_name") +] (const char *filename, int format, int long_file_ok)
  356. { SF_INFO sfinfo ;
  357. [+ (get "data_type") +] *orig, *test ;
  358. int k, items, allow_fd ;
  359. /* Sd2 files cannot be opened from an existing file descriptor. */
  360. allow_fd = ((format & SF_FORMAT_TYPEMASK) == SF_FORMAT_SD2) ? SF_FALSE : SF_TRUE ;
  361. print_test_name ("pcm_test_[+ (get "type_name") +]", filename) ;
  362. sfinfo.samplerate = 44100 ;
  363. sfinfo.frames = SILLY_WRITE_COUNT ; /* Wrong length. Library should correct this on sf_close. */
  364. sfinfo.channels = 1 ;
  365. sfinfo.format = format ;
  366. gen_windowed_sine_double (orig_data.d, DATA_LENGTH, [+ (get "max_val") +]) ;
  367. orig = orig_data.[+ (get "data_field") +] ;
  368. test = test_data.[+ (get "data_field") +] ;
  369. /* Make this a macro so gdb steps over it in one go. */
  370. CONVERT_DATA (k, DATA_LENGTH, orig, orig_data.d) ;
  371. items = DATA_LENGTH ;
  372. /* Some test broken out here. */
  373. mono_[+ (get "type_name") +]_test (filename, format, long_file_ok, allow_fd) ;
  374. /* Sub format DWVW does not allow seeking. */
  375. if ((format & SF_FORMAT_SUBMASK) == SF_FORMAT_DWVW_16 ||
  376. (format & SF_FORMAT_SUBMASK) == SF_FORMAT_DWVW_24)
  377. { unlink (filename) ;
  378. printf ("no seek : okn") ;
  379. return ;
  380. } ;
  381. if ((format & SF_FORMAT_TYPEMASK) != SF_FORMAT_FLAC)
  382. mono_rdwr_[+ (get "type_name") +]_test (filename, format, long_file_ok, allow_fd) ;
  383. /* If the format doesn't support stereo we're done. */
  384. sfinfo.channels = 2 ;
  385. if (sf_format_check (&sfinfo) == 0)
  386. { unlink (filename) ;
  387. puts ("no stereo : ok") ;
  388. return ;
  389. } ;
  390. stereo_[+ (get "type_name") +]_test (filename, format, long_file_ok, allow_fd) ;
  391. /* New read/write test. Not sure if this is needed yet. */
  392. if ((format & SF_FORMAT_TYPEMASK) != SF_FORMAT_PAF &&
  393. (format & SF_FORMAT_TYPEMASK) != SF_FORMAT_VOC &&
  394. (format & SF_FORMAT_TYPEMASK) != SF_FORMAT_FLAC)
  395. new_rdwr_[+ (get "type_name") +]_test (filename, format, allow_fd) ;
  396. delete_file (format, filename) ;
  397. puts ("ok") ;
  398. return ;
  399. } /* pcm_test_[+ (get "type_name") +] */
  400. static void
  401. mono_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd)
  402. { SNDFILE *file ;
  403. SF_INFO sfinfo ;
  404. [+ (get "data_type") +] *orig, *test ;
  405. sf_count_t count ;
  406. int k, items ;
  407. sfinfo.samplerate = 44100 ;
  408. sfinfo.frames = SILLY_WRITE_COUNT ; /* Wrong length. Library should correct this on sf_close. */
  409. sfinfo.channels = 1 ;
  410. sfinfo.format = format ;
  411. orig = orig_data.[+ (get "data_field") +] ;
  412. test = test_data.[+ (get "data_field") +] ;
  413. items = DATA_LENGTH ;
  414. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, allow_fd, __LINE__) ;
  415. sf_set_string (file, SF_STR_ARTIST, "Your name here") ;
  416. test_write_[+ (get "data_type") +]_or_die (file, 0, orig, items, __LINE__) ;
  417. sf_write_sync (file) ;
  418. test_write_[+ (get "data_type") +]_or_die (file, 0, orig, items, __LINE__) ;
  419. sf_write_sync (file) ;
  420. /* Add non-audio data after the audio. */
  421. sf_set_string (file, SF_STR_COPYRIGHT, "Copyright (c) 2003") ;
  422. sf_close (file) ;
  423. memset (test, 0, items * sizeof ([+ (get "data_type") +])) ;
  424. if ((format & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
  425. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  426. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, allow_fd, __LINE__) ;
  427. if (sfinfo.format != format)
  428. { printf ("nnLine %d : Mono : Returned format incorrect (0x%08X => 0x%08X).n", __LINE__, format, sfinfo.format) ;
  429. exit (1) ;
  430. } ;
  431. if (sfinfo.frames < 2 * items)
  432. { printf ("nnLine %d : Mono : Incorrect number of frames in file (too short). (%ld should be %d)n", __LINE__, SF_COUNT_TO_LONG (sfinfo.frames), items) ;
  433. exit (1) ;
  434. } ;
  435. if (! long_file_ok && sfinfo.frames > 2 * items)
  436. { printf ("nnLine %d : Mono : Incorrect number of frames in file (too long). (%ld should be %d)n", __LINE__, SF_COUNT_TO_LONG (sfinfo.frames), items) ;
  437. exit (1) ;
  438. } ;
  439. if (sfinfo.channels != 1)
  440. { printf ("nnLine %d : Mono : Incorrect number of channels in file.n", __LINE__) ;
  441. exit (1) ;
  442. } ;
  443. check_log_buffer_or_die (file, __LINE__) ;
  444. test_read_[+ (get "data_type") +]_or_die (file, 0, test, items, __LINE__) ;
  445. for (k = 0 ; k < items ; k++)
  446. if ([+ (get "error_func") +] (orig [k], test [k]))
  447. { printf ("nnLine %d: Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, orig [k], test [k]) ;
  448. oct_save_[+ (get "data_type") +] (orig, test, items) ;
  449. exit (1) ;
  450. } ;
  451. /* Seek to start of file. */
  452. test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;
  453. test_read_[+ (get "data_type") +]_or_die (file, 0, test, 4, __LINE__) ;
  454. for (k = 0 ; k < 4 ; k++)
  455. if ([+ (get "error_func") +] (orig [k], test [k]))
  456. { printf ("nnLine %d : Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, orig [k], test [k]) ;
  457. exit (1) ;
  458. } ;
  459. if ((format & SF_FORMAT_SUBMASK) == SF_FORMAT_DWVW_16 ||
  460. (format & SF_FORMAT_SUBMASK) == SF_FORMAT_DWVW_24)
  461. { sf_close (file) ;
  462. unlink (filename) ;
  463. printf ("no seek : ") ;
  464. return ;
  465. } ;
  466. /* Seek to offset from start of file. */
  467. test_seek_or_die (file, items + 10, SEEK_SET, items + 10, sfinfo.channels, __LINE__) ;
  468. test_read_[+ (get "data_type") +]_or_die (file, 0, test + 10, 4, __LINE__) ;
  469. for (k = 10 ; k < 14 ; k++)
  470. if ([+ (get "error_func") +] (orig [k], test [k]))
  471. { printf ("nnLine %d : Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, test [k], orig [k]) ;
  472. exit (1) ;
  473. } ;
  474. /* Seek to offset from current position. */
  475. test_seek_or_die (file, 6, SEEK_CUR, items + 20, sfinfo.channels, __LINE__) ;
  476. test_read_[+ (get "data_type") +]_or_die (file, 0, test + 20, 4, __LINE__) ;
  477. for (k = 20 ; k < 24 ; k++)
  478. if ([+ (get "error_func") +] (orig [k], test [k]))
  479. { printf ("nnLine %d : Mono : Incorrect sample A (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, test [k], orig [k]) ;
  480. exit (1) ;
  481. } ;
  482. /* Seek to offset from end of file. */
  483. test_seek_or_die (file, -1 * (sfinfo.frames - 10), SEEK_END, 10, sfinfo.channels, __LINE__) ;
  484. test_read_[+ (get "data_type") +]_or_die (file, 0, test + 10, 4, __LINE__) ;
  485. for (k = 10 ; k < 14 ; k++)
  486. if ([+ (get "error_func") +] (orig [k], test [k]))
  487. { printf ("nnLine %d : Mono : Incorrect sample D (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, test [k], orig [k]) ;
  488. exit (1) ;
  489. } ;
  490. /* Check read past end of file followed by sf_seek (sndfile, 0, SEEK_CUR). */
  491. test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;
  492. count = 0 ;
  493. while (count < sfinfo.frames)
  494. count += sf_read_[+ (get "data_type") +] (file, test, 311) ;
  495. /* Check that no error has occurred. */
  496. if (sf_error (file))
  497. { printf ("nnLine %d : Mono : error where there shouldn't have been one.n", __LINE__) ;
  498. puts (sf_strerror (file)) ;
  499. exit (1) ;
  500. } ;
  501. /* Check that we haven't read beyond EOF. */
  502. if (count > sfinfo.frames)
  503. { printf ("nnLines %d : read past end of file (%ld should be %ld)n", __LINE__, (long) count, (long) sfinfo.frames) ;
  504. exit (1) ;
  505. } ;
  506. test_seek_or_die (file, 0, SEEK_CUR, sfinfo.frames, sfinfo.channels, __LINE__) ;
  507. sf_close (file) ;
  508. multi_seek_test (filename, format) ;
  509. write_seek_extend_test (filename, format) ;
  510. } /* mono_[+ (get "type_name") +]_test */
  511. static void
  512. stereo_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd)
  513. { SNDFILE *file ;
  514. SF_INFO sfinfo ;
  515. [+ (get "data_type") +] *orig, *test ;
  516. int k, items, frames ;
  517. sfinfo.samplerate = 44100 ;
  518. sfinfo.frames = SILLY_WRITE_COUNT ; /* Wrong length. Library should correct this on sf_close. */
  519. sfinfo.channels = 2 ;
  520. sfinfo.format = format ;
  521. gen_windowed_sine_double (orig_data.d, DATA_LENGTH, [+ (get "max_val") +]) ;
  522. orig = orig_data.[+ (get "data_field") +] ;
  523. test = test_data.[+ (get "data_field") +] ;
  524. /* Make this a macro so gdb steps over it in one go. */
  525. CONVERT_DATA (k, DATA_LENGTH, orig, orig_data.d) ;
  526. items = DATA_LENGTH ;
  527. frames = items / sfinfo.channels ;
  528. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, allow_fd, __LINE__) ;
  529. sf_set_string (file, SF_STR_ARTIST, "Your name here") ;
  530. test_writef_[+ (get "data_type") +]_or_die (file, 0, orig, frames, __LINE__) ;
  531. sf_set_string (file, SF_STR_COPYRIGHT, "Copyright (c) 2003") ;
  532. sf_close (file) ;
  533. memset (test, 0, items * sizeof ([+ (get "data_type") +])) ;
  534. if ((format & SF_FORMAT_TYPEMASK) != SF_FORMAT_RAW)
  535. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  536. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, allow_fd, __LINE__) ;
  537. if (sfinfo.format != format)
  538. { printf ("nnLine %d : Stereo : Returned format incorrect (0x%08X => 0x%08X).n",
  539. __LINE__, format, sfinfo.format) ;
  540. exit (1) ;
  541. } ;
  542. if (sfinfo.frames < frames)
  543. { printf ("nnLine %d : Stereo : Incorrect number of frames in file (too short). (%ld should be %d)n",
  544. __LINE__, SF_COUNT_TO_LONG (sfinfo.frames), frames) ;
  545. exit (1) ;
  546. } ;
  547. if (! long_file_ok && sfinfo.frames > frames)
  548. { printf ("nnLine %d : Stereo : Incorrect number of frames in file (too long). (%ld should be %d)n",
  549. __LINE__, SF_COUNT_TO_LONG (sfinfo.frames), frames) ;
  550. exit (1) ;
  551. } ;
  552. if (sfinfo.channels != 2)
  553. { printf ("nnLine %d : Stereo : Incorrect number of channels in file.n", __LINE__) ;
  554. exit (1) ;
  555. } ;
  556. check_log_buffer_or_die (file, __LINE__) ;
  557. test_readf_[+ (get "data_type") +]_or_die (file, 0, test, frames, __LINE__) ;
  558. for (k = 0 ; k < items ; k++)
  559. if ([+ (get "error_func") +] (test [k], orig [k]))
  560. { printf ("nnLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, orig [k], test [k]) ;
  561. exit (1) ;
  562. } ;
  563. /* Seek to start of file. */
  564. test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;
  565. test_readf_[+ (get "data_type") +]_or_die (file, 0, test, 2, __LINE__) ;
  566. for (k = 0 ; k < 4 ; k++)
  567. if ([+ (get "error_func") +] (test [k], orig [k]))
  568. { printf ("nnLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, orig [k], test [k]) ;
  569. exit (1) ;
  570. } ;
  571. /* Seek to offset from start of file. */
  572. test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;
  573. /* Check for errors here. */
  574. if (sf_error (file))
  575. { printf ("Line %d: Should NOT return an error.n", __LINE__) ;
  576. puts (sf_strerror (file)) ;
  577. exit (1) ;
  578. } ;
  579. if (sf_read_[+ (get "data_type") +] (file, test, 1) > 0)
  580. { printf ("Line %d: Should return 0.n", __LINE__) ;
  581. exit (1) ;
  582. } ;
  583. if (! sf_error (file))
  584. { printf ("Line %d: Should return an error.n", __LINE__) ;
  585. exit (1) ;
  586. } ;
  587. /*-----------------------*/
  588. test_readf_[+ (get "data_type") +]_or_die (file, 0, test + 10, 2, __LINE__) ;
  589. for (k = 20 ; k < 24 ; k++)
  590. if ([+ (get "error_func") +] (test [k], orig [k]))
  591. { printf ("nnLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, orig [k], test [k]) ;
  592. exit (1) ;
  593. } ;
  594. /* Seek to offset from current position. */
  595. test_seek_or_die (file, 8, SEEK_CUR, 20, sfinfo.channels, __LINE__) ;
  596. test_readf_[+ (get "data_type") +]_or_die (file, 0, test + 20, 2, __LINE__) ;
  597. for (k = 40 ; k < 44 ; k++)
  598. if ([+ (get "error_func") +] (test [k], orig [k]))
  599. { printf ("nnLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, orig [k], test [k]) ;
  600. exit (1) ;
  601. } ;
  602. /* Seek to offset from end of file. */
  603. test_seek_or_die (file, -1 * (sfinfo.frames - 10), SEEK_END, 10, sfinfo.channels, __LINE__) ;
  604. test_readf_[+ (get "data_type") +]_or_die (file, 0, test + 20, 2, __LINE__) ;
  605. for (k = 20 ; k < 24 ; k++)
  606. if ([+ (get "error_func") +] (test [k], orig [k]))
  607. { printf ("nnLine %d : Stereo : Incorrect sample (#%d : [+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, k, orig [k], test [k]) ;
  608. exit (1) ;
  609. } ;
  610. sf_close (file) ;
  611. } /* stereo_[+ (get "type_name") +]_test */
  612. static void
  613. mono_rdwr_[+ (get "type_name") +]_test (const char *filename, int format, int long_file_ok, int allow_fd)
  614. { SNDFILE *file ;
  615. SF_INFO sfinfo ;
  616. [+ (get "data_type") +] *orig, *test ;
  617. int k, pass ;
  618. orig = orig_data.[+ (get "data_field") +] ;
  619. test = test_data.[+ (get "data_field") +] ;
  620. sfinfo.samplerate = SAMPLE_RATE ;
  621. sfinfo.frames = DATA_LENGTH ;
  622. sfinfo.channels = 1 ;
  623. sfinfo.format = format ;
  624. if ((format & SF_FORMAT_TYPEMASK) == SF_FORMAT_RAW
  625. || (format & SF_FORMAT_TYPEMASK) == SF_FORMAT_AU
  626. || (format & SF_FORMAT_TYPEMASK) == SF_FORMAT_SD2)
  627. unlink (filename) ;
  628. else
  629. { /* Create a short file. */
  630. create_short_file (filename) ;
  631. /* Opening a already existing short file (ie invalid header) RDWR is disallowed.
  632. ** If this returns a valif pointer sf_open() screwed up.
  633. */
  634. if ((file = sf_open (filename, SFM_RDWR, &sfinfo)))
  635. { printf ("nnLine %d: sf_open should (SFM_RDWR) have failed but didn't.n", __LINE__) ;
  636. exit (1) ;
  637. } ;
  638. /* Truncate the file to zero bytes. */
  639. if (truncate (filename, 0) < 0)
  640. { printf ("nnLine %d: truncate (%s) failed", __LINE__, filename) ;
  641. perror (NULL) ;
  642. exit (1) ;
  643. } ;
  644. } ;
  645. /* Opening a zero length file RDWR is allowed, but the SF_INFO struct must contain
  646. ** all the usual data required when opening the file in WRITE mode.
  647. */
  648. sfinfo.samplerate = SAMPLE_RATE ;
  649. sfinfo.frames = DATA_LENGTH ;
  650. sfinfo.channels = 1 ;
  651. sfinfo.format = format ;
  652. file = test_open_file_or_die (filename, SFM_RDWR, &sfinfo, allow_fd, __LINE__) ;
  653. /* Do 3 writes followed by reads. After each, check the data and the current
  654. ** read and write offsets.
  655. */
  656. for (pass = 1 ; pass <= 3 ; pass ++)
  657. { orig [20] = pass * 2 ;
  658. /* Write some data. */
  659. test_write_[+ (get "data_type") +]_or_die (file, pass, orig, DATA_LENGTH, __LINE__) ;
  660. test_read_write_position_or_die (file, __LINE__, pass, (pass - 1) * DATA_LENGTH, pass * DATA_LENGTH) ;
  661. /* Read what we just wrote. */
  662. test_read_[+ (get "data_type") +]_or_die (file, 0, test, DATA_LENGTH, __LINE__) ;
  663. /* Check the data. */
  664. for (k = 0 ; k < DATA_LENGTH ; k++)
  665. if ([+ (get "error_func") +] (orig [k], test [k]))
  666. { printf ("nnLine %d (pass %d) A : Error at sample %d ([+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, pass, k, orig [k], test [k]) ;
  667. oct_save_[+ (get "data_type") +] (orig, test, DATA_LENGTH) ;
  668. exit (1) ;
  669. } ;
  670. test_read_write_position_or_die (file, __LINE__, pass, pass * DATA_LENGTH, pass * DATA_LENGTH) ;
  671. } ; /* for (pass ...) */
  672. sf_close (file) ;
  673. /* Open the file again to check the data. */
  674. file = test_open_file_or_die (filename, SFM_RDWR, &sfinfo, allow_fd, __LINE__) ;
  675. if (sfinfo.format != format)
  676. { printf ("nnLine %d : Returned format incorrect (0x%08X => 0x%08X).n", __LINE__, format, sfinfo.format) ;
  677. exit (1) ;
  678. } ;
  679. if (sfinfo.frames < 3 * DATA_LENGTH)
  680. { printf ("nnLine %d : Not enough frames in file. (%ld < %d)n", __LINE__, SF_COUNT_TO_LONG (sfinfo.frames), 3 * DATA_LENGTH ) ;
  681. exit (1) ;
  682. }
  683. if (! long_file_ok && sfinfo.frames != 3 * DATA_LENGTH)
  684. { printf ("nnLine %d : Incorrect number of frames in file. (%ld should be %d)n", __LINE__, SF_COUNT_TO_LONG (sfinfo.frames), 3 * DATA_LENGTH ) ;
  685. exit (1) ;
  686. } ;
  687. if (sfinfo.channels != 1)
  688. { printf ("nnLine %d : Incorrect number of channels in file.n", __LINE__) ;
  689. exit (1) ;
  690. } ;
  691. if (! long_file_ok)
  692. test_read_write_position_or_die (file, __LINE__, 0, 0, 3 * DATA_LENGTH) ;
  693. else
  694. test_seek_or_die (file, 3 * DATA_LENGTH, SFM_WRITE | SEEK_SET, 3 * DATA_LENGTH, sfinfo.channels, __LINE__) ;
  695. for (pass = 1 ; pass <= 3 ; pass ++)
  696. { orig [20] = pass * 2 ;
  697. test_read_write_position_or_die (file, __LINE__, pass, (pass - 1) * DATA_LENGTH, 3 * DATA_LENGTH) ;
  698. /* Read what we just wrote. */
  699. test_read_[+ (get "data_type") +]_or_die (file, pass, test, DATA_LENGTH, __LINE__) ;
  700. /* Check the data. */
  701. for (k = 0 ; k < DATA_LENGTH ; k++)
  702. if ([+ (get "error_func") +] (orig [k], test [k]))
  703. { printf ("nnLine %d (pass %d) B : Error at sample %d ([+ (get "format_char") +] => [+ (get "format_char") +]).n", __LINE__, pass, k, orig [k], test [k]) ;
  704. oct_save_[+ (get "data_type") +] (orig, test, DATA_LENGTH) ;
  705. exit (1) ;
  706. } ;
  707. } ; /* for (pass ...) */
  708. sf_close (file) ;
  709. } /* mono_rdwr_[+ (get "data_type") +]_test */
  710. static void
  711. new_rdwr_[+ (get "type_name") +]_test (const char *filename, int format, int allow_fd)
  712. { SNDFILE *wfile, *rwfile ;
  713. SF_INFO sfinfo ;
  714. [+ (get "data_type") +] *orig, *test ;
  715. int items, frames ;
  716. orig = orig_data.[+ (get "data_field") +] ;
  717. test = test_data.[+ (get "data_field") +] ;
  718. sfinfo.samplerate = 44100 ;
  719. sfinfo.frames = SILLY_WRITE_COUNT ; /* Wrong length. Library should correct this on sf_close. */
  720. sfinfo.channels = 2 ;
  721. sfinfo.format = format ;
  722. items = DATA_LENGTH ;
  723. frames = items / sfinfo.channels ;
  724. wfile = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, allow_fd, __LINE__) ;
  725. sf_command (wfile, SFC_SET_UPDATE_HEADER_AUTO, NULL, SF_TRUE) ;
  726. test_writef_[+ (get "data_type") +]_or_die (wfile, 1, orig, frames, __LINE__) ;
  727. sf_write_sync (wfile) ;
  728. test_writef_[+ (get "data_type") +]_or_die (wfile, 2, orig, frames, __LINE__) ;
  729. sf_write_sync (wfile) ;
  730. rwfile = test_open_file_or_die (filename, SFM_RDWR, &sfinfo, allow_fd, __LINE__) ;
  731. if (sfinfo.frames != 2 * frames)
  732. { printf ("nnLine %d : incorrect number of frames in file (%ld should be %d)nn", __LINE__, SF_COUNT_TO_LONG (sfinfo.frames), 2 * frames) ;
  733. exit (1) ;
  734. } ;
  735. test_writef_[+ (get "data_type") +]_or_die (wfile, 3, orig, frames, __LINE__) ;
  736. test_readf_[+ (get "data_type") +]_or_die (rwfile, 1, test, frames, __LINE__) ;
  737. test_readf_[+ (get "data_type") +]_or_die (rwfile, 2, test, frames, __LINE__) ;
  738. sf_close (wfile) ;
  739. sf_close (rwfile) ;
  740. } /* new_rdwr_[+ (get "type_name") +]_test */
  741. [+ ENDFOR data_type +]
  742. /*----------------------------------------------------------------------------------------
  743. */
  744. static void
  745. empty_file_test (const char *filename, int format)
  746. { SNDFILE *file ;
  747. SF_INFO info ;
  748. int allow_fd ;
  749. /* Sd2 files cannot be opened from an existing file descriptor. */
  750. allow_fd = ((format & SF_FORMAT_TYPEMASK) == SF_FORMAT_SD2) ? SF_FALSE : SF_TRUE ;
  751. print_test_name ("empty_file_test", filename) ;
  752. unlink (filename) ;
  753. info.samplerate = 48000 ;
  754. info.channels = 2 ;
  755. info.format = format ;
  756. if (sf_format_check (&info) == SF_FALSE)
  757. { info.channels = 1 ;
  758. if (sf_format_check (&info) == SF_FALSE)
  759. { puts ("invalid file format") ;
  760. return ;
  761. } ;
  762. } ;
  763. /* Create an empty file. */
  764. file = test_open_file_or_die (filename, SFM_WRITE, &info, allow_fd, __LINE__) ;
  765. sf_close (file) ;
  766. /* Open for read and check the length. */
  767. file = test_open_file_or_die (filename, SFM_READ, &info, allow_fd, __LINE__) ;
  768. if (SF_COUNT_TO_LONG (info.frames) != 0)
  769. { printf ("nnError : frame count (%ld) should be zero.n", SF_COUNT_TO_LONG (info.frames)) ;
  770. exit (1) ;
  771. } ;
  772. sf_close (file) ;
  773. /* Open for read/write and check the length. */
  774. file = test_open_file_or_die (filename, SFM_RDWR, &info, allow_fd, __LINE__) ;
  775. if (SF_COUNT_TO_LONG (info.frames) != 0)
  776. { printf ("nnError : frame count (%ld) should be zero.n", SF_COUNT_TO_LONG (info.frames)) ;
  777. exit (1) ;
  778. } ;
  779. sf_close (file) ;
  780. /* Open for read and check the length. */
  781. file = test_open_file_or_die (filename, SFM_READ, &info, allow_fd, __LINE__) ;
  782. if (SF_COUNT_TO_LONG (info.frames) != 0)
  783. { printf ("nnError : frame count (%ld) should be zero.n", SF_COUNT_TO_LONG (info.frames)) ;
  784. exit (1) ;
  785. } ;
  786. sf_close (file) ;
  787. check_open_file_count_or_die (__LINE__) ;
  788. unlink (filename) ;
  789. puts ("ok") ;
  790. return ;
  791. } /* empty_file_test */
  792. /*----------------------------------------------------------------------------------------
  793. */
  794. static void
  795. create_short_file (const char *filename)
  796. { FILE *file ;
  797. if (! (file = fopen (filename, "w")))
  798. { printf ("create_short_file : fopen (%s, "w") failed.", filename) ;
  799. fflush (stdout) ;
  800. perror (NULL) ;
  801. exit (1) ;
  802. } ;
  803. fprintf (file, "This is the file data.n") ;
  804. fclose (file) ;
  805. } /* create_short_file */
  806. #if (defined (WIN32) || defined (__WIN32))
  807. /* Win32 does not have truncate (nor does it have the POSIX function ftruncate).
  808. ** Hack somethng up here to over come this. This function can only truncate to a
  809. ** length of zero.
  810. */
  811. static int
  812. truncate (const char *filename, int ignored)
  813. { int fd ;
  814. ignored = 0 ;
  815. if ((fd = open (filename, O_RDWR | O_TRUNC | O_BINARY)) < 0)
  816. return 0 ;
  817. close (fd) ;
  818. return 0 ;
  819. } /* truncate */
  820. #endif
  821. static void
  822. multi_seek_test (const char * filename, int format)
  823. { SNDFILE * file ;
  824. SF_INFO info ;
  825. sf_count_t pos ;
  826. int k ;
  827. /* This test doesn't work on the following. */
  828. switch (format & SF_FORMAT_TYPEMASK)
  829. { case SF_FORMAT_RAW :
  830. return ;
  831. default :
  832. break ;
  833. } ;
  834. memset (&info, 0, sizeof (info)) ;
  835. generate_file (filename, format, 88200) ;
  836. file = test_open_file_or_die (filename, SFM_READ, &info, SF_FALSE, __LINE__) ;
  837. for (k = 0 ; k < 10 ; k++)
  838. { pos = info.frames / (k + 2) ;
  839. test_seek_or_die (file, pos, SEEK_SET, pos, info.channels, __LINE__) ;
  840. } ;
  841. sf_close (file) ;
  842. } /* multi_seek_test */
  843. static void
  844. write_seek_extend_test (const char * filename, int format)
  845. { SNDFILE * file ;
  846. SF_INFO info ;
  847. short *orig, *test ;
  848. unsigned items, k ;
  849. /* This test doesn't work on the following. */
  850. switch (format & SF_FORMAT_TYPEMASK)
  851. { case SF_FORMAT_FLAC :
  852. case SF_FORMAT_HTK :
  853. case SF_FORMAT_PAF :
  854. case SF_FORMAT_SDS :
  855. case SF_FORMAT_SVX :
  856. return ;
  857. default :
  858. break ;
  859. } ;
  860. memset (&info, 0, sizeof (info)) ;
  861. info.samplerate = 48000 ;
  862. info.channels = 1 ;
  863. info.format = format ;
  864. items = 512 ;
  865. exit_if_true (items > ARRAY_LEN (orig_data.s), "Line %d : Bad assumption.n", __LINE__) ;
  866. orig = orig_data.s ;
  867. test = test_data.s ;
  868. for (k = 0 ; k < ARRAY_LEN (orig_data.s) ; k++)
  869. orig [k] = 0x3fff ;
  870. file = test_open_file_or_die (filename, SFM_WRITE, &info, SF_FALSE, __LINE__) ;
  871. test_write_short_or_die (file, 0, orig, items, __LINE__) ;
  872. /* Extend the file using a seek. */
  873. test_seek_or_die (file, 2 * items, SEEK_SET, 2 * items, info.channels, __LINE__) ;
  874. test_writef_short_or_die (file, 0, orig, items, __LINE__) ;
  875. sf_close (file) ;
  876. file = test_open_file_or_die (filename, SFM_READ, &info, SF_FALSE, __LINE__) ;
  877. test_read_short_or_die (file, 0, test, 3 * items, __LINE__) ;
  878. sf_close (file) ;
  879. /* Can't do these formats due to scaling. */
  880. switch (format & SF_FORMAT_SUBMASK)
  881. { case SF_FORMAT_PCM_S8 :
  882. case SF_FORMAT_PCM_U8 :
  883. return ;
  884. default :
  885. break ;
  886. } ;
  887. for (k = 0 ; k < items ; k++)
  888. { exit_if_true (test [k] != 0x3fff, "Line %d : test [%d] == %d, should be 0x3fff.n", __LINE__, k, test [k]) ;
  889. exit_if_true (test [items + k] != 0, "Line %d : test [%d] == %d, should be 0.n", __LINE__, items + k, test [items + k]) ;
  890. exit_if_true (test [2 * items + k] != 0x3fff, "Line %d : test [%d] == %d, should be 0x3fff.n", __LINE__, 2 * items + k, test [2 * items + k]) ;
  891. } ;
  892. return ;
  893. } /* write_seek_extend_test */