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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2008-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. ** Copyright (C) 2009      Uli Franke <cls@nebadje.org>
  4. **
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU Lesser General Public License as published by
  7. ** the Free Software Foundation; either version 2.1 of the License, or
  8. ** (at your option) any later version.
  9. **
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ** GNU Lesser General Public License for more details.
  14. **
  15. ** You should have received a copy of the GNU Lesser General Public License
  16. ** along with this program; if not, write to the Free Software
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. /*
  20. ** This format documented at:
  21. ** http://www.sr.se/utveckling/tu/bwf/prog/RF_64v1_4.pdf
  22. **
  23. ** But this may be a better reference:
  24. ** http://www.ebu.ch/CMSimages/en/tec_doc_t3306-2007_tcm6-42570.pdf
  25. */
  26. #include "sfconfig.h"
  27. #include <stdio.h>
  28. #include <fcntl.h>
  29. #include <string.h>
  30. #include <ctype.h>
  31. #include "sndfile.h"
  32. #include "sfendian.h"
  33. #include "common.h"
  34. #include "wav_w64.h"
  35. /*------------------------------------------------------------------------------
  36. ** Macros to handle big/little endian issues.
  37. */
  38. #define RF64_MARKER MAKE_MARKER ('R', 'F', '6', '4')
  39. #define FFFF_MARKER MAKE_MARKER (0xff, 0xff, 0xff, 0xff)
  40. #define WAVE_MARKER MAKE_MARKER ('W', 'A', 'V', 'E')
  41. #define ds64_MARKER MAKE_MARKER ('d', 's', '6', '4')
  42. #define fmt_MARKER MAKE_MARKER ('f', 'm', 't', ' ')
  43. #define fact_MARKER MAKE_MARKER ('f', 'a', 'c', 't')
  44. #define data_MARKER MAKE_MARKER ('d', 'a', 't', 'a')
  45. #define bext_MARKER MAKE_MARKER ('b', 'e', 'x', 't')
  46. #define OggS_MARKER MAKE_MARKER ('O', 'g', 'g', 'S')
  47. #define wvpk_MARKER  MAKE_MARKER ('w', 'v', 'p', 'k')
  48. /*------------------------------------------------------------------------------
  49. ** Typedefs.
  50. */
  51. /*------------------------------------------------------------------------------
  52. ** Private static functions.
  53. */
  54. static int rf64_read_header (SF_PRIVATE *psf, int *blockalign, int *framesperblock) ;
  55. static int rf64_write_header (SF_PRIVATE *psf, int calc_length) ;
  56. static int rf64_close (SF_PRIVATE *psf) ;
  57. static int rf64_command (SF_PRIVATE *psf, int command, void * UNUSED (data), int datasize) ;
  58. /*------------------------------------------------------------------------------
  59. ** Public function.
  60. */
  61. int
  62. rf64_open (SF_PRIVATE *psf)
  63. { WAV_PRIVATE *wpriv ;
  64. int subformat, error = 0 ;
  65. int blockalign, framesperblock ;
  66. if ((wpriv = calloc (1, sizeof (WAV_PRIVATE))) == NULL)
  67. return SFE_MALLOC_FAILED ;
  68. psf->container_data = wpriv ;
  69. wpriv->wavex_ambisonic = SF_AMBISONIC_NONE ;
  70. /* All RF64 files are little endian. */
  71. psf->endian = SF_ENDIAN_LITTLE ;
  72. if (psf->file.mode == SFM_READ || (psf->file.mode == SFM_RDWR && psf->filelength > 0))
  73. { if ((error = rf64_read_header (psf, &blockalign, &framesperblock)) != 0)
  74. return error ;
  75. } ;
  76. if ((psf->sf.format & SF_FORMAT_TYPEMASK) != SF_FORMAT_RF64)
  77. return SFE_BAD_OPEN_FORMAT ;
  78. subformat = psf->sf.format & SF_FORMAT_SUBMASK ;
  79. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  80. { if (psf->is_pipe)
  81. return SFE_NO_PIPE_WRITE ;
  82. psf->blockwidth = psf->bytewidth * psf->sf.channels ;
  83. if ((error = rf64_write_header (psf, SF_FALSE)))
  84. return error ;
  85. psf->write_header = rf64_write_header ;
  86. } ;
  87. psf->container_close = rf64_close ;
  88. psf->command = rf64_command ;
  89. switch (subformat)
  90. { case SF_FORMAT_PCM_U8 :
  91. case SF_FORMAT_PCM_16 :
  92. case SF_FORMAT_PCM_24 :
  93. case SF_FORMAT_PCM_32 :
  94. error = pcm_init (psf) ;
  95. break ;
  96. case SF_FORMAT_ULAW :
  97. error = ulaw_init (psf) ;
  98. break ;
  99. case SF_FORMAT_ALAW :
  100. error = alaw_init (psf) ;
  101. break ;
  102. /* Lite remove start */
  103. case SF_FORMAT_FLOAT :
  104. error = float32_init (psf) ;
  105. break ;
  106. case SF_FORMAT_DOUBLE :
  107. error = double64_init (psf) ;
  108. break ;
  109. /* Lite remove end */
  110. default :  return SFE_UNIMPLEMENTED ;
  111. } ;
  112. return error ;
  113. } /* rf64_open */
  114. /*------------------------------------------------------------------------------
  115. */
  116. enum
  117. { HAVE_ds64 = 0x01,
  118. HAVE_fmt = 0x02,
  119. HAVE_bext = 0x04,
  120. HAVE_data = 0x08
  121. } ;
  122. #define HAVE_CHUNK(CHUNK) ((parsestage & CHUNK) != 0)
  123. static int
  124. rf64_read_header (SF_PRIVATE *psf, int *blockalign, int *framesperblock)
  125. { WAV_PRIVATE *wpriv ;
  126. WAV_FMT *wav_fmt ;
  127. sf_count_t riff_size = 0, sample_count = 0 ;
  128. unsigned int size32, parsestage = 0 ;
  129. int marker, marks [2], error, done = 0, format = 0 ;
  130. if ((wpriv = psf->container_data) == NULL)
  131. return SFE_INTERNAL ;
  132. wav_fmt = &wpriv->wav_fmt ;
  133. /* Set position to start of file to begin reading header. */
  134. psf_binheader_readf (psf, "pmmm", 0, &marker, marks, marks + 1) ;
  135. if (marker != RF64_MARKER || marks [0] != FFFF_MARKER || marks [1] != WAVE_MARKER)
  136. return SFE_RF64_NOT_RF64 ;
  137. psf_log_printf (psf, "%Mn  %Mn", RF64_MARKER, WAVE_MARKER) ;
  138. while (! done)
  139. { psf_binheader_readf (psf, "em4", &marker, &size32) ;
  140. switch (marker)
  141. { case ds64_MARKER :
  142. psf_log_printf (psf, "%M : %un", marker, size32) ;
  143. /* Read ds64 sizes (3 8-byte words). */
  144. psf_binheader_readf (psf, "888", &riff_size, &psf->datalength, &sample_count) ;
  145. psf_log_printf (psf, "  Riff size : %Dn  Data size : %Dn  Frames    : %Dn",
  146. riff_size, psf->datalength, sample_count) ;
  147. /* Read table length. */
  148. psf_binheader_readf (psf, "4", &size32) ;
  149. psf_log_printf (psf, "  Table length : %un", size32) ;
  150. /* Skip table for now. (this was "size32 + 4", why?) */
  151. psf_binheader_readf (psf, "j", size32) ;
  152. parsestage |= HAVE_ds64 ;
  153. break ;
  154. case fmt_MARKER:
  155. psf_log_printf (psf, "%M : %un", marker, size32) ;
  156. if ((error = wav_w64_read_fmt_chunk (psf, size32)) != 0)
  157. return error ;
  158. format = wav_fmt->format ;
  159. parsestage |= HAVE_fmt ;
  160. break ;
  161. case bext_MARKER :
  162. if ((error = wav_read_bext_chunk (psf, size32)) != 0)
  163. return error ;
  164. parsestage |= HAVE_bext ;
  165. break ;
  166. case data_MARKER :
  167. /* see wav for more sophisticated parsing -> implement state machine with parsestage */
  168. psf_log_printf (psf, "%M : %xn", marker, size32) ;
  169. /* Fetch data length only from data chunk when data chunk size is not set to -1 */
  170. if ( size32 != 0xFFFFFFFF )
  171. psf->datalength = size32 ;
  172. else if ( ! HAVE_CHUNK (HAVE_ds64))
  173. { /* Assuming the ds64 chunk comes always before the data chunk. */
  174. psf_log_printf (psf, "  *** Data length not specified (-1 in data chunk and no ds64 chunk).") ;
  175. } ;
  176. psf->dataoffset = psf_ftell (psf) ;
  177. if (psf->dataoffset > 0)
  178. { if (size32 == 0 && riff_size == 8 && psf->filelength > 44)
  179. { psf_log_printf (psf, "  *** Looks like a WAV file which wasn't closed properly. Fixing it.n") ;
  180. psf->datalength = psf->filelength - psf->dataoffset ;
  181. } ;
  182. if (psf->datalength > psf->filelength - psf->dataoffset)
  183. { psf_log_printf (psf, "  data : %D (should be %D)n", psf->datalength, psf->filelength - psf->dataoffset) ;
  184. psf->datalength = psf->filelength - psf->dataoffset ;
  185. }
  186. else
  187. psf_log_printf (psf, "  data : %Dn", psf->datalength) ;
  188. /* Only set dataend if there really is data at the end. */
  189. if (psf->datalength + psf->dataoffset < psf->filelength)
  190. psf->dataend = psf->datalength + psf->dataoffset ;
  191. if (! psf->sf.seekable || psf->dataoffset < 0)
  192. break ;
  193. /* Seek past data and continue reading header. */
  194. psf_fseek (psf, psf->datalength, SEEK_CUR) ;
  195. if (psf_ftell (psf) != psf->datalength + psf->dataoffset)
  196. psf_log_printf (psf, "  *** psf_fseek past end error ***n") ;
  197. break ;
  198. } ;
  199. break ;
  200. default :
  201. if (isprint ((marker >> 24) & 0xFF) && isprint ((marker >> 16) & 0xFF)
  202. && isprint ((marker >> 8) & 0xFF) && isprint (marker & 0xFF))
  203. { psf_log_printf (psf, "*** %M : %d (unknown marker)n", marker, size32) ;
  204. if (size32 < 8)
  205. done = SF_TRUE ;
  206. psf_binheader_readf (psf, "j", size32) ;
  207. break ;
  208. } ;
  209. if (psf_ftell (psf) & 0x03)
  210. { psf_log_printf (psf, "  Unknown chunk marker at position %d. Resynching.n", size32 - 4) ;
  211. psf_binheader_readf (psf, "j", -3) ;
  212. break ;
  213. } ;
  214. psf_log_printf (psf, "*** Unknown chunk marker (%X) at position %D. Exiting parser.n", marker, psf_ftell (psf) - 4) ;
  215. done = SF_TRUE ;
  216. break ;
  217. } ; /* switch (marker) */
  218. if (psf_ftell (psf) >= psf->filelength - SIGNED_SIZEOF (marker))
  219. { psf_log_printf (psf, "Endn") ;
  220. break ;
  221. } ;
  222. } ;
  223. if (psf->dataoffset <= 0)
  224. return SFE_WAV_NO_DATA ;
  225. /* WAVs can be little or big endian */
  226. psf->endian = psf->rwf_endian ;
  227. psf_fseek (psf, psf->dataoffset, SEEK_SET) ;
  228. if (psf->is_pipe == 0)
  229. { /*
  230. ** Check for 'wvpk' at the start of the DATA section. Not able to
  231. ** handle this.
  232. */
  233. psf_binheader_readf (psf, "4", &marker) ;
  234. if (marker == wvpk_MARKER || marker == OggS_MARKER)
  235. return SFE_WAV_WVPK_DATA ;
  236. } ;
  237. /* Seek to start of DATA section. */
  238. psf_fseek (psf, psf->dataoffset, SEEK_SET) ;
  239. if (psf->blockwidth)
  240. { if (psf->filelength - psf->dataoffset < psf->datalength)
  241. psf->sf.frames = (psf->filelength - psf->dataoffset) / psf->blockwidth ;
  242. else
  243. psf->sf.frames = psf->datalength / psf->blockwidth ;
  244. } ;
  245. switch (format)
  246. {
  247. case WAVE_FORMAT_EXTENSIBLE :
  248. /* with WAVE_FORMAT_EXTENSIBLE the psf->sf.format field is already set. We just have to set the major to rf64 */
  249. psf->sf.format = (psf->sf.format & ~SF_FORMAT_TYPEMASK ) | SF_FORMAT_RF64 ;
  250. if (psf->sf.format == (SF_FORMAT_WAVEX | SF_FORMAT_MS_ADPCM))
  251. { *blockalign = wav_fmt->msadpcm.blockalign ;
  252. *framesperblock = wav_fmt->msadpcm.samplesperblock ;
  253. } ;
  254. break ;
  255. case WAVE_FORMAT_PCM :
  256. psf->sf.format = SF_FORMAT_RF64 | u_bitwidth_to_subformat (psf->bytewidth * 8) ;
  257. break ;
  258. case WAVE_FORMAT_MULAW :
  259. case IBM_FORMAT_MULAW :
  260. psf->sf.format = (SF_FORMAT_RF64 | SF_FORMAT_ULAW) ;
  261. break ;
  262. case WAVE_FORMAT_ALAW :
  263. case IBM_FORMAT_ALAW :
  264. psf->sf.format = (SF_FORMAT_RF64 | SF_FORMAT_ALAW) ;
  265. break ;
  266. case WAVE_FORMAT_MS_ADPCM :
  267. psf->sf.format = (SF_FORMAT_RF64 | SF_FORMAT_MS_ADPCM) ;
  268. *blockalign = wav_fmt->msadpcm.blockalign ;
  269. *framesperblock = wav_fmt->msadpcm.samplesperblock ;
  270. break ;
  271. case WAVE_FORMAT_IMA_ADPCM :
  272. psf->sf.format = (SF_FORMAT_RF64 | SF_FORMAT_IMA_ADPCM) ;
  273. *blockalign = wav_fmt->ima.blockalign ;
  274. *framesperblock = wav_fmt->ima.samplesperblock ;
  275. break ;
  276. case WAVE_FORMAT_GSM610 :
  277. psf->sf.format = (SF_FORMAT_RF64 | SF_FORMAT_GSM610) ;
  278. break ;
  279. case WAVE_FORMAT_IEEE_FLOAT :
  280. psf->sf.format = SF_FORMAT_RF64 ;
  281. psf->sf.format |= (psf->bytewidth == 8) ? SF_FORMAT_DOUBLE : SF_FORMAT_FLOAT ;
  282. break ;
  283. case WAVE_FORMAT_G721_ADPCM :
  284. psf->sf.format = SF_FORMAT_RF64 | SF_FORMAT_G721_32 ;
  285. break ;
  286. default : return SFE_UNIMPLEMENTED ;
  287. } ;
  288. psf_log_printf (psf, "  FORMAT : %xn", psf->sf.format) ;
  289. if (wpriv->fmt_is_broken)
  290. wav_w64_analyze (psf) ;
  291. /* Only set the format endian-ness if its non-standard big-endian. */
  292. if (psf->endian == SF_ENDIAN_BIG)
  293. psf->sf.format |= SF_ENDIAN_BIG ;
  294. return 0 ;
  295. } /* rf64_read_header */
  296. /*  known WAVEFORMATEXTENSIBLE GUIDS  */
  297. static const EXT_SUBFORMAT MSGUID_SUBTYPE_PCM =
  298. { 0x00000001, 0x0000, 0x0010, { 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 }
  299. } ;
  300. static const EXT_SUBFORMAT MSGUID_SUBTYPE_MS_ADPCM =
  301. { 0x00000002, 0x0000, 0x0010, { 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 }
  302. } ;
  303. static const EXT_SUBFORMAT MSGUID_SUBTYPE_IEEE_FLOAT =
  304. { 0x00000003, 0x0000, 0x0010, { 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 }
  305. } ;
  306. static const EXT_SUBFORMAT MSGUID_SUBTYPE_ALAW =
  307. { 0x00000006, 0x0000, 0x0010, { 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 }
  308. } ;
  309. static const EXT_SUBFORMAT MSGUID_SUBTYPE_MULAW =
  310. { 0x00000007, 0x0000, 0x0010, { 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71 }
  311. } ;
  312. /*
  313. ** the next two are from
  314. ** http://dream.cs.bath.ac.uk/researchdev/wave-ex/bformat.html
  315. */
  316. static const EXT_SUBFORMAT MSGUID_SUBTYPE_AMBISONIC_B_FORMAT_PCM =
  317. { 0x00000001, 0x0721, 0x11d3, { 0x86, 0x44, 0xC8, 0xC1, 0xCA, 0x00, 0x00, 0x00 }
  318. } ;
  319. static const EXT_SUBFORMAT MSGUID_SUBTYPE_AMBISONIC_B_FORMAT_IEEE_FLOAT =
  320. { 0x00000003, 0x0721, 0x11d3, { 0x86, 0x44, 0xC8, 0xC1, 0xCA, 0x00, 0x00, 0x00 }
  321. } ;
  322. static int
  323. wavex_write_fmt_chunk (SF_PRIVATE *psf)
  324. { WAV_PRIVATE *wpriv ;
  325. int subformat, fmt_size, add_fact_chunk = 0 ;
  326. if ((wpriv = psf->container_data) == NULL)
  327. return SFE_INTERNAL ;
  328. subformat = psf->sf.format & SF_FORMAT_SUBMASK ;
  329. /* initial section (same for all, it appears) */
  330. switch (subformat)
  331. { case SF_FORMAT_PCM_U8 :
  332. case SF_FORMAT_PCM_16 :
  333. case SF_FORMAT_PCM_24 :
  334. case SF_FORMAT_PCM_32 :
  335. case SF_FORMAT_FLOAT :
  336. case SF_FORMAT_DOUBLE :
  337. case SF_FORMAT_ULAW :
  338. case SF_FORMAT_ALAW :
  339. fmt_size = 2 + 2 + 4 + 4 + 2 + 2 + 2 + 2 + 4 + 4 + 2 + 2 + 8 ;
  340. /* fmt : format, channels, samplerate */
  341. psf_binheader_writef (psf, "4224", fmt_size, WAVE_FORMAT_EXTENSIBLE, psf->sf.channels, psf->sf.samplerate) ;
  342. /*  fmt : bytespersec */
  343. psf_binheader_writef (psf, "4", psf->sf.samplerate * psf->bytewidth * psf->sf.channels) ;
  344. /*  fmt : blockalign, bitwidth */
  345. psf_binheader_writef (psf, "22", psf->bytewidth * psf->sf.channels, psf->bytewidth * 8) ;
  346. /* cbSize 22 is sizeof (WAVEFORMATEXTENSIBLE) - sizeof (WAVEFORMATEX) */
  347. psf_binheader_writef (psf, "2", 22) ;
  348. /* wValidBitsPerSample, for our use same as bitwidth as we use it fully */
  349. psf_binheader_writef (psf, "2", psf->bytewidth * 8) ;
  350. /* For an Ambisonic file set the channel mask to zero.
  351. ** Otherwise use a default based on the channel count.
  352. */
  353. if (wpriv->wavex_ambisonic != SF_AMBISONIC_NONE)
  354. psf_binheader_writef (psf, "4", 0) ;
  355. else if (wpriv->wavex_channelmask != 0)
  356. psf_binheader_writef (psf, "4", wpriv->wavex_channelmask) ;
  357. else
  358. { /*
  359. ** Ok some liberty is taken here to use the most commonly used channel masks
  360. ** instead of "no mapping". If you really want to use "no mapping" for 8 channels and less
  361. ** please don't use wavex. (otherwise we'll have to create a new SF_COMMAND)
  362. */
  363. switch (psf->sf.channels)
  364. { case 1 : /* center channel mono */
  365. psf_binheader_writef (psf, "4", 0x4) ;
  366. break ;
  367. case 2 : /* front left and right */
  368. psf_binheader_writef (psf, "4", 0x1 | 0x2) ;
  369. break ;
  370. case 4 : /* Quad */
  371. psf_binheader_writef (psf, "4", 0x1 | 0x2 | 0x10 | 0x20) ;
  372. break ;
  373. case 6 : /* 5.1 */
  374. psf_binheader_writef (psf, "4", 0x1 | 0x2 | 0x4 | 0x8 | 0x10 | 0x20) ;
  375. break ;
  376. case 8 : /* 7.1 */
  377. psf_binheader_writef (psf, "4", 0x1 | 0x2 | 0x4 | 0x8 | 0x10 | 0x20 | 0x40 | 0x80) ;
  378. break ;
  379. default : /* 0 when in doubt , use direct out, ie NO mapping*/
  380. psf_binheader_writef (psf, "4", 0x0) ;
  381. break ;
  382. } ;
  383. } ;
  384. break ;
  385. case SF_FORMAT_MS_ADPCM : /* Todo, GUID exists might have different header as per wav_write_header */
  386. default :
  387. return SFE_UNIMPLEMENTED ;
  388. } ;
  389. /* GUID section, different for each */
  390. switch (subformat)
  391. { case SF_FORMAT_PCM_U8 :
  392. case SF_FORMAT_PCM_16 :
  393. case SF_FORMAT_PCM_24 :
  394. case SF_FORMAT_PCM_32 :
  395. wavex_write_guid (psf, wpriv->wavex_ambisonic == SF_AMBISONIC_NONE ?
  396. &MSGUID_SUBTYPE_PCM : &MSGUID_SUBTYPE_AMBISONIC_B_FORMAT_PCM) ;
  397. break ;
  398. case SF_FORMAT_FLOAT :
  399. case SF_FORMAT_DOUBLE :
  400. wavex_write_guid (psf, wpriv->wavex_ambisonic == SF_AMBISONIC_NONE ?
  401. &MSGUID_SUBTYPE_IEEE_FLOAT : &MSGUID_SUBTYPE_AMBISONIC_B_FORMAT_IEEE_FLOAT) ;
  402. break ;
  403. case SF_FORMAT_ULAW :
  404. wavex_write_guid (psf, &MSGUID_SUBTYPE_MULAW) ;
  405. break ;
  406. case SF_FORMAT_ALAW :
  407. wavex_write_guid (psf, &MSGUID_SUBTYPE_ALAW) ;
  408. break ;
  409. #if 0
  410. /* This is dead code due to return in previous switch statement. */
  411. case SF_FORMAT_MS_ADPCM : /* todo, GUID exists */
  412. wavex_write_guid (psf, &MSGUID_SUBTYPE_MS_ADPCM) ;
  413. break ;
  414. return SFE_UNIMPLEMENTED ;
  415. #endif
  416. default : return SFE_UNIMPLEMENTED ;
  417. } ;
  418. if (add_fact_chunk)
  419. psf_binheader_writef (psf, "tm48", fact_MARKER, 4, psf->sf.frames) ;
  420. return 0 ;
  421. } /* wavex_write_fmt_chunk */
  422. static int
  423. rf64_write_header (SF_PRIVATE *psf, int calc_length)
  424. { sf_count_t current ;
  425. int  error = 0, has_data = SF_FALSE ;
  426. current = psf_ftell (psf) ;
  427. if (psf->dataoffset > 0 && current > psf->dataoffset)
  428. has_data = SF_TRUE ;
  429. if (calc_length)
  430. { psf->filelength = psf_get_filelen (psf) ;
  431. psf->datalength = psf->filelength - psf->dataoffset ;
  432. if (psf->dataend)
  433. psf->datalength -= psf->filelength - psf->dataend ;
  434. if (psf->bytewidth > 0)
  435. psf->sf.frames = psf->datalength / (psf->bytewidth * psf->sf.channels) ;
  436. } ;
  437. /* Reset the current header length to zero. */
  438. psf->header [0] = 0 ;
  439. psf->headindex = 0 ;
  440. psf_fseek (psf, 0, SEEK_SET) ;
  441. psf_binheader_writef (psf, "em4m", RF64_MARKER, 0xffffffff, WAVE_MARKER) ;
  442. /* Currently no table. */
  443. psf_binheader_writef (psf, "m48884", ds64_MARKER, 32, psf->filelength, psf->datalength, psf->sf.frames, 0) ;
  444. /* WAVE and 'fmt ' markers. */
  445. psf_binheader_writef (psf, "m", fmt_MARKER) ;
  446. /* Write the 'fmt ' chunk. */
  447. switch (psf->sf.format & SF_FORMAT_TYPEMASK)
  448. { case SF_FORMAT_WAV :
  449. psf_log_printf (psf, "ooops SF_FORMAT_WAVn") ;
  450. return SFE_UNIMPLEMENTED ;
  451. break ;
  452. case SF_FORMAT_WAVEX :
  453. case SF_FORMAT_RF64 :
  454. if ((error = wavex_write_fmt_chunk (psf)) != 0)
  455. return error ;
  456. break ;
  457. default :
  458. return SFE_UNIMPLEMENTED ;
  459. } ;
  460. if (psf->broadcast_var != NULL)
  461. wav_write_bext_chunk (psf) ;
  462. #if 0
  463. /* The LIST/INFO chunk. */
  464. if (psf->str_flags & SF_STR_LOCATE_START)
  465. wav_write_strings (psf, SF_STR_LOCATE_START) ;
  466. if (psf->peak_info != NULL && psf->peak_info->peak_loc == SF_PEAK_START)
  467. { psf_binheader_writef (psf, "m4", PEAK_MARKER, WAV_PEAK_CHUNK_SIZE (psf->sf.channels)) ;
  468. psf_binheader_writef (psf, "44", 1, time (NULL)) ;
  469. for (k = 0 ; k < psf->sf.channels ; k++)
  470. psf_binheader_writef (psf, "ft8", (float) psf->peak_info->peaks [k].value, psf->peak_info->peaks [k].position) ;
  471. } ;
  472. // if (psf->broadcast_info != NULL)
  473. // wav_write_bext_chunk (psf) ;
  474. if (psf->instrument != NULL)
  475. { int tmp ;
  476. double dtune = (double) (0x40000000) / 25.0 ;
  477. psf_binheader_writef (psf, "m4", smpl_MARKER, 9 * 4 + psf->instrument->loop_count * 6 * 4) ;
  478. psf_binheader_writef (psf, "44", 0, 0) ; /* Manufacturer zero is everyone */
  479. tmp = (int) (1.0e9 / psf->sf.samplerate) ; /* Sample period in nano seconds */
  480. psf_binheader_writef (psf, "44", tmp, psf->instrument->basenote) ;
  481. tmp = (unsigned int) (psf->instrument->detune * dtune + 0.5) ;
  482. psf_binheader_writef (psf, "4", tmp) ;
  483. psf_binheader_writef (psf, "44", 0, 0) ; /* SMTPE format */
  484. psf_binheader_writef (psf, "44", psf->instrument->loop_count, 0) ;
  485. for (tmp = 0 ; tmp < psf->instrument->loop_count ; tmp++)
  486. { int type ;
  487. type = psf->instrument->loops [tmp].mode ;
  488. type = (type == SF_LOOP_FORWARD ? 0 : type==SF_LOOP_BACKWARD ? 2 : type == SF_LOOP_ALTERNATING ? 1 : 32) ;
  489. psf_binheader_writef (psf, "44", tmp, type) ;
  490. psf_binheader_writef (psf, "44", psf->instrument->loops [tmp].start, psf->instrument->loops [tmp].end) ;
  491. psf_binheader_writef (psf, "44", 0, psf->instrument->loops [tmp].count) ;
  492. } ;
  493. } ;
  494. if (psf->headindex + 8 < psf->dataoffset)
  495. { /* Add PAD data if necessary. */
  496. k = psf->dataoffset - 16 - psf->headindex ;
  497. psf_binheader_writef (psf, "m4z", PAD_MARKER, k, make_size_t (k)) ;
  498. } ;
  499. #endif
  500. psf_binheader_writef (psf, "m4", data_MARKER, 0xffffffff) ;
  501. psf_fwrite (psf->header, psf->headindex, 1, psf) ;
  502. if (psf->error)
  503. return psf->error ;
  504. if (has_data && psf->dataoffset != psf->headindex)
  505. { printf ("Oooops : has_data && psf->dataoffset != psf->headindexn") ;
  506. return psf->error = SFE_INTERNAL ;
  507. } ;
  508. psf->dataoffset = psf->headindex ;
  509. if (! has_data)
  510. psf_fseek (psf, psf->dataoffset, SEEK_SET) ;
  511. else if (current > 0)
  512. psf_fseek (psf, current, SEEK_SET) ;
  513. return psf->error ;
  514. } /* rf64_write_header */
  515. static int
  516. rf64_close (SF_PRIVATE *psf)
  517. {
  518. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  519. { // rf64_write_tailer (psf) ;
  520. psf->write_header (psf, SF_TRUE) ;
  521. } ;
  522. return 0 ;
  523. } /* rf64_close */
  524. static int
  525. rf64_command (SF_PRIVATE *psf, int command, void * UNUSED (data), int datasize)
  526. { WAV_PRIVATE *wpriv ;
  527. if ((wpriv = psf->container_data) == NULL)
  528. return SFE_INTERNAL ;
  529. switch (command)
  530. { case SFC_WAVEX_SET_AMBISONIC :
  531. if ((SF_CONTAINER (psf->sf.format)) == SF_FORMAT_WAVEX)
  532. { if (datasize == SF_AMBISONIC_NONE)
  533. wpriv->wavex_ambisonic = SF_AMBISONIC_NONE ;
  534. else if (datasize == SF_AMBISONIC_B_FORMAT)
  535. wpriv->wavex_ambisonic = SF_AMBISONIC_B_FORMAT ;
  536. else
  537. return 0 ;
  538. } ;
  539. return wpriv->wavex_ambisonic ;
  540. case SFC_WAVEX_GET_AMBISONIC :
  541. return wpriv->wavex_ambisonic ;
  542. case SFC_SET_CHANNEL_MAP_INFO :
  543. wpriv->wavex_channelmask = wavex_gen_channel_mask (psf->channel_map, psf->sf.channels) ;
  544. return (wpriv->wavex_channelmask != 0) ;
  545. default :
  546. break ;
  547. } ;
  548. return 0 ;
  549. } /* rf64_command */