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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2002-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. **
  4. ** All rights reserved.
  5. **
  6. ** Redistribution and use in source and binary forms, with or without
  7. ** modification, are permitted provided that the following conditions are
  8. ** met:
  9. **
  10. **     * Redistributions of source code must retain the above copyright
  11. **       notice, this list of conditions and the following disclaimer.
  12. **     * Redistributions in binary form must reproduce the above copyright
  13. **       notice, this list of conditions and the following disclaimer in
  14. **       the documentation and/or other materials provided with the
  15. **       distribution.
  16. **     * Neither the author nor the names of any contributors may be used
  17. **       to endorse or promote products derived from this software without
  18. **       specific prior written permission.
  19. **
  20. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  22. ** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23. ** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  24. ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25. ** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. ** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  27. ** OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  28. ** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  29. ** OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  30. ** ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #include "sfconfig.h"
  33. #include <stdio.h>
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include <math.h>
  37. #include <sndfile.h>
  38. #define BUFFER_LEN 4096
  39. static void encode_file (const char *infilename, const char *outfilename, int filetype) ;
  40. int
  41. main (int argc, char **argv)
  42. {
  43. if (argc != 2)
  44. { puts ("nEncode a single input file into a number of different output ") ;
  45. puts ("encodings. These output encodings can then be moved to another ") ;
  46. puts ("OS for testing.n") ;
  47. puts ("    Usage : generate <filename>n") ;
  48. exit (1) ;
  49. } ;
  50. /* A couple of standard WAV files. Make sure Win32 plays these. */
  51. encode_file (argv [1], "pcmu8.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_U8) ;
  52. encode_file (argv [1], "pcm16.wav" , SF_FORMAT_WAV | SF_FORMAT_PCM_16) ;
  53. encode_file (argv [1], "imaadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_MS_ADPCM) ;
  54. encode_file (argv [1], "msadpcm.wav", SF_FORMAT_WAV | SF_FORMAT_IMA_ADPCM) ;
  55. encode_file (argv [1], "gsm610.wav" , SF_FORMAT_WAV | SF_FORMAT_GSM610) ;
  56. /* Soundforge W64. */
  57. encode_file (argv [1], "pcmu8.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_U8) ;
  58. encode_file (argv [1], "pcm16.w64" , SF_FORMAT_W64 | SF_FORMAT_PCM_16) ;
  59. encode_file (argv [1], "imaadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_MS_ADPCM) ;
  60. encode_file (argv [1], "msadpcm.w64", SF_FORMAT_W64 | SF_FORMAT_IMA_ADPCM) ;
  61. encode_file (argv [1], "gsm610.w64" , SF_FORMAT_W64 | SF_FORMAT_GSM610) ;
  62. return 0 ;
  63. } /* main */
  64. /*============================================================================================
  65. ** Helper functions and macros.
  66. */
  67. #define PUT_DOTS(k)
  68. { while (k--)
  69. putchar ('.') ;
  70. putchar (' ') ;
  71. }
  72. /*========================================================================================
  73. */
  74. static void
  75. encode_file (const char *infilename, const char *outfilename, int filetype)
  76. { static float buffer [BUFFER_LEN] ;
  77. SNDFILE *infile, *outfile ;
  78. SF_INFO sfinfo ;
  79. int k, readcount ;
  80. printf ("    %s -> %s ", infilename, outfilename) ;
  81. fflush (stdout) ;
  82. k = 16 - strlen (outfilename) ;
  83. PUT_DOTS (k) ;
  84. if (! (infile = sf_open (infilename, SFM_READ, &sfinfo)))
  85. { printf ("Error : could not open file : %sn", infilename) ;
  86. puts (sf_strerror (NULL)) ;
  87. exit (1) ;
  88. }
  89. sfinfo.format = filetype ;
  90. if (! sf_format_check (&sfinfo))
  91. { sf_close (infile) ;
  92. printf ("Invalid encodingn") ;
  93. return ;
  94. } ;
  95. if (! (outfile = sf_open (outfilename, SFM_WRITE, &sfinfo)))
  96. { printf ("Error : could not open file : %sn", outfilename) ;
  97. puts (sf_strerror (NULL)) ;
  98. exit (1) ;
  99. } ;
  100. while ((readcount = sf_read_float (infile, buffer, BUFFER_LEN)) > 0)
  101. sf_write_float (outfile, buffer, readcount) ;
  102. sf_close (infile) ;
  103. sf_close (outfile) ;
  104. printf ("okn") ;
  105. return ;
  106. } /* encode_file */