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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2006 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 <cstdio>
  19. #include <cstdlib>
  20. #include <cstring>
  21. #include <sndfile.hh>
  22. #include "utils.h"
  23. static short sbuffer [100] ;
  24. static int  ibuffer [100] ;
  25. static float fbuffer [100] ;
  26. static double dbuffer [100] ;
  27. static void
  28. create_file (const char * filename, int format)
  29. { SndfileHandle file ;
  30. if (file.refCount () != 0)
  31. { printf ("nn%s %d : Error : Reference count (%d) should be zero.nn", __func__, __LINE__, file.refCount ()) ;
  32. exit (1) ;
  33. } ;
  34. file = SndfileHandle (filename, SFM_WRITE, format, 2, 48000) ;
  35. if (file.refCount () != 1)
  36. { printf ("nn%s %d : Error : Reference count (%d) should be 1.nn", __func__, __LINE__, file.refCount ()) ;
  37. exit (1) ;
  38. } ;
  39. file.setString (SF_STR_TITLE, filename) ;
  40. /* Item write. */
  41. file.write (sbuffer, ARRAY_LEN (sbuffer)) ;
  42. file.write (ibuffer, ARRAY_LEN (ibuffer)) ;
  43. file.write (fbuffer, ARRAY_LEN (fbuffer)) ;
  44. file.write (dbuffer, ARRAY_LEN (dbuffer)) ;
  45. /* Frame write. */
  46. file.writef (sbuffer, ARRAY_LEN (sbuffer) / file.channels ()) ;
  47. file.writef (ibuffer, ARRAY_LEN (ibuffer) / file.channels ()) ;
  48. file.writef (fbuffer, ARRAY_LEN (fbuffer) / file.channels ()) ;
  49. file.writef (dbuffer, ARRAY_LEN (dbuffer) / file.channels ()) ;
  50. /* RAII takes care of the SndfileHandle. */
  51. } /* create_file */
  52. static void
  53. check_title (const SndfileHandle & file, const char * filename)
  54. { const char *title = NULL ;
  55. title = file.getString (SF_STR_TITLE) ;
  56. if (title == NULL)
  57. { printf ("nn%s %d : Error : No title.nn", __func__, __LINE__) ;
  58. exit (1) ;
  59. } ;
  60. if (strcmp (filename, title) != 0)
  61. { printf ("nn%s %d : Error : title '%s' should be '%s'nn", __func__, __LINE__, title, filename) ;
  62. exit (1) ;
  63. } ;
  64. return ;
  65. } /* check_title */
  66. static void
  67. read_file (const char * filename, int format)
  68. { SndfileHandle file ;
  69. sf_count_t count ;
  70. if (file)
  71. { printf ("nn%s %d : Error : should not be here.nn", __func__, __LINE__) ;
  72. exit (1) ;
  73. } ;
  74. file = SndfileHandle (filename) ;
  75. if (1)
  76. { SndfileHandle file2 = file ;
  77. if (file.refCount () != 2 || file2.refCount () != 2)
  78. { printf ("nn%s %d : Error : Reference count (%d) should be two.nn", __func__, __LINE__, file.refCount ()) ;
  79. exit (1) ;
  80. } ;
  81. } ;
  82. if (file.refCount () != 1)
  83. { printf ("nn%s %d : Error : Reference count (%d) should be one.nn", __func__, __LINE__, file.refCount ()) ;
  84. exit (1) ;
  85. } ;
  86. if (! file)
  87. { printf ("nn%s %d : Error : should not be here.nn", __func__, __LINE__) ;
  88. exit (1) ;
  89. } ;
  90. if (file.format () != format)
  91. { printf ("nn%s %d : Error : format 0x%08x should be 0x%08x.nn", __func__, __LINE__, file.format (), format) ;
  92. exit (1) ;
  93. } ;
  94. if (file.channels () != 2)
  95. { printf ("nn%s %d : Error : channels %d should be 2.nn", __func__, __LINE__, file.channels ()) ;
  96. exit (1) ;
  97. } ;
  98. if (file.frames () != ARRAY_LEN (sbuffer) * 4)
  99. { printf ("nn%s %d : Error : frames %ld should be %lu.nn", __func__, __LINE__,
  100. SF_COUNT_TO_LONG (file.frames ()), (long unsigned int) ARRAY_LEN (sbuffer) * 4 / 2) ;
  101. exit (1) ;
  102. } ;
  103. switch (format & SF_FORMAT_TYPEMASK)
  104. { case SF_FORMAT_AU :
  105. break ;
  106. default :
  107. check_title (file, filename) ;
  108. break ;
  109. } ;
  110. /* Item read. */
  111. file.read (sbuffer, ARRAY_LEN (sbuffer)) ;
  112. file.read (ibuffer, ARRAY_LEN (ibuffer)) ;
  113. file.read (fbuffer, ARRAY_LEN (fbuffer)) ;
  114. file.read (dbuffer, ARRAY_LEN (dbuffer)) ;
  115. /* Frame read. */
  116. file.readf (sbuffer, ARRAY_LEN (sbuffer) / file.channels ()) ;
  117. file.readf (ibuffer, ARRAY_LEN (ibuffer) / file.channels ()) ;
  118. file.readf (fbuffer, ARRAY_LEN (fbuffer) / file.channels ()) ;
  119. file.readf (dbuffer, ARRAY_LEN (dbuffer) / file.channels ()) ;
  120. count = file.seek (file.frames () - 10, SEEK_SET) ;
  121. if (count != file.frames () - 10)
  122. { printf ("nn%s %d : Error : offset (%ld) should be %ldnn", __func__, __LINE__,
  123. SF_COUNT_TO_LONG (count), SF_COUNT_TO_LONG (file.frames () - 10)) ;
  124. exit (1) ;
  125. } ;
  126. count = file.read (sbuffer, ARRAY_LEN (sbuffer)) ;
  127. if (count != 10 * file.channels ())
  128. { printf ("nn%s %d : Error : count (%ld) should be %ldnn", __func__, __LINE__,
  129. SF_COUNT_TO_LONG (count), SF_COUNT_TO_LONG (10 * file.channels ())) ;
  130. exit (1) ;
  131. } ;
  132. /* RAII takes care of the SndfileHandle. */
  133. } /* read_file */
  134. static void
  135. ceeplusplus_test (const char *filename, int format)
  136. {
  137. print_test_name ("ceeplusplus_test", filename) ;
  138. create_file (filename, format) ;
  139. read_file (filename, format) ;
  140. remove (filename) ;
  141. puts ("ok") ;
  142. } /* ceeplusplus_test */
  143. static void
  144. ceeplusplus_extra_test (void)
  145. { SndfileHandle file ;
  146. const char * filename = "bad_file_name.wav" ;
  147. int error ;
  148. print_test_name ("ceeplusplus_extra_test", filename) ;
  149. file = SndfileHandle (filename) ;
  150. error = file.error () ;
  151. if (error == 0)
  152. { printf ("nn%s %d : error should be zero.nn", __func__, __LINE__) ;
  153. exit (1) ;
  154. } ;
  155. if (file.strError () == NULL)
  156. { printf ("nn%s %d : strError should not return NULL.nn", __func__, __LINE__) ;
  157. exit (1) ;
  158. } ;
  159. if (file.seek (0, SEEK_SET) != 0)
  160. { printf ("nn%s %d : bad seek ().nn", __func__, __LINE__) ;
  161. exit (1) ;
  162. } ;
  163. puts ("ok") ;
  164. } /* ceeplusplus_extra_test */
  165. int
  166. main (void)
  167. {
  168. ceeplusplus_test ("cpp_test.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16) ;
  169. ceeplusplus_test ("cpp_test.aiff", SF_FORMAT_AIFF | SF_FORMAT_PCM_S8) ;
  170. ceeplusplus_test ("cpp_test.au", SF_FORMAT_AU | SF_FORMAT_FLOAT) ;
  171. ceeplusplus_extra_test () ;
  172. return 0 ;
  173. } /* main */