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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2007-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 <unistd.h>
  23. #include <math.h>
  24. #include <sndfile.h>
  25. #include "utils.h"
  26. #define SAMPLE_RATE 44100
  27. #define DATA_LENGTH (SAMPLE_RATE / 8)
  28. typedef union
  29. { double d [DATA_LENGTH] ;
  30. float f [DATA_LENGTH] ;
  31. int i [DATA_LENGTH] ;
  32. short s [DATA_LENGTH] ;
  33. } BUFFER ;
  34. static BUFFER data_out ;
  35. static BUFFER data_in ;
  36. static void
  37. ogg_short_test (void)
  38. { const char * filename = "vorbis_short.oga" ;
  39. SNDFILE * file ;
  40. SF_INFO sfinfo ;
  41. short seek_data [10] ;
  42. unsigned k ;
  43. print_test_name ("ogg_short_test", filename) ;
  44. /* Generate float data. */
  45. gen_windowed_sine_float (data_out.f, ARRAY_LEN (data_out.f), 1.0 * 0x7F00) ;
  46. /* Convert to shorteger. */
  47. for (k = 0 ; k < ARRAY_LEN (data_out.s) ; k++)
  48. data_out.s [k] = lrintf (data_out.f [k]) ;
  49. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  50. /* Set up output file type. */
  51. sfinfo.format = SF_FORMAT_OGG | SF_FORMAT_VORBIS ;
  52. sfinfo.channels = 1 ;
  53. sfinfo.samplerate = SAMPLE_RATE ;
  54. /* Write the output file. */
  55. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_FALSE, __LINE__) ;
  56. test_write_short_or_die (file, 0, data_out.s, ARRAY_LEN (data_out.s), __LINE__) ;
  57. sf_close (file) ;
  58. /* Read the file in again. */
  59. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  60. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  61. test_read_short_or_die (file, 0, data_in.s, ARRAY_LEN (data_in.s), __LINE__) ;
  62. sf_close (file) ;
  63. puts ("ok") ;
  64. /* Test seeking. */
  65. print_test_name ("ogg_seek_test", filename) ;
  66. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  67. test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;
  68. test_read_short_or_die (file, 0, seek_data, ARRAY_LEN (seek_data), __LINE__) ;
  69. compare_short_or_die (seek_data, data_in.s + 10, ARRAY_LEN (seek_data), __LINE__) ;
  70. sf_close (file) ;
  71. puts ("ok") ;
  72. unlink (filename) ;
  73. } /* ogg_short_test */
  74. static void
  75. ogg_int_test (void)
  76. { const char * filename = "vorbis_int.oga" ;
  77. SNDFILE * file ;
  78. SF_INFO sfinfo ;
  79. int seek_data [10] ;
  80. unsigned k ;
  81. print_test_name ("ogg_int_test", filename) ;
  82. /* Generate float data. */
  83. gen_windowed_sine_float (data_out.f, ARRAY_LEN (data_out.f), 1.0 * 0x7FFF0000) ;
  84. /* Convert to integer. */
  85. for (k = 0 ; k < ARRAY_LEN (data_out.i) ; k++)
  86. data_out.i [k] = lrintf (data_out.f [k]) ;
  87. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  88. /* Set up output file type. */
  89. sfinfo.format = SF_FORMAT_OGG | SF_FORMAT_VORBIS ;
  90. sfinfo.channels = 1 ;
  91. sfinfo.samplerate = SAMPLE_RATE ;
  92. /* Write the output file. */
  93. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_FALSE, __LINE__) ;
  94. test_write_int_or_die (file, 0, data_out.i, ARRAY_LEN (data_out.i), __LINE__) ;
  95. sf_close (file) ;
  96. /* Read the file in again. */
  97. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  98. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  99. test_read_int_or_die (file, 0, data_in.i, ARRAY_LEN (data_in.i), __LINE__) ;
  100. sf_close (file) ;
  101. puts ("ok") ;
  102. /* Test seeking. */
  103. print_test_name ("ogg_seek_test", filename) ;
  104. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  105. test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;
  106. test_read_int_or_die (file, 0, seek_data, ARRAY_LEN (seek_data), __LINE__) ;
  107. compare_int_or_die (seek_data, data_in.i + 10, ARRAY_LEN (seek_data), __LINE__) ;
  108. sf_close (file) ;
  109. puts ("ok") ;
  110. unlink (filename) ;
  111. } /* ogg_int_test */
  112. static void
  113. ogg_float_test (void)
  114. { const char * filename = "vorbis_float.oga" ;
  115. SNDFILE * file ;
  116. SF_INFO sfinfo ;
  117. float seek_data [10] ;
  118. print_test_name ("ogg_float_test", filename) ;
  119. gen_windowed_sine_float (data_out.f, ARRAY_LEN (data_out.f), 0.95) ;
  120. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  121. /* Set up output file type. */
  122. sfinfo.format = SF_FORMAT_OGG | SF_FORMAT_VORBIS ;
  123. sfinfo.channels = 1 ;
  124. sfinfo.samplerate = SAMPLE_RATE ;
  125. /* Write the output file. */
  126. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_FALSE, __LINE__) ;
  127. test_write_float_or_die (file, 0, data_out.f, ARRAY_LEN (data_out.f), __LINE__) ;
  128. sf_close (file) ;
  129. /* Read the file in again. */
  130. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  131. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  132. test_read_float_or_die (file, 0, data_in.f, ARRAY_LEN (data_in.f), __LINE__) ;
  133. sf_close (file) ;
  134. puts ("ok") ;
  135. /* Test seeking. */
  136. print_test_name ("ogg_seek_test", filename) ;
  137. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  138. test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;
  139. test_read_float_or_die (file, 0, seek_data, ARRAY_LEN (seek_data), __LINE__) ;
  140. compare_float_or_die (seek_data, data_in.f + 10, ARRAY_LEN (seek_data), __LINE__) ;
  141. sf_close (file) ;
  142. puts ("ok") ;
  143. unlink (filename) ;
  144. } /* ogg_float_test */
  145. static void
  146. ogg_double_test (void)
  147. { const char * filename = "vorbis_double.oga" ;
  148. SNDFILE * file ;
  149. SF_INFO sfinfo ;
  150. double seek_data [10] ;
  151. print_test_name ("ogg_double_test", filename) ;
  152. gen_windowed_sine_double (data_out.d, ARRAY_LEN (data_out.d), 0.95) ;
  153. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  154. /* Set up output file type. */
  155. sfinfo.format = SF_FORMAT_OGG | SF_FORMAT_VORBIS ;
  156. sfinfo.channels = 1 ;
  157. sfinfo.samplerate = SAMPLE_RATE ;
  158. /* Write the output file. */
  159. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_FALSE, __LINE__) ;
  160. test_write_double_or_die (file, 0, data_out.d, ARRAY_LEN (data_out.d), __LINE__) ;
  161. sf_close (file) ;
  162. /* Read the file in again. */
  163. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  164. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  165. test_read_double_or_die (file, 0, data_in.d, ARRAY_LEN (data_in.d), __LINE__) ;
  166. sf_close (file) ;
  167. puts ("ok") ;
  168. /* Test seeking. */
  169. print_test_name ("ogg_seek_test", filename) ;
  170. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  171. test_seek_or_die (file, 10, SEEK_SET, 10, sfinfo.channels, __LINE__) ;
  172. test_read_double_or_die (file, 0, seek_data, ARRAY_LEN (seek_data), __LINE__) ;
  173. compare_double_or_die (seek_data, data_in.d + 10, ARRAY_LEN (seek_data), __LINE__) ;
  174. sf_close (file) ;
  175. puts ("ok") ;
  176. unlink (filename) ;
  177. } /* ogg_double_test */
  178. static void
  179. ogg_stereo_seek_test (const char * filename, int format)
  180. { static float data [SAMPLE_RATE] ;
  181. static float stereo_out [SAMPLE_RATE * 2] ;
  182. SNDFILE * file ;
  183. SF_INFO sfinfo ;
  184. sf_count_t pos ;
  185. unsigned k ;
  186. print_test_name (__func__, filename) ;
  187. gen_windowed_sine_float (data, ARRAY_LEN (data), 0.95) ;
  188. for (k = 0 ; k < ARRAY_LEN (data) ; k++)
  189. { stereo_out [2 * k] = data [k] ;
  190.     stereo_out [2 * k + 1] = data [ARRAY_LEN (data) - k - 1] ;
  191. } ;
  192. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  193. /* Set up output file type. */
  194. sfinfo.format = format ;
  195. sfinfo.channels = 2 ;
  196. sfinfo.samplerate = SAMPLE_RATE ;
  197. /* Write the output file. */
  198. file = test_open_file_or_die (filename, SFM_WRITE, &sfinfo, SF_FALSE, __LINE__) ;
  199. test_write_float_or_die (file, 0, stereo_out, ARRAY_LEN (stereo_out), __LINE__) ;
  200. sf_close (file) ;
  201. /* Open file in again for reading. */
  202. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  203. file = test_open_file_or_die (filename, SFM_READ, &sfinfo, SF_FALSE, __LINE__) ;
  204. /* Read in the whole file. */
  205. test_read_float_or_die (file, 0, stereo_out, ARRAY_LEN (stereo_out), __LINE__) ;
  206. /* Now hammer seeking code. */
  207. test_seek_or_die (file, 234, SEEK_SET, 234, sfinfo.channels, __LINE__) ;
  208. test_readf_float_or_die (file, 0, data, 10, __LINE__) ;
  209. compare_float_or_die (data, stereo_out + (234 * sfinfo.channels), 10, __LINE__) ;
  210. test_seek_or_die (file, 442, SEEK_SET, 442, sfinfo.channels, __LINE__) ;
  211. test_readf_float_or_die (file, 0, data, 10, __LINE__) ;
  212. compare_float_or_die (data, stereo_out + (442 * sfinfo.channels), 10, __LINE__) ;
  213. test_seek_or_die (file, 12, SEEK_CUR, 442 + 10 + 12, sfinfo.channels, __LINE__) ;
  214. test_readf_float_or_die (file, 0, data, 10, __LINE__) ;
  215. compare_float_or_die (data, stereo_out + ((442 + 10 + 12) * sfinfo.channels), 10, __LINE__) ;
  216. test_seek_or_die (file, 12, SEEK_CUR, 442 + 20 + 24, sfinfo.channels, __LINE__) ;
  217. test_readf_float_or_die (file, 0, data, 10, __LINE__) ;
  218. compare_float_or_die (data, stereo_out + ((442 + 20 + 24) * sfinfo.channels), 10, __LINE__) ;
  219. pos = 500 - sfinfo.frames ;
  220. test_seek_or_die (file, pos, SEEK_END, 500, sfinfo.channels, __LINE__) ;
  221. test_readf_float_or_die (file, 0, data, 10, __LINE__) ;
  222. compare_float_or_die (data, stereo_out + (500 * sfinfo.channels), 10, __LINE__) ;
  223. pos = 10 - sfinfo.frames ;
  224. test_seek_or_die (file, pos, SEEK_END, 10, sfinfo.channels, __LINE__) ;
  225. test_readf_float_or_die (file, 0, data, 10, __LINE__) ;
  226. compare_float_or_die (data, stereo_out + (10 * sfinfo.channels), 10, __LINE__) ;
  227. sf_close (file) ;
  228. puts ("ok") ;
  229. unlink (filename) ;
  230. } /* ogg_stereo_seek_test */
  231. int
  232. main (void)
  233. {
  234. if (HAVE_EXTERNAL_LIBS)
  235. { ogg_short_test () ;
  236. ogg_int_test () ;
  237. ogg_float_test () ;
  238. ogg_double_test () ;
  239. /*-ogg_stereo_seek_test ("pcm.wav", SF_FORMAT_WAV | SF_FORMAT_PCM_16) ;-*/
  240. ogg_stereo_seek_test ("vorbis_seek.ogg", SF_FORMAT_OGG | SF_FORMAT_VORBIS) ;
  241. }
  242. else
  243. puts ("    No Ogg/Vorbis tests because Ogg/Vorbis support was not compiled in.") ;
  244. return 0 ;
  245. } /* main */