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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 1999-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. ** Copyright (C) 2008 George Blood Audio
  4. **
  5. ** All rights reserved.
  6. **
  7. ** Redistribution and use in source and binary forms, with or without
  8. ** modification, are permitted provided that the following conditions are
  9. ** met:
  10. **
  11. **     * Redistributions of source code must retain the above copyright
  12. **       notice, this list of conditions and the following disclaimer.
  13. **     * Redistributions in binary form must reproduce the above copyright
  14. **       notice, this list of conditions and the following disclaimer in
  15. **       the documentation and/or other materials provided with the
  16. **       distribution.
  17. **     * Neither the author nor the names of any contributors may be used
  18. **       to endorse or promote products derived from this software without
  19. **       specific prior written permission.
  20. **
  21. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  23. ** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  24. ** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  25. ** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  26. ** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  27. ** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  28. ** OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  29. ** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  30. ** OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  31. ** ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. */
  33. #include <stdio.h>
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include <ctype.h>
  37. #include <sndfile.h>
  38. #include "common.h"
  39. #define  BUFFER_LEN 4096
  40. #define MIN(x,y) ((x) < (y) ? (x) : (y))
  41. void
  42. sfe_copy_data_fp (SNDFILE *outfile, SNDFILE *infile, int channels)
  43. { static double data [BUFFER_LEN], max ;
  44. int frames, readcount, k ;
  45. frames = BUFFER_LEN / channels ;
  46. readcount = frames ;
  47. sf_command (infile, SFC_CALC_SIGNAL_MAX, &max, sizeof (max)) ;
  48. if (max < 1.0)
  49. { while (readcount > 0)
  50. { readcount = sf_readf_double (infile, data, frames) ;
  51. sf_writef_double (outfile, data, readcount) ;
  52. } ;
  53. }
  54. else
  55. { sf_command (infile, SFC_SET_NORM_DOUBLE, NULL, SF_FALSE) ;
  56. while (readcount > 0)
  57. { readcount = sf_readf_double (infile, data, frames) ;
  58. for (k = 0 ; k < readcount * channels ; k++)
  59. data [k] /= max ;
  60. sf_writef_double (outfile, data, readcount) ;
  61. } ;
  62. } ;
  63. return ;
  64. } /* sfe_copy_data_fp */
  65. void
  66. sfe_copy_data_int (SNDFILE *outfile, SNDFILE *infile, int channels)
  67. { static int data [BUFFER_LEN] ;
  68. int frames, readcount ;
  69. frames = BUFFER_LEN / channels ;
  70. readcount = frames ;
  71. while (readcount > 0)
  72. { readcount = sf_readf_int (infile, data, frames) ;
  73. sf_writef_int (outfile, data, readcount) ;
  74. } ;
  75. return ;
  76. } /* sfe_copy_data_int */
  77. /*==============================================================================
  78. */
  79. static int
  80. merge_broadcast_info (SNDFILE * infile, SNDFILE * outfile, int format, const METADATA_INFO * info)
  81. { SF_BROADCAST_INFO_2K binfo ;
  82. int infileminor ;
  83. memset (&binfo, 0, sizeof (binfo)) ;
  84. if ((SF_FORMAT_TYPEMASK & format) != SF_FORMAT_WAV)
  85. { printf ("Error : This is not a WAV file and hence broadcast info cannot be added to it.nn") ;
  86. return 1 ;
  87. } ;
  88. infileminor = SF_FORMAT_SUBMASK & format ;
  89. switch (infileminor)
  90. { case SF_FORMAT_PCM_16 :
  91. case SF_FORMAT_PCM_24 :
  92. case SF_FORMAT_PCM_32 :
  93. break ;
  94. default :
  95. printf (
  96. "Warning : The EBU Technical Recommendation R68-2000 states that the onlyn"
  97. "          allowed encodings are Linear PCM and MPEG3. This file is not inn"
  98. "          the right format.nn"
  99. ) ;
  100. break ;
  101. } ;
  102. if (sf_command (infile, SFC_GET_BROADCAST_INFO, &binfo, sizeof (binfo)) == 0)
  103. { if (infile == outfile)
  104. { printf (
  105. "Error : Attempting in-place broadcast info update, but file does notn"
  106. "        have a 'bext' chunk to modify. The solution is to specify bothn"
  107. "        input and output files on the command line.nn"
  108. ) ;
  109. return 1 ;
  110. } ;
  111. } ;
  112. #define REPLACE_IF_NEW(x) 
  113. if (info->x != NULL) 
  114. { memset (binfo.x, 0, sizeof (binfo.x)) ; 
  115. memcpy (binfo.x, info->x, MIN (strlen (info->x), sizeof (binfo.x))) ; 
  116. } ;
  117. REPLACE_IF_NEW (description) ;
  118. REPLACE_IF_NEW (originator) ;
  119. REPLACE_IF_NEW (originator_reference) ;
  120. REPLACE_IF_NEW (origination_date) ;
  121. REPLACE_IF_NEW (origination_time) ;
  122. REPLACE_IF_NEW (umid) ;
  123. /* Special case for coding_history because we may want to append. */
  124. if (info->coding_history != NULL)
  125. { if (info->coding_hist_append)
  126. { int slen = strlen (binfo.coding_history) ;
  127. while (slen > 1 && isspace (binfo.coding_history [slen - 1]))
  128. slen -- ;
  129. memcpy (binfo.coding_history + slen, info->coding_history, sizeof (binfo.coding_history) - slen) ;
  130. }
  131. else
  132. { size_t slen = MIN (strlen (info->coding_history), sizeof (binfo.coding_history)) ;
  133. memset (binfo.coding_history, 0, sizeof (binfo.coding_history)) ;
  134. memcpy (binfo.coding_history, info->coding_history, slen) ;
  135. binfo.coding_history_size = slen ;
  136. } ;
  137. } ;
  138. if (sf_command (outfile, SFC_SET_BROADCAST_INFO, &binfo, sizeof (binfo)) == 0)
  139. { printf ("Error : Setting of broadcast info chunks failed.nn") ;
  140. return 1 ;
  141. } ;
  142. return 0 ;
  143. } /* merge_broadcast_info*/
  144. static void
  145. update_strings (SNDFILE * outfile, const METADATA_INFO * info)
  146. {
  147. if (info->title != NULL)
  148. sf_set_string (outfile, SF_STR_TITLE, info->title) ;
  149. if (info->copyright != NULL)
  150. sf_set_string (outfile, SF_STR_TITLE, info->copyright) ;
  151. if (info->artist != NULL)
  152. sf_set_string (outfile, SF_STR_ARTIST, info->artist) ;
  153. if (info->comment != NULL)
  154. sf_set_string (outfile, SF_STR_TITLE, info->comment) ;
  155. if (info->date != NULL)
  156. sf_set_string (outfile, SF_STR_DATE, info->date) ;
  157. if (info->album != NULL)
  158. sf_set_string (outfile, SF_STR_TITLE, info->album) ;
  159. if (info->license != NULL)
  160. sf_set_string (outfile, SF_STR_TITLE, info->license) ;
  161. } /* update_strings */
  162. void
  163. sfe_apply_metadata_changes (const char * filenames [2], const METADATA_INFO * info)
  164. { SNDFILE *infile = NULL, *outfile = NULL ;
  165. SF_INFO sfinfo ;
  166. METADATA_INFO tmpinfo ;
  167. int error_code = 0 ;
  168. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  169. memset (&tmpinfo, 0, sizeof (tmpinfo)) ;
  170. if (filenames [1] == NULL)
  171. infile = outfile = sf_open (filenames [0], SFM_RDWR, &sfinfo) ;
  172. else
  173. { infile = sf_open (filenames [0], SFM_READ, &sfinfo) ;
  174. /* Output must be WAV. */
  175. sfinfo.format = SF_FORMAT_WAV | (SF_FORMAT_SUBMASK & sfinfo.format) ;
  176. outfile = sf_open (filenames [1], SFM_WRITE, &sfinfo) ;
  177. } ;
  178. if (infile == NULL)
  179. { printf ("Error : Not able to open input file '%s' : %sn", filenames [0], sf_strerror (infile)) ;
  180. error_code = 1 ;
  181. goto cleanup_exit ;
  182. } ;
  183. if (outfile == NULL)
  184. { printf ("Error : Not able to open output file '%s' : %sn", filenames [1], sf_strerror (outfile)) ;
  185. error_code = 1 ;
  186. goto cleanup_exit ;
  187. } ;
  188. if (info->has_bext_fields && merge_broadcast_info (infile, outfile, sfinfo.format, info))
  189. { error_code = 1 ;
  190. goto cleanup_exit ;
  191. } ;
  192. update_strings (outfile, info) ;
  193. if (infile != outfile)
  194. { int infileminor = SF_FORMAT_SUBMASK & sfinfo.format ;
  195. /* If the input file is not the same as the output file, copy the data. */
  196. if ((infileminor == SF_FORMAT_DOUBLE) || (infileminor == SF_FORMAT_FLOAT))
  197. sfe_copy_data_fp (outfile, infile, sfinfo.channels) ;
  198. else
  199. sfe_copy_data_int (outfile, infile, sfinfo.channels) ;
  200. } ;
  201. cleanup_exit :
  202. if (outfile != NULL && outfile != infile)
  203. sf_close (outfile) ;
  204. if (infile != NULL)
  205. sf_close (infile) ;
  206. if (error_code)
  207. exit (error_code) ;
  208. return ;
  209. } /* sfe_apply_metadata_changes */
  210. /*==============================================================================
  211. */
  212. typedef struct
  213. { const char *ext ;
  214. int len ;
  215. int format ;
  216. } OUTPUT_FORMAT_MAP ;
  217. static OUTPUT_FORMAT_MAP format_map [] =
  218. {
  219. { "aif", 3, SF_FORMAT_AIFF },
  220. { "wav",  0, SF_FORMAT_WAV },
  221. { "au", 0, SF_FORMAT_AU },
  222. { "caf", 0, SF_FORMAT_CAF },
  223. { "flac", 0, SF_FORMAT_FLAC },
  224. { "snd", 0, SF_FORMAT_AU },
  225. { "svx", 0, SF_FORMAT_SVX },
  226. { "paf", 0, SF_ENDIAN_BIG | SF_FORMAT_PAF },
  227. { "fap", 0, SF_ENDIAN_LITTLE | SF_FORMAT_PAF },
  228. { "gsm", 0, SF_FORMAT_RAW },
  229. { "nist",  0, SF_FORMAT_NIST },
  230. { "htk", 0, SF_FORMAT_HTK },
  231. { "ircam", 0, SF_FORMAT_IRCAM },
  232. { "sf", 0,  SF_FORMAT_IRCAM },
  233. { "voc", 0,  SF_FORMAT_VOC },
  234. { "w64",  0,  SF_FORMAT_W64 },
  235. { "raw", 0, SF_FORMAT_RAW },
  236. { "mat4",  0, SF_FORMAT_MAT4 },
  237. { "mat5",  0,  SF_FORMAT_MAT5  },
  238. { "mat", 0,  SF_FORMAT_MAT4  },
  239. { "pvf", 0,  SF_FORMAT_PVF  },
  240. { "sds", 0,  SF_FORMAT_SDS  },
  241. { "sd2", 0,  SF_FORMAT_SD2  },
  242. { "vox", 0,  SF_FORMAT_RAW  },
  243. { "xi", 0,  SF_FORMAT_XI  },
  244. { "wve", 0, SF_FORMAT_WVE },
  245. { "oga", 0, SF_FORMAT_OGG },
  246. { "mpc", 0, SF_FORMAT_MPC2K },
  247. { "rf64", 0, SF_FORMAT_RF64 },
  248. } ; /* format_map */
  249. int
  250. sfe_file_type_of_ext (const char *str, int format)
  251. { char buffer [16], *cptr ;
  252. int k ;
  253. format &= SF_FORMAT_SUBMASK ;
  254. if ((cptr = strrchr (str, '.')) == NULL)
  255. return 0 ;
  256. strncpy (buffer, cptr + 1, 15) ;
  257. buffer [15] = 0 ;
  258. for (k = 0 ; buffer [k] ; k++)
  259. buffer [k] = tolower ((buffer [k])) ;
  260. if (strcmp (buffer, "gsm") == 0)
  261. return SF_FORMAT_RAW | SF_FORMAT_GSM610 ;
  262. if (strcmp (buffer, "vox") == 0)
  263. return SF_FORMAT_RAW | SF_FORMAT_VOX_ADPCM ;
  264. for (k = 0 ; k < (int) (sizeof (format_map) / sizeof (format_map [0])) ; k++)
  265. { if (format_map [k].len > 0 && strncmp (buffer, format_map [k].ext, format_map [k].len) == 0)
  266. return format_map [k].format | format ;
  267. else if (strcmp (buffer, format_map [k].ext) == 0)
  268. return format_map [k].format | format ;
  269. } ;
  270. /* Default if all the above fails. */
  271. return (SF_FORMAT_WAV | SF_FORMAT_PCM_24) ;
  272. } /* sfe_file_type_of_ext */
  273. void
  274. sfe_dump_format_map (void)
  275. { SF_FORMAT_INFO info ;
  276. int k ;
  277. for (k = 0 ; k < ARRAY_LEN (format_map) ; k++)
  278. { info.format = format_map [k].format ;
  279. sf_command (NULL, SFC_GET_FORMAT_INFO, &info, sizeof (info)) ;
  280. printf ("        %-10s : %sn", format_map [k].ext, info.name == NULL ? "????" : info.name) ;
  281. } ;
  282. } /* sfe_dump_format_map */