2
0

dwvw_test.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. ** Copyright (C) 2002-2011 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 (10000)
  29. #ifndef M_PI
  30. #define M_PI 3.14159265358979323846264338
  31. #endif
  32. static void dwvw_test (const char *filename, int format, int bit_width) ;
  33. int
  34. main (void)
  35. {
  36. dwvw_test ("dwvw12.raw", SF_FORMAT_RAW | SF_FORMAT_DWVW_12, 12) ;
  37. dwvw_test ("dwvw16.raw", SF_FORMAT_RAW | SF_FORMAT_DWVW_16, 16) ;
  38. dwvw_test ("dwvw24.raw", SF_FORMAT_RAW | SF_FORMAT_DWVW_24, 24) ;
  39. return 0 ;
  40. } /* main */
  41. static void
  42. dwvw_test (const char *filename, int format, int bit_width)
  43. { static int write_buf [BUFFER_SIZE] ;
  44. static int read_buf [BUFFER_SIZE] ;
  45. SNDFILE *file ;
  46. SF_INFO sfinfo ;
  47. double value ;
  48. int k, bit_mask ;
  49. srand (123456) ;
  50. /* Only want to grab the top bit_width bits. */
  51. bit_mask = (-1 << (32 - bit_width)) ;
  52. print_test_name ("dwvw_test", filename) ;
  53. sf_info_setup (&sfinfo, format, 44100, 1) ;
  54. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_TRUE, __LINE__) ;
  55. /* Generate random.frames. */
  56. for (k = 0 ; k < BUFFER_SIZE / 2 ; k++)
  57. { value = 0x7FFFFFFF * sin (123.0 / sfinfo.samplerate * 2 * k * M_PI) ;
  58. write_buf [k] = bit_mask & lrint (value) ;
  59. } ;
  60. for ( ; k < BUFFER_SIZE ; k++)
  61. write_buf [k] = bit_mask & ((rand () << 11) ^ (rand () >> 11)) ;
  62. sf_write_int (file, write_buf, BUFFER_SIZE) ;
  63. sf_close (file) ;
  64. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_TRUE, __LINE__) ;
  65. if ((k = sf_read_int (file, read_buf, BUFFER_SIZE)) != BUFFER_SIZE)
  66. { printf ("Error (line %d) : Only read %d/%d.frames.\n", __LINE__, k, BUFFER_SIZE) ;
  67. exit (1) ;
  68. }
  69. for (k = 0 ; k < BUFFER_SIZE ; k++)
  70. { if (read_buf [k] != write_buf [k])
  71. { printf ("Error (line %d) : %d != %d at position %d/%d\n", __LINE__,
  72. write_buf [k] >> (32 - bit_width), read_buf [k] >> (32 - bit_width),
  73. k, BUFFER_SIZE) ;
  74. oct_save_int (write_buf, read_buf, BUFFER_SIZE) ;
  75. exit (1) ;
  76. } ;
  77. } ;
  78. sf_close (file) ;
  79. unlink (filename) ;
  80. printf ("ok\n") ;
  81. return ;
  82. } /* dwvw_test */