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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 1999-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. #if HAVE_UNISTD_H
  22. #include <unistd.h>
  23. #endif
  24. #if (HAVE_DECL_S_IRGRP == 0)
  25. #include <sf_unistd.h>
  26. #endif
  27. #include <fcntl.h>
  28. #include <math.h>
  29. #include <string.h>
  30. #include <errno.h>
  31. #include <sys/stat.h>
  32. #include <sndfile.h>
  33. #include "utils.h"
  34. #define DATA_LENGTH  (512)
  35. static void write_file_at_end (int fd, int filetype, int channels, int file_num) ;
  36. static void multi_file_test (const char *filename, int *formats, int format_count) ;
  37. static short data [DATA_LENGTH] ;
  38. static int  wav_formats [] =
  39. { SF_FORMAT_WAV | SF_FORMAT_PCM_16,
  40. SF_FORMAT_WAV | SF_FORMAT_PCM_24,
  41. SF_FORMAT_WAV | SF_FORMAT_ULAW,
  42. SF_FORMAT_WAV | SF_FORMAT_ALAW,
  43. /* Lite remove start */
  44. SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM,
  45. SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM,
  46. /* Lite remove end */
  47. /*-SF_FORMAT_WAV | SF_FORMAT_GSM610 Doesn't work yet. -*/
  48. } ;
  49. static int  aiff_formats [] =
  50. { SF_FORMAT_AIFF | SF_FORMAT_PCM_16,
  51. SF_FORMAT_AIFF | SF_FORMAT_PCM_24,
  52. SF_FORMAT_AIFF | SF_FORMAT_ULAW,
  53. SF_FORMAT_AIFF | SF_FORMAT_ALAW
  54. } ;
  55. static int  au_formats [] =
  56. { SF_FORMAT_AU | SF_FORMAT_PCM_16,
  57. SF_FORMAT_AU | SF_FORMAT_PCM_24,
  58. SF_FORMAT_AU | SF_FORMAT_ULAW,
  59. SF_FORMAT_AU | SF_FORMAT_ALAW
  60. } ;
  61. static int verbose = SF_FALSE ;
  62. int
  63. main (int argc, char **argv)
  64. { int do_all = 0 ;
  65. int test_count = 0 ;
  66. if (argc == 3 && strcmp (argv [2], "-v") == 0)
  67. { verbose = SF_TRUE ;
  68. argc -- ;
  69. } ;
  70. if (argc != 2)
  71. { printf ("Usage : %s <test>n", argv [0]) ;
  72. printf ("    Where <test> is one of the following:n") ;
  73. printf ("           wav   - test WAV file functions (little endian)n") ;
  74. printf ("           aiff  - test AIFF file functions (big endian)n") ;
  75. printf ("           au    - test AU file functionsn") ;
  76. #if 0
  77. printf ("           svx   - test 8SVX/16SV file functionsn") ;
  78. printf ("           nist  - test NIST Sphere file functionsn") ;
  79. printf ("           ircam - test IRCAM file functionsn") ;
  80. printf ("           voc   - Create Voice file functionsn") ;
  81. printf ("           w64   - Sonic Foundry's W64 file functionsn") ;
  82. #endif
  83. printf ("           all   - perform all testsn") ;
  84. exit (1) ;
  85. } ;
  86. do_all = !strcmp (argv [1], "all") ;
  87. if (do_all || ! strcmp (argv [1], "wav"))
  88. { multi_file_test ("multi_wav.dat", wav_formats, ARRAY_LEN (wav_formats)) ;
  89. test_count++ ;
  90. } ;
  91. if (do_all || ! strcmp (argv [1], "aiff"))
  92. { multi_file_test ("multi_aiff.dat", aiff_formats, ARRAY_LEN (aiff_formats)) ;
  93. test_count++ ;
  94. } ;
  95. if (do_all || ! strcmp (argv [1], "au"))
  96. { multi_file_test ("multi_au.dat", au_formats, ARRAY_LEN (au_formats)) ;
  97. test_count++ ;
  98. } ;
  99. return 0 ;
  100. } /* main */
  101. /*======================================================================================
  102. */
  103. static void
  104. multi_file_test (const char *filename, int *formats, int format_count)
  105. { SNDFILE *sndfile ;
  106. SF_INFO sfinfo ;
  107. SF_EMBED_FILE_INFO embed_info ;
  108. sf_count_t filelen ;
  109. int fd, k, file_count = 0 ;
  110. print_test_name ("multi_file_test", filename) ;
  111. unlink (filename) ;
  112. if ((fd = open (filename, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR)) < 0)
  113. { printf ("nnLine %d: open failed : %sn", __LINE__, strerror (errno)) ;
  114. exit (1) ;
  115. } ;
  116. k = write (fd, "1234", 4) ;
  117. for (k = 0 ; k < format_count ; k++)
  118. write_file_at_end (fd, formats [k], 2, k) ;
  119. filelen = file_length_fd (fd) ;
  120. embed_info.offset = 4 ;
  121. embed_info.length = 0 ;
  122. for (file_count = 1 ; embed_info.offset + embed_info.length < filelen ; file_count ++)
  123. {
  124. if (verbose)
  125. { puts ("n------------------------------------") ;
  126. printf ("This offset : %ldn", SF_COUNT_TO_LONG (embed_info.offset + embed_info.length)) ;
  127. } ;
  128. if (lseek (fd, embed_info.offset + embed_info.length, SEEK_SET) < 0)
  129. { printf ("nnLine %d: lseek failed : %sn", __LINE__, strerror (errno)) ;
  130. exit (1) ;
  131. } ;
  132. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  133. if ((sndfile = sf_open_fd (fd, SFM_READ, &sfinfo, SF_FALSE)) == NULL)
  134. { printf ("nnLine %d: sf_open_fd failedn", __LINE__) ;
  135. printf ("Embedded file number : %d   offset : %ldn", file_count, SF_COUNT_TO_LONG (embed_info.offset)) ;
  136. puts (sf_strerror (sndfile)) ;
  137. dump_log_buffer (sndfile) ;
  138. exit (1) ;
  139. } ;
  140. sf_command (sndfile, SFC_GET_EMBED_FILE_INFO, &embed_info, sizeof (embed_info)) ;
  141. sf_close (sndfile) ;
  142. if (verbose)
  143. printf ("nNext offset : %ldnNext length : %ldn", SF_COUNT_TO_LONG (embed_info.offset), SF_COUNT_TO_LONG (embed_info.length)) ;
  144. } ;
  145. file_count -- ;
  146. if (file_count != format_count)
  147. { printf ("nnLine %d: file count (%d) not equal to %d.nn", __LINE__, file_count, format_count) ;
  148. printf ("Embedded file number : %dn", file_count) ;
  149. exit (1) ;
  150. } ;
  151. close (fd) ;
  152. unlink (filename) ;
  153. printf ("okn") ;
  154. return ;
  155. } /* multi_file_test */
  156. /*======================================================================================
  157. */
  158. static void
  159. write_file_at_end (int fd, int filetype, int channels, int file_num)
  160. { SNDFILE *sndfile ;
  161. SF_INFO sfinfo ;
  162. int frames, k ;
  163. lseek (fd, 0, SEEK_END) ;
  164. for (k = 0 ; k < DATA_LENGTH ; k++)
  165. data [k] = k ;
  166. frames = DATA_LENGTH / channels ;
  167. sfinfo.format = filetype ;
  168. sfinfo.channels = channels ;
  169. sfinfo.samplerate = 44100 ;
  170. if ((sndfile = sf_open_fd (fd, SFM_WRITE, &sfinfo, SF_FALSE)) == NULL)
  171. { printf ("nnLine %d: sf_open_fd failedn", __LINE__) ;
  172. printf ("Embedded file number : %dn", file_num) ;
  173. puts (sf_strerror (sndfile)) ;
  174. dump_log_buffer (sndfile) ;
  175. exit (1) ;
  176. } ;
  177. if (sf_writef_short (sndfile, data, frames) != frames)
  178. { printf ("nnLine %d: short writen", __LINE__) ;
  179. printf ("Embedded file number : %dn", file_num) ;
  180. exit (1) ;
  181. } ;
  182. sf_close (sndfile) ;
  183. } /* write_file_at_end */