dither_test.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. ** Copyright (C) 2003-2013 Erik de Castro Lopo <[email protected]>
  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. #if HAVE_UNISTD_H
  22. #include <unistd.h>
  23. #else
  24. #include "sf_unistd.h"
  25. #endif
  26. #include <string.h>
  27. #include <math.h>
  28. #include <sndfile.h>
  29. #include "utils.h"
  30. #define BUFFER_LEN (1 << 16)
  31. #define LOG_BUFFER_SIZE 1024
  32. static void dither_test (const char *filename, int filetype) ;
  33. /* Force the start of this buffer to be double aligned. Sparc-solaris will
  34. ** choke if its not.
  35. */
  36. static short data_out [BUFFER_LEN] ;
  37. int
  38. main (int argc, char *argv [])
  39. { int do_all = 0 ;
  40. int test_count = 0 ;
  41. if (argc != 2)
  42. { printf ("Usage : %s <test>\n", argv [0]) ;
  43. printf (" Where <test> is one of the following:\n") ;
  44. printf (" wav - test WAV file peak chunk\n") ;
  45. printf (" aiff - test AIFF file PEAK chunk\n") ;
  46. printf (" all - perform all tests\n") ;
  47. exit (1) ;
  48. } ;
  49. do_all = ! strcmp (argv [1], "all") ;
  50. if (do_all || ! strcmp (argv [1], "wav"))
  51. { dither_test ("dither.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_U8) ;
  52. test_count++ ;
  53. } ;
  54. if (do_all || ! strcmp (argv [1], "aiff"))
  55. { dither_test ("dither.aiff", SF_FORMAT_AIFF | SF_FORMAT_PCM_S8) ;
  56. test_count++ ;
  57. } ;
  58. if (do_all || ! strcmp (argv [1], "au"))
  59. { dither_test ("dither.au", SF_FORMAT_AU | SF_FORMAT_PCM_S8) ;
  60. test_count++ ;
  61. } ;
  62. if (do_all || ! strcmp (argv [1], "svx"))
  63. { dither_test ("dither.svx", SF_FORMAT_SVX | SF_FORMAT_PCM_S8) ;
  64. test_count++ ;
  65. } ;
  66. if (do_all || ! strcmp (argv [1], "nist"))
  67. { dither_test ("dither.nist", SF_FORMAT_NIST | SF_FORMAT_PCM_S8) ;
  68. test_count++ ;
  69. } ;
  70. if (do_all || ! strcmp (argv [1], "paf"))
  71. { dither_test ("dither.paf", SF_FORMAT_PAF | SF_FORMAT_PCM_S8) ;
  72. test_count++ ;
  73. } ;
  74. if (do_all || ! strcmp (argv [1], "ircam"))
  75. { dither_test ("dither.ircam", SF_FORMAT_IRCAM | SF_FORMAT_PCM_S8) ;
  76. test_count++ ;
  77. } ;
  78. if (do_all || ! strcmp (argv [1], "voc"))
  79. { dither_test ("dither.voc", SF_FORMAT_VOC | SF_FORMAT_PCM_S8) ;
  80. test_count++ ;
  81. } ;
  82. if (do_all || ! strcmp (argv [1], "w64"))
  83. { dither_test ("dither.w64", SF_FORMAT_W64 | SF_FORMAT_PCM_S8) ;
  84. test_count++ ;
  85. } ;
  86. if (do_all || ! strcmp (argv [1], "mat4"))
  87. { dither_test ("dither.mat4", SF_FORMAT_MAT4 | SF_FORMAT_PCM_S8) ;
  88. test_count++ ;
  89. } ;
  90. if (do_all || ! strcmp (argv [1], "mat5"))
  91. { dither_test ("dither.mat5", SF_FORMAT_MAT5 | SF_FORMAT_PCM_S8) ;
  92. test_count++ ;
  93. } ;
  94. if (do_all || ! strcmp (argv [1], "pvf"))
  95. { dither_test ("dither.pvf", SF_FORMAT_PVF | SF_FORMAT_PCM_S8) ;
  96. test_count++ ;
  97. } ;
  98. if (test_count == 0)
  99. { printf ("Mono : ************************************\n") ;
  100. printf ("Mono : * No '%s' test defined.\n", argv [1]) ;
  101. printf ("Mono : ************************************\n") ;
  102. return 1 ;
  103. } ;
  104. return 0 ;
  105. } /* main */
  106. /*============================================================================================
  107. ** Here are the test functions.
  108. */
  109. static void
  110. dither_test (const char *filename, int filetype)
  111. { SNDFILE *file ;
  112. SF_INFO sfinfo ;
  113. SF_DITHER_INFO dither ;
  114. print_test_name ("dither_test", filename) ;
  115. sfinfo.samplerate = 44100 ;
  116. sfinfo.format = filetype ;
  117. sfinfo.channels = 1 ;
  118. sfinfo.frames = 0 ;
  119. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;
  120. /* Check for old version of the dither API. */
  121. if (sf_command (file, SFC_SET_DITHER_ON_WRITE, NULL, SF_TRUE) == 0)
  122. { printf ("\n\nLine %d: Should have an error here but don't.\n\n", __LINE__) ;
  123. exit (1) ;
  124. } ;
  125. memset (&dither, 0, sizeof (dither)) ;
  126. dither.type = SFD_WHITE ;
  127. dither.level = 0 ;
  128. if (sf_command (file, SFC_SET_DITHER_ON_WRITE, &dither, sizeof (dither)) != 0)
  129. { printf ("\n\nLine %d: sf_command (SFC_SET_DITHER_ON_WRITE) returned error : %s\n\n",
  130. __LINE__, sf_strerror (file)) ;
  131. exit (1) ;
  132. } ;
  133. /* Write data to file. */
  134. test_write_short_or_die (file, 0, data_out, BUFFER_LEN, __LINE__) ;
  135. test_seek_or_die (file, 0, SEEK_SET, 0, sfinfo.channels, __LINE__) ;
  136. sf_close (file) ;
  137. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_TRUE, __LINE__) ;
  138. if (sfinfo.frames != BUFFER_LEN)
  139. { printf ("\n\nLine %d: Bad frame count %d (should be %d)\n\n", __LINE__, (int) sfinfo.frames, BUFFER_LEN) ;
  140. } ;
  141. sf_close (file) ;
  142. /*-unlink (filename) ;-*/
  143. puts ("ok") ;
  144. } /* dither_test */