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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 1999-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 <stdio.h>
  33. #include <stdlib.h>
  34. #include <string.h>
  35. #include <ctype.h>
  36. #include <sndfile.h>
  37. #include "common.h"
  38. typedef struct
  39. { char *infilename, *outfilename ;
  40. SF_INFO infileinfo, outfileinfo ;
  41. } OptionData ;
  42. static void copy_metadata (SNDFILE *outfile, SNDFILE *infile, int channels) ;
  43. static void
  44. print_usage (char *progname)
  45. {
  46. printf ("nUsage : %s [options] [encoding] <input file> <output file>n", progname) ;
  47. puts ("n"
  48. "    where [option] may be:nn"
  49. "        -override-sample-rate=X  : force sample rate of input to Xn"
  50. ) ;
  51. puts (
  52. "    where [encoding] may be one of the following:nn"
  53. "        -pcms8     : force the output to signed 8 bit pcmn"
  54. "        -pcmu8     : force the output to unsigned 8 bit pcmn"
  55. "        -pcm16     : force the output to 16 bit pcmn"
  56. "        -pcm24     : force the output to 24 bit pcmn"
  57. "        -pcm32     : force the output to 32 bit pcmn"
  58. "        -float32   : force the output to 32 bit floating point"
  59. ) ;
  60. puts (
  61. "        -ulaw      : force the output ULAWn"
  62. "        -alaw      : force the output ALAWn"
  63. "        -ima-adpcm : force the output to IMA ADPCM (WAV only)n"
  64. "        -ms-adpcm  : force the output to MS ADPCM (WAV only)n"
  65. "        -gsm610    : force the GSM6.10 (WAV only)n"
  66. "        -dwvw12    : force the output to 12 bit DWVW (AIFF only)n"
  67. "        -dwvw16    : force the output to 16 bit DWVW (AIFF only)n"
  68. "        -dwvw24    : force the output to 24 bit DWVW (AIFF only)n"
  69. "        -vorbis    : force the output to Vorbis (OGG only)n"
  70. ) ;
  71. puts (
  72. "    The format of the output file is determined by the file extension of then"
  73. "    output file name. The following extensions are currently understood:n"
  74. ) ;
  75. sfe_dump_format_map () ;
  76. puts ("") ;
  77. } /* print_usage */
  78. int
  79. main (int argc, char * argv [])
  80. { char  *progname, *infilename, *outfilename ;
  81. SNDFILE   *infile = NULL, *outfile = NULL ;
  82. SF_INFO   sfinfo ;
  83. int k, outfilemajor, outfileminor = 0, infileminor ;
  84. int override_sample_rate = 0 ; /* assume no sample rate override. */
  85. progname = strrchr (argv [0], '/') ;
  86. progname = progname ? progname + 1 : argv [0] ;
  87. if (argc < 3 || argc > 5)
  88. { print_usage (progname) ;
  89. return 1 ;
  90. } ;
  91. infilename = argv [argc-2] ;
  92. outfilename = argv [argc-1] ;
  93. if (strcmp (infilename, outfilename) == 0)
  94. { printf ("Error : Input and output filenames are the same.nn") ;
  95. print_usage (progname) ;
  96. return 1 ;
  97. } ;
  98. if (strlen (infilename) > 1 && infilename [0] == '-')
  99. { printf ("Error : Input filename (%s) looks like an option.nn", infilename) ;
  100. print_usage (progname) ;
  101. return 1 ;
  102. } ;
  103. if (outfilename [0] == '-')
  104. { printf ("Error : Output filename (%s) looks like an option.nn", outfilename) ;
  105. print_usage (progname) ;
  106. return 1 ;
  107. } ;
  108. for (k = 1 ; k < argc - 2 ; k++)
  109. { if (! strcmp (argv [k], "-pcms8"))
  110. { outfileminor = SF_FORMAT_PCM_S8 ;
  111. continue ;
  112. } ;
  113. if (! strcmp (argv [k], "-pcmu8"))
  114. { outfileminor = SF_FORMAT_PCM_U8 ;
  115. continue ;
  116. } ;
  117. if (! strcmp (argv [k], "-pcm16"))
  118. { outfileminor = SF_FORMAT_PCM_16 ;
  119. continue ;
  120. } ;
  121. if (! strcmp (argv [k], "-pcm24"))
  122. { outfileminor = SF_FORMAT_PCM_24 ;
  123. continue ;
  124. } ;
  125. if (! strcmp (argv [k], "-pcm32"))
  126. { outfileminor = SF_FORMAT_PCM_32 ;
  127. continue ;
  128. } ;
  129. if (! strcmp (argv [k], "-float32"))
  130. { outfileminor = SF_FORMAT_FLOAT ;
  131. continue ;
  132. } ;
  133. if (! strcmp (argv [k], "-ulaw"))
  134. { outfileminor = SF_FORMAT_ULAW ;
  135. continue ;
  136. } ;
  137. if (! strcmp (argv [k], "-alaw"))
  138. { outfileminor = SF_FORMAT_ALAW ;
  139. continue ;
  140. } ;
  141. if (! strcmp (argv [k], "-ima-adpcm"))
  142. { outfileminor = SF_FORMAT_IMA_ADPCM ;
  143. continue ;
  144. } ;
  145. if (! strcmp (argv [k], "-ms-adpcm"))
  146. { outfileminor = SF_FORMAT_MS_ADPCM ;
  147. continue ;
  148. } ;
  149. if (! strcmp (argv [k], "-gsm610"))
  150. { outfileminor = SF_FORMAT_GSM610 ;
  151. continue ;
  152. } ;
  153. if (! strcmp (argv [k], "-dwvw12"))
  154. { outfileminor = SF_FORMAT_DWVW_12 ;
  155. continue ;
  156. } ;
  157. if (! strcmp (argv [k], "-dwvw16"))
  158. { outfileminor = SF_FORMAT_DWVW_16 ;
  159. continue ;
  160. } ;
  161. if (! strcmp (argv [k], "-dwvw24"))
  162. { outfileminor = SF_FORMAT_DWVW_24 ;
  163. continue ;
  164. } ;
  165. if (! strcmp (argv [k], "-vorbis"))
  166. { outfileminor = SF_FORMAT_VORBIS ;
  167. continue ;
  168. } ;
  169. if (strstr (argv [k], "-override-sample-rate=") == argv [k])
  170. { const char *ptr ;
  171. ptr = argv [k] + strlen ("-override-sample-rate=") ;
  172. override_sample_rate = atoi (ptr) ;
  173. continue ;
  174. } ;
  175. printf ("Error : Not able to decode argunment '%s'.n", argv [k]) ;
  176. exit (1) ;
  177. } ;
  178. if ((infile = sf_open (infilename, SFM_READ, &sfinfo)) == NULL)
  179. { printf ("Not able to open input file %s.n", infilename) ;
  180. puts (sf_strerror (NULL)) ;
  181. return 1 ;
  182. } ;
  183. /* Update sample rate if forced to something else. */
  184. if (override_sample_rate)
  185. sfinfo.samplerate = override_sample_rate ;
  186. infileminor = sfinfo.format & SF_FORMAT_SUBMASK ;
  187. if ((sfinfo.format = sfe_file_type_of_ext (outfilename, sfinfo.format)) == 0)
  188. { printf ("Error : Not able to determine output file type for %s.n", outfilename) ;
  189. return 1 ;
  190. } ;
  191. outfilemajor = sfinfo.format & (SF_FORMAT_TYPEMASK | SF_FORMAT_ENDMASK) ;
  192. if (outfileminor == 0)
  193. outfileminor = sfinfo.format & SF_FORMAT_SUBMASK ;
  194. if (outfileminor != 0)
  195. sfinfo.format = outfilemajor | outfileminor ;
  196. else
  197. sfinfo.format = outfilemajor | (sfinfo.format & SF_FORMAT_SUBMASK) ;
  198. if ((sfinfo.format & SF_FORMAT_TYPEMASK) == SF_FORMAT_XI)
  199. switch (sfinfo.format & SF_FORMAT_SUBMASK)
  200. { case SF_FORMAT_PCM_16 :
  201. sfinfo.format = outfilemajor | SF_FORMAT_DPCM_16 ;
  202. break ;
  203. case SF_FORMAT_PCM_S8 :
  204. case SF_FORMAT_PCM_U8 :
  205. sfinfo.format = outfilemajor | SF_FORMAT_DPCM_8 ;
  206. break ;
  207. } ;
  208. if (sf_format_check (&sfinfo) == 0)
  209. { printf ("Error : output file format is invalid (0x%08X).n", sfinfo.format) ;
  210. return 1 ;
  211. } ;
  212. /* Open the output file. */
  213. if ((outfile = sf_open (outfilename, SFM_WRITE, &sfinfo)) == NULL)
  214. { printf ("Not able to open output file %s : %sn", outfilename, sf_strerror (NULL)) ;
  215. return 1 ;
  216. } ;
  217. /* Copy the metadata */
  218. copy_metadata (outfile, infile, sfinfo.channels) ;
  219. if ((outfileminor == SF_FORMAT_DOUBLE) || (outfileminor == SF_FORMAT_FLOAT)
  220. || (infileminor == SF_FORMAT_DOUBLE) || (infileminor == SF_FORMAT_FLOAT)
  221. || (infileminor == SF_FORMAT_VORBIS) || (outfileminor == SF_FORMAT_VORBIS))
  222. sfe_copy_data_fp (outfile, infile, sfinfo.channels) ;
  223. else
  224. sfe_copy_data_int (outfile, infile, sfinfo.channels) ;
  225. sf_close (infile) ;
  226. sf_close (outfile) ;
  227. return 0 ;
  228. } /* main */
  229. static void
  230. copy_metadata (SNDFILE *outfile, SNDFILE *infile, int channels)
  231. { SF_INSTRUMENT inst ;
  232. SF_BROADCAST_INFO_2K binfo ;
  233. const char *str ;
  234. int k, err = 0, chanmap [256] ;
  235. for (k = SF_STR_FIRST ; k <= SF_STR_LAST ; k++)
  236. { str = sf_get_string (infile, k) ;
  237. if (str != NULL)
  238. err = sf_set_string (outfile, k, str) ;
  239. } ;
  240. memset (&inst, 0, sizeof (inst)) ;
  241. memset (&binfo, 0, sizeof (binfo)) ;
  242. if (channels < ARRAY_LEN (chanmap))
  243. { size_t size = channels * sizeof (chanmap [0]) ;
  244. if (sf_command (infile, SFC_GET_CHANNEL_MAP_INFO, chanmap, size) == SF_TRUE)
  245. sf_command (outfile, SFC_SET_CHANNEL_MAP_INFO, chanmap, size) ;
  246. } ;
  247. if (sf_command (infile, SFC_GET_INSTRUMENT, &inst, sizeof (inst)) == SF_TRUE)
  248. sf_command (outfile, SFC_SET_INSTRUMENT, &inst, sizeof (inst)) ;
  249. if (sf_command (infile, SFC_GET_BROADCAST_INFO, &binfo, sizeof (binfo)) == SF_TRUE)
  250. sf_command (outfile, SFC_SET_BROADCAST_INFO, &binfo, sizeof (binfo)) ;
  251. } /* copy_metadata */