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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 1999-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. ** Copyright (C) 2005 David Viens <davidv@plogue.com>
  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. #include "sfconfig.h"
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include <time.h>
  24. #include <ctype.h>
  25. #include <inttypes.h>
  26. #include "sndfile.h"
  27. #include "sfendian.h"
  28. #include "common.h"
  29. #include "chanmap.h"
  30. /*------------------------------------------------------------------------------
  31.  * Macros to handle big/little endian issues.
  32.  */
  33. #define FORM_MARKER (MAKE_MARKER ('F', 'O', 'R', 'M'))
  34. #define AIFF_MARKER (MAKE_MARKER ('A', 'I', 'F', 'F'))
  35. #define AIFC_MARKER (MAKE_MARKER ('A', 'I', 'F', 'C'))
  36. #define COMM_MARKER (MAKE_MARKER ('C', 'O', 'M', 'M'))
  37. #define SSND_MARKER (MAKE_MARKER ('S', 'S', 'N', 'D'))
  38. #define MARK_MARKER (MAKE_MARKER ('M', 'A', 'R', 'K'))
  39. #define INST_MARKER (MAKE_MARKER ('I', 'N', 'S', 'T'))
  40. #define APPL_MARKER (MAKE_MARKER ('A', 'P', 'P', 'L'))
  41. #define CHAN_MARKER (MAKE_MARKER ('C', 'H', 'A', 'N'))
  42. #define c_MARKER (MAKE_MARKER ('(', 'c', ')', ' '))
  43. #define NAME_MARKER (MAKE_MARKER ('N', 'A', 'M', 'E'))
  44. #define AUTH_MARKER (MAKE_MARKER ('A', 'U', 'T', 'H'))
  45. #define ANNO_MARKER (MAKE_MARKER ('A', 'N', 'N', 'O'))
  46. #define COMT_MARKER (MAKE_MARKER ('C', 'O', 'M', 'T'))
  47. #define FVER_MARKER (MAKE_MARKER ('F', 'V', 'E', 'R'))
  48. #define SFX_MARKER (MAKE_MARKER ('S', 'F', 'X', '!'))
  49. #define PEAK_MARKER (MAKE_MARKER ('P', 'E', 'A', 'K'))
  50. #define basc_MARKER (MAKE_MARKER ('b', 'a', 's', 'c'))
  51. /* Supported AIFC encodings.*/
  52. #define NONE_MARKER (MAKE_MARKER ('N', 'O', 'N', 'E'))
  53. #define sowt_MARKER (MAKE_MARKER ('s', 'o', 'w', 't'))
  54. #define twos_MARKER (MAKE_MARKER ('t', 'w', 'o', 's'))
  55. #define raw_MARKER (MAKE_MARKER ('r', 'a', 'w', ' '))
  56. #define in24_MARKER (MAKE_MARKER ('i', 'n', '2', '4'))
  57. #define ni24_MARKER (MAKE_MARKER ('4', '2', 'n', '1'))
  58. #define in32_MARKER (MAKE_MARKER ('i', 'n', '3', '2'))
  59. #define ni32_MARKER (MAKE_MARKER ('2', '3', 'n', 'i'))
  60. #define fl32_MARKER (MAKE_MARKER ('f', 'l', '3', '2'))
  61. #define FL32_MARKER (MAKE_MARKER ('F', 'L', '3', '2'))
  62. #define fl64_MARKER (MAKE_MARKER ('f', 'l', '6', '4'))
  63. #define FL64_MARKER (MAKE_MARKER ('F', 'L', '6', '4'))
  64. #define ulaw_MARKER (MAKE_MARKER ('u', 'l', 'a', 'w'))
  65. #define ULAW_MARKER (MAKE_MARKER ('U', 'L', 'A', 'W'))
  66. #define alaw_MARKER (MAKE_MARKER ('a', 'l', 'a', 'w'))
  67. #define ALAW_MARKER (MAKE_MARKER ('A', 'L', 'A', 'W'))
  68. #define DWVW_MARKER (MAKE_MARKER ('D', 'W', 'V', 'W'))
  69. #define GSM_MARKER (MAKE_MARKER ('G', 'S', 'M', ' '))
  70. #define ima4_MARKER (MAKE_MARKER ('i', 'm', 'a', '4'))
  71. /*
  72. ** This value is officially assigned to Mega Nerd Pty Ltd by Apple
  73. ** Corportation as the Application marker for libsndfile.
  74. **
  75. ** See : http://developer.apple.com/faq/datatype.html
  76. */
  77. #define m3ga_MARKER (MAKE_MARKER ('m', '3', 'g', 'a'))
  78. /* Unsupported AIFC encodings.*/
  79. #define MAC3_MARKER (MAKE_MARKER ('M', 'A', 'C', '3'))
  80. #define MAC6_MARKER (MAKE_MARKER ('M', 'A', 'C', '6'))
  81. #define ADP4_MARKER (MAKE_MARKER ('A', 'D', 'P', '4'))
  82. /* Predfined chunk sizes. */
  83. #define SIZEOF_AIFF_COMM 18
  84. #define SIZEOF_AIFC_COMM_MIN 22
  85. #define SIZEOF_AIFC_COMM 24
  86. #define SIZEOF_SSND_CHUNK 8
  87. #define SIZEOF_INST_CHUNK 20
  88. /* Is it constant? */
  89. /* AIFC/IMA4 defines. */
  90. #define AIFC_IMA4_BLOCK_LEN 34
  91. #define AIFC_IMA4_SAMPLES_PER_BLOCK 64
  92. #define AIFF_PEAK_CHUNK_SIZE(ch) (2 * sizeof (int) + ch * (sizeof (float) + sizeof (int)))
  93. /*------------------------------------------------------------------------------
  94.  * Typedefs for file chunks.
  95.  */
  96. enum
  97. { HAVE_FORM = 0x01,
  98. HAVE_AIFF = 0x02,
  99. HAVE_AIFC = 0x04,
  100. HAVE_FVER = 0x08,
  101. HAVE_COMM = 0x10,
  102. HAVE_SSND = 0x20
  103. } ;
  104. typedef struct
  105. { unsigned int size ;
  106. short numChannels ;
  107. unsigned int numSampleFrames ;
  108. short sampleSize ;
  109. unsigned char sampleRate [10] ;
  110. unsigned int encoding ;
  111. char zero_bytes [2] ;
  112. } COMM_CHUNK ;
  113. typedef struct
  114. { unsigned int offset ;
  115. unsigned int blocksize ;
  116. } SSND_CHUNK ;
  117. typedef struct
  118. { short playMode ;
  119. unsigned short beginLoop ;
  120. unsigned short endLoop ;
  121. } INST_LOOP ;
  122. typedef struct
  123. { char baseNote ; /* all notes are MIDI note numbers */
  124. char detune ; /* cents off, only -50 to +50 are significant */
  125. char lowNote ;
  126. char highNote ;
  127. char lowVelocity ; /* 1 to 127 */
  128. char highVelocity ; /* 1 to 127 */
  129. short gain ; /* in dB, 0 is normal */
  130. INST_LOOP sustain_loop ;
  131. INST_LOOP release_loop ;
  132. } INST_CHUNK ;
  133. enum
  134. { basc_SCALE_MINOR = 1,
  135. basc_SCALE_MAJOR,
  136. basc_SCALE_NEITHER,
  137. basc_SCALE_BOTH
  138. } ;
  139. enum
  140. { basc_TYPE_LOOP = 0,
  141. basc_TYPE_ONE_SHOT
  142. } ;
  143. typedef struct
  144. { unsigned int version ;
  145. unsigned int numBeats ;
  146. unsigned short rootNote ;
  147. unsigned short scaleType ;
  148. unsigned short sigNumerator ;
  149. unsigned short sigDenominator ;
  150. unsigned short loopType ;
  151. } basc_CHUNK ;
  152. typedef struct
  153. { unsigned short markerID ;
  154. unsigned int position ;
  155. } MARK_ID_POS ;
  156. typedef struct
  157. { PRIV_CHUNK4 chunk4 ;
  158. sf_count_t comm_offset ;
  159. sf_count_t ssnd_offset ;
  160. int chanmap_tag ;
  161. MARK_ID_POS *markstr ;
  162. } AIFF_PRIVATE ;
  163. /*------------------------------------------------------------------------------
  164.  * Private static functions.
  165.  */
  166. static int aiff_close (SF_PRIVATE *psf) ;
  167. static int tenbytefloat2int (unsigned char *bytes) ;
  168. static void uint2tenbytefloat (unsigned int num, unsigned char *bytes) ;
  169. static int aiff_read_comm_chunk (SF_PRIVATE *psf, COMM_CHUNK *comm_fmt) ;
  170. static int aiff_read_header (SF_PRIVATE *psf, COMM_CHUNK *comm_fmt) ;
  171. static int aiff_write_header (SF_PRIVATE *psf, int calc_length) ;
  172. static int aiff_write_tailer (SF_PRIVATE *psf) ;
  173. static void aiff_write_strings (SF_PRIVATE *psf, int location) ;
  174. static int aiff_command (SF_PRIVATE *psf, int command, void *data, int datasize) ;
  175. static const char *get_loop_mode_str (short mode) ;
  176. static short get_loop_mode (short mode) ;
  177. static int aiff_read_basc_chunk (SF_PRIVATE * psf, int) ;
  178. static int aiff_read_chanmap (SF_PRIVATE * psf, unsigned dword) ;
  179. static unsigned int marker_to_position (const MARK_ID_POS *m, unsigned short n, int marksize) ;
  180. /*------------------------------------------------------------------------------
  181. ** Public function.
  182. */
  183. int
  184. aiff_open (SF_PRIVATE *psf)
  185. { COMM_CHUNK comm_fmt ;
  186. int error, subformat ;
  187. memset (&comm_fmt, 0, sizeof (comm_fmt)) ;
  188. subformat = SF_CODEC (psf->sf.format) ;
  189. if ((psf->container_data = calloc (1, sizeof (AIFF_PRIVATE))) == NULL)
  190. return SFE_MALLOC_FAILED ;
  191. if (psf->file.mode == SFM_READ || (psf->file.mode == SFM_RDWR && psf->filelength > 0))
  192. { if ((error = aiff_read_header (psf, &comm_fmt)))
  193. return error ;
  194. psf_fseek (psf, psf->dataoffset, SEEK_SET) ;
  195. } ;
  196. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  197. { if (psf->is_pipe)
  198. return SFE_NO_PIPE_WRITE ;
  199. if ((SF_CONTAINER (psf->sf.format)) != SF_FORMAT_AIFF)
  200. return SFE_BAD_OPEN_FORMAT ;
  201. if (psf->file.mode == SFM_WRITE && (subformat == SF_FORMAT_FLOAT || subformat == SF_FORMAT_DOUBLE))
  202. { if ((psf->peak_info = peak_info_calloc (psf->sf.channels)) == NULL)
  203. return SFE_MALLOC_FAILED ;
  204. psf->peak_info->peak_loc = SF_PEAK_START ;
  205. } ;
  206. if (psf->file.mode != SFM_RDWR || psf->filelength < 40)
  207. { psf->filelength = 0 ;
  208. psf->datalength = 0 ;
  209. psf->dataoffset = 0 ;
  210. psf->sf.frames = 0 ;
  211. } ;
  212. psf->str_flags = SF_STR_ALLOW_START | SF_STR_ALLOW_END ;
  213. if ((error = aiff_write_header (psf, SF_FALSE)))
  214. return error ;
  215. psf->write_header = aiff_write_header ;
  216. } ;
  217. psf->container_close = aiff_close ;
  218. psf->command = aiff_command ;
  219. switch (SF_CODEC (psf->sf.format))
  220. { case SF_FORMAT_PCM_U8 :
  221. error = pcm_init (psf) ;
  222. break ;
  223. case SF_FORMAT_PCM_S8 :
  224. error = pcm_init (psf) ;
  225. break ;
  226. case SF_FORMAT_PCM_16 :
  227. case SF_FORMAT_PCM_24 :
  228. case SF_FORMAT_PCM_32 :
  229. error = pcm_init (psf) ;
  230. break ;
  231. case SF_FORMAT_ULAW :
  232. error = ulaw_init (psf) ;
  233. break ;
  234. case SF_FORMAT_ALAW :
  235. error = alaw_init (psf) ;
  236. break ;
  237. /* Lite remove start */
  238. case SF_FORMAT_FLOAT :
  239. error = float32_init (psf) ;
  240. break ;
  241. case SF_FORMAT_DOUBLE :
  242. error = double64_init (psf) ;
  243. break ;
  244. case SF_FORMAT_DWVW_12 :
  245. error = dwvw_init (psf, 12) ;
  246. break ;
  247. case SF_FORMAT_DWVW_16 :
  248. error = dwvw_init (psf, 16) ;
  249. break ;
  250. case SF_FORMAT_DWVW_24 :
  251. error = dwvw_init (psf, 24) ;
  252. break ;
  253. case SF_FORMAT_DWVW_N :
  254. if (psf->file.mode != SFM_READ)
  255. { error = SFE_DWVW_BAD_BITWIDTH ;
  256. break ;
  257. } ;
  258. if (comm_fmt.sampleSize >= 8 && comm_fmt.sampleSize < 24)
  259. { error = dwvw_init (psf, comm_fmt.sampleSize) ;
  260. psf->sf.frames = comm_fmt.numSampleFrames ;
  261. break ;
  262. } ;
  263. psf_log_printf (psf, "AIFC/DWVW : Bad bitwidth %dn", comm_fmt.sampleSize) ;
  264. error = SFE_DWVW_BAD_BITWIDTH ;
  265. break ;
  266. case SF_FORMAT_IMA_ADPCM :
  267. /*
  268. ** IMA ADPCM encoded AIFF files always have a block length
  269. ** of 34 which decodes to 64 samples.
  270. */
  271. error = aiff_ima_init (psf, AIFC_IMA4_BLOCK_LEN, AIFC_IMA4_SAMPLES_PER_BLOCK) ;
  272. break ;
  273. /* Lite remove end */
  274. case SF_FORMAT_GSM610 :
  275. error = gsm610_init (psf) ;
  276. break ;
  277. default : return SFE_UNIMPLEMENTED ;
  278. } ;
  279. return error ;
  280. } /* aiff_open */
  281. /*==========================================================================================
  282. ** Private functions.
  283. */
  284. /* This function ought to check size */
  285. static unsigned int
  286. marker_to_position (const MARK_ID_POS *m, unsigned short n, int marksize)
  287. { int i ;
  288.     for (i = 0 ; i < marksize ; i++)
  289. if (m [i].markerID == n)
  290. return m [i].position ;
  291.     return 0 ;
  292. } /* marker_to_position */
  293. static int
  294. aiff_read_header (SF_PRIVATE *psf, COMM_CHUNK *comm_fmt)
  295. { SSND_CHUNK ssnd_fmt ;
  296. AIFF_PRIVATE *paiff ;
  297. unsigned marker, dword, FORMsize, SSNDsize, bytesread ;
  298. int k, found_chunk = 0, done = 0, error = 0 ;
  299. char *cptr ;
  300. int instr_found = 0, mark_found = 0, mark_count = 0 ;
  301. if (psf->filelength > SF_PLATFORM_S64 (0xffffffff))
  302. psf_log_printf (psf, "Warning : filelength > 0xffffffff. This is bad!!!!n") ;
  303. if ((paiff = psf->container_data) == NULL)
  304. return SFE_INTERNAL ;
  305. paiff->comm_offset = 0 ;
  306. paiff->ssnd_offset = 0 ;
  307. /* Set position to start of file to begin reading header. */
  308. psf_binheader_readf (psf, "p", 0) ;
  309. memset (comm_fmt, 0, sizeof (COMM_CHUNK)) ;
  310. /* Until recently AIF* file were all BIG endian. */
  311. psf->endian = SF_ENDIAN_BIG ;
  312. /* AIFF files can apparently have their chunks in any order. However, they
  313. ** must have a FORM chunk. Approach here is to read all the chunks one by
  314. ** one and then check for the mandatory chunks at the end.
  315. */
  316. while (! done)
  317. { psf_binheader_readf (psf, "m", &marker) ;
  318. if (psf->file.mode == SFM_RDWR && (found_chunk & HAVE_SSND))
  319. return SFE_AIFF_RW_SSND_NOT_LAST ;
  320. switch (marker)
  321. { case FORM_MARKER :
  322. if (found_chunk)
  323. return SFE_AIFF_NO_FORM ;
  324. psf_binheader_readf (psf, "E4", &FORMsize) ;
  325. pchk4_store (&(paiff->chunk4), marker, psf->headindex - 8, FORMsize) ;
  326. if (psf->fileoffset > 0 && psf->filelength > FORMsize + 8)
  327. { /* Set file length. */
  328. psf->filelength = FORMsize + 8 ;
  329. psf_log_printf (psf, "FORM : %un", FORMsize) ;
  330. }
  331. else if (FORMsize != psf->filelength - 2 * SIGNED_SIZEOF (dword))
  332. { dword = psf->filelength - 2 * sizeof (dword) ;
  333. psf_log_printf (psf, "FORM : %u (should be %u)n", FORMsize, dword) ;
  334. FORMsize = dword ;
  335. }
  336. else
  337. psf_log_printf (psf, "FORM : %un", FORMsize) ;
  338. found_chunk |= HAVE_FORM ;
  339. break ;
  340. case AIFC_MARKER :
  341. case AIFF_MARKER :
  342. if ((found_chunk & HAVE_FORM) == 0)
  343. return SFE_AIFF_AIFF_NO_FORM ;
  344. psf_log_printf (psf, " %Mn", marker) ;
  345. found_chunk |= (marker == AIFC_MARKER) ? (HAVE_AIFC | HAVE_AIFF) : HAVE_AIFF ;
  346. break ;
  347. case COMM_MARKER :
  348. paiff->comm_offset = psf_ftell (psf) - 4 ;
  349. error = aiff_read_comm_chunk (psf, comm_fmt) ;
  350. pchk4_store (&paiff->chunk4, marker, paiff->comm_offset, comm_fmt->size) ;
  351. psf->sf.samplerate = tenbytefloat2int (comm_fmt->sampleRate) ;
  352. psf->sf.frames = comm_fmt->numSampleFrames ;
  353. psf->sf.channels = comm_fmt->numChannels ;
  354. psf->bytewidth = BITWIDTH2BYTES (comm_fmt->sampleSize) ;
  355. if (error)
  356. return error ;
  357. found_chunk |= HAVE_COMM ;
  358. break ;
  359. case PEAK_MARKER :
  360. /* Must have COMM chunk before PEAK chunk. */
  361. if ((found_chunk & (HAVE_FORM | HAVE_AIFF | HAVE_COMM)) != (HAVE_FORM | HAVE_AIFF | HAVE_COMM))
  362. return SFE_AIFF_PEAK_B4_COMM ;
  363. psf_binheader_readf (psf, "E4", &dword) ;
  364. pchk4_store (&paiff->chunk4, marker, psf->headindex - 8, dword) ;
  365. psf_log_printf (psf, "%M : %dn", marker, dword) ;
  366. if (dword != AIFF_PEAK_CHUNK_SIZE (psf->sf.channels))
  367. { psf_binheader_readf (psf, "j", dword) ;
  368. psf_log_printf (psf, "*** File PEAK chunk too big.n") ;
  369. return SFE_WAV_BAD_PEAK ;
  370. } ;
  371. if ((psf->peak_info = peak_info_calloc (psf->sf.channels)) == NULL)
  372. return SFE_MALLOC_FAILED ;
  373. /* read in rest of PEAK chunk. */
  374. psf_binheader_readf (psf, "E44", &(psf->peak_info->version), &(psf->peak_info->timestamp)) ;
  375. if (psf->peak_info->version != 1)
  376. psf_log_printf (psf, "  version    : %d *** (should be version 1)n", psf->peak_info->version) ;
  377. else
  378. psf_log_printf (psf, "  version    : %dn", psf->peak_info->version) ;
  379. psf_log_printf (psf, "  time stamp : %dn", psf->peak_info->timestamp) ;
  380. psf_log_printf (psf, "    Ch   Position       Valuen") ;
  381. cptr = psf->u.cbuf ;
  382. for (dword = 0 ; dword < (unsigned) psf->sf.channels ; dword++)
  383. { float value ;
  384. unsigned int position ;
  385. psf_binheader_readf (psf, "Ef4", &value, &position) ;
  386. psf->peak_info->peaks [dword].value = value ;
  387. psf->peak_info->peaks [dword].position = position ;
  388. snprintf (cptr, sizeof (psf->u.scbuf), "    %2d   %-12" PRId64 "   %gn",
  389. dword, psf->peak_info->peaks [dword].position, psf->peak_info->peaks [dword].value) ;
  390. cptr [sizeof (psf->u.scbuf) - 1] = 0 ;
  391. psf_log_printf (psf, "%s", cptr) ;
  392. } ;
  393. psf->peak_info->peak_loc = ((found_chunk & HAVE_SSND) == 0) ? SF_PEAK_START : SF_PEAK_END ;
  394. break ;
  395. case SSND_MARKER :
  396. if ((found_chunk & HAVE_AIFC) && (found_chunk & HAVE_FVER) == 0)
  397. psf_log_printf (psf, "*** Valid AIFC files should have an FVER chunk.n") ;
  398. paiff->ssnd_offset = psf_ftell (psf) - 4 ;
  399. psf_binheader_readf (psf, "E444", &SSNDsize, &(ssnd_fmt.offset), &(ssnd_fmt.blocksize)) ;
  400. pchk4_store (&paiff->chunk4, marker, paiff->ssnd_offset, SSNDsize) ;
  401. psf->datalength = SSNDsize - sizeof (ssnd_fmt) ;
  402. psf->dataoffset = psf_ftell (psf) ;
  403. if (psf->datalength > psf->filelength - psf->dataoffset || psf->datalength < 0)
  404. { psf_log_printf (psf, " SSND : %u (should be %D)n", SSNDsize, psf->filelength - psf->dataoffset + sizeof (SSND_CHUNK)) ;
  405. psf->datalength = psf->filelength - psf->dataoffset ;
  406. }
  407. else
  408. psf_log_printf (psf, " SSND : %un", SSNDsize) ;
  409. if (ssnd_fmt.offset == 0 || psf->dataoffset + ssnd_fmt.offset == ssnd_fmt.blocksize)
  410. { psf_log_printf (psf, "  Offset     : %un", ssnd_fmt.offset) ;
  411. psf_log_printf (psf, "  Block Size : %un", ssnd_fmt.blocksize) ;
  412. psf->dataoffset += ssnd_fmt.offset ;
  413. psf->datalength -= ssnd_fmt.offset ;
  414. }
  415. else
  416. { psf_log_printf (psf, "  Offset     : %u (Should be zero)n", ssnd_fmt.offset) ;
  417. psf_log_printf (psf, "  Block Size : %u ???n", ssnd_fmt.blocksize) ;
  418. } ;
  419. /* Only set dataend if there really is data at the end. */
  420. if (psf->datalength + psf->dataoffset < psf->filelength)
  421. psf->dataend = psf->datalength + psf->dataoffset ;
  422. found_chunk |= HAVE_SSND ;
  423. if (! psf->sf.seekable)
  424. break ;
  425. /* Seek to end of SSND chunk. */
  426. psf_fseek (psf, psf->dataoffset + psf->datalength + (SSNDsize & 1), SEEK_SET) ;
  427. break ;
  428. case c_MARKER :
  429. psf_binheader_readf (psf, "E4", &dword) ;
  430. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  431. if (dword == 0)
  432. break ;
  433. if (dword >= SIGNED_SIZEOF (psf->u.scbuf))
  434. { psf_log_printf (psf, " %M : %d (too big)n", marker, dword) ;
  435. return SFE_INTERNAL ;
  436. } ;
  437. cptr = psf->u.cbuf ;
  438. psf_binheader_readf (psf, "b", cptr, dword + (dword & 1)) ;
  439. cptr [dword] = 0 ;
  440. psf_sanitize_string (cptr, dword) ;
  441. psf_log_printf (psf, " %M : %sn", marker, cptr) ;
  442. psf_store_string (psf, SF_STR_COPYRIGHT, cptr) ;
  443. break ;
  444. case AUTH_MARKER :
  445. psf_binheader_readf (psf, "E4", &dword) ;
  446. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  447. if (dword == 0)
  448. break ;
  449. if (dword >= SIGNED_SIZEOF (psf->u.scbuf) - 1)
  450. { psf_log_printf (psf, " %M : %d (too big)n", marker, dword) ;
  451. return SFE_INTERNAL ;
  452. } ;
  453. cptr = psf->u.cbuf ;
  454. psf_binheader_readf (psf, "b", cptr, dword + (dword & 1)) ;
  455. cptr [dword] = 0 ;
  456. psf_log_printf (psf, " %M : %sn", marker, cptr) ;
  457. psf_store_string (psf, SF_STR_ARTIST, cptr) ;
  458. break ;
  459. case COMT_MARKER :
  460. { unsigned short count, id, len ;
  461. unsigned int timestamp ;
  462. psf_binheader_readf (psf, "E42", &dword, &count) ;
  463. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  464. psf_log_printf (psf, " %M : %dn  count  : %dn", marker, dword, count) ;
  465. dword += (dword & 1) ;
  466. if (dword == 0)
  467. break ;
  468. dword -= 2 ;
  469. for (k = 0 ; k < count ; k++)
  470. { dword -= psf_binheader_readf (psf, "E422", &timestamp, &id, &len) ;
  471. psf_log_printf (psf, "   time   : 0x%xn   marker : %xn   length : %dn", timestamp, id, len) ;
  472. if (len + 1 > SIGNED_SIZEOF (psf->u.scbuf))
  473. { psf_log_printf (psf, "nError : string length (%d) too big.n", len) ;
  474. return SFE_INTERNAL ;
  475. } ;
  476. cptr = psf->u.cbuf ;
  477. dword -= psf_binheader_readf (psf, "b", cptr, len) ;
  478. cptr [len] = 0 ;
  479. psf_log_printf (psf, "   string : %sn", cptr) ;
  480. } ;
  481. if (dword > 0)
  482. psf_binheader_readf (psf, "j", dword) ;
  483. } ;
  484. break ;
  485. case APPL_MARKER :
  486. { unsigned appl_marker ;
  487. psf_binheader_readf (psf, "E4", &dword) ;
  488. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  489. if (dword == 0)
  490. break ;
  491. if (dword >= SIGNED_SIZEOF (psf->u.scbuf) - 1)
  492. { psf_log_printf (psf, " %M : %d (too big, skipping)n", marker, dword) ;
  493. psf_binheader_readf (psf, "j", dword + (dword & 1)) ;
  494. break ;
  495. } ;
  496. if (dword < 4)
  497. { psf_log_printf (psf, " %M : %d (too small, skipping)n", marker, dword) ;
  498. psf_binheader_readf (psf, "j", dword + (dword & 1)) ;
  499. break ;
  500. } ;
  501. cptr = psf->u.cbuf ;
  502. psf_binheader_readf (psf, "mb", &appl_marker, cptr, dword + (dword & 1) - 4) ;
  503. cptr [dword] = 0 ;
  504. for (k = 0 ; k < (int) dword ; k++)
  505. if (! psf_isprint (cptr [k]))
  506. { cptr [k] = 0 ;
  507. break ;
  508. } ;
  509. psf_log_printf (psf, " %M : %dn  AppSig : %Mn  Name   : %sn", marker, dword, appl_marker, cptr) ;
  510. psf_store_string (psf, SF_STR_SOFTWARE, cptr) ;
  511. } ;
  512. break ;
  513. case NAME_MARKER :
  514. psf_binheader_readf (psf, "E4", &dword) ;
  515. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  516. if (dword == 0)
  517. break ;
  518. if (dword >= SIGNED_SIZEOF (psf->u.scbuf) - 2)
  519. { psf_log_printf (psf, " %M : %d (too big)n", marker, dword) ;
  520. return SFE_INTERNAL ;
  521. } ;
  522. cptr = psf->u.cbuf ;
  523. psf_binheader_readf (psf, "b", cptr, dword + (dword & 1)) ;
  524. cptr [dword] = 0 ;
  525. psf_log_printf (psf, " %M : %sn", marker, cptr) ;
  526. psf_store_string (psf, SF_STR_TITLE, cptr) ;
  527. break ;
  528. case ANNO_MARKER :
  529. psf_binheader_readf (psf, "E4", &dword) ;
  530. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  531. if (dword == 0)
  532. break ;
  533. if (dword >= SIGNED_SIZEOF (psf->u.scbuf) - 2)
  534. { psf_log_printf (psf, " %M : %d (too big)n", marker, dword) ;
  535. return SFE_INTERNAL ;
  536. } ;
  537. cptr = psf->u.cbuf ;
  538. psf_binheader_readf (psf, "b", cptr, dword + (dword & 1)) ;
  539. cptr [dword] = 0 ;
  540. psf_log_printf (psf, " %M : %sn", marker, cptr) ;
  541. psf_store_string (psf, SF_STR_COMMENT, cptr) ;
  542. break ;
  543. case INST_MARKER :
  544. psf_binheader_readf (psf, "E4", &dword) ;
  545. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  546. if (dword != SIZEOF_INST_CHUNK)
  547. { psf_log_printf (psf, " %M : %d (should be %d)n", marker, dword, SIZEOF_INST_CHUNK) ;
  548. psf_binheader_readf (psf, "j", dword) ;
  549. break ;
  550. } ;
  551. psf_log_printf (psf, " %M : %dn", marker, dword) ;
  552. { unsigned char bytes [6] ;
  553. short gain ;
  554. if (psf->instrument == NULL && (psf->instrument = psf_instrument_alloc ()) == NULL)
  555. return SFE_MALLOC_FAILED ;
  556. psf_binheader_readf (psf, "b", bytes, 6) ;
  557. psf_log_printf (psf, "  Base Note : %un  Detune    : %un"
  558. "  Low  Note : %un  High Note : %un"
  559. "  Low  Vel. : %un  High Vel. : %un",
  560. bytes [0], bytes [1], bytes [2], bytes [3], bytes [4], bytes [5]) ;
  561. psf->instrument->basenote = bytes [0] ;
  562. psf->instrument->detune = bytes [1] ;
  563. psf->instrument->key_lo = bytes [2] ;
  564. psf->instrument->key_hi = bytes [3] ;
  565. psf->instrument->velocity_lo = bytes [4] ;
  566. psf->instrument->velocity_hi = bytes [5] ;
  567. psf_binheader_readf (psf, "E2", &gain) ;
  568. psf->instrument->gain = gain ;
  569. psf_log_printf (psf, "  Gain (dB) : %dn", gain) ;
  570. } ;
  571. { short mode ; /* 0 - no loop, 1 - forward looping, 2 - backward looping */
  572. const char *loop_mode ;
  573. unsigned short begin, end ;
  574. psf_binheader_readf (psf, "E222", &mode, &begin, &end) ;
  575. loop_mode = get_loop_mode_str (mode) ;
  576. mode = get_loop_mode (mode) ;
  577. if (mode == SF_LOOP_NONE)
  578. { psf->instrument->loop_count = 0 ;
  579. psf->instrument->loops [0].mode = SF_LOOP_NONE ;
  580. }
  581. else
  582. { psf->instrument->loop_count = 1 ;
  583. psf->instrument->loops [0].mode = SF_LOOP_FORWARD ;
  584. psf->instrument->loops [0].start = begin ;
  585. psf->instrument->loops [0].end = end ;
  586. psf->instrument->loops [0].count = 0 ;
  587. } ;
  588. psf_log_printf (psf, "  Sustainn   mode  : %d => %sn   begin : %un   end   : %un",
  589. mode, loop_mode, begin, end) ;
  590. psf_binheader_readf (psf, "E222", &mode, &begin, &end) ;
  591. loop_mode = get_loop_mode_str (mode) ;
  592. mode = get_loop_mode (mode) ;
  593. if (mode == SF_LOOP_NONE)
  594. psf->instrument->loops [1].mode = SF_LOOP_NONE ;
  595. else
  596. { psf->instrument->loop_count += 1 ;
  597. psf->instrument->loops [1].mode = SF_LOOP_FORWARD ;
  598. psf->instrument->loops [1].start = begin ;
  599. psf->instrument->loops [1].end = end ;
  600. psf->instrument->loops [1].count = 0 ;
  601. } ;
  602. psf_log_printf (psf, "  Releasen   mode  : %d => %sn   begin : %un   end   : %un",
  603. mode, loop_mode, begin, end) ;
  604. } ;
  605. instr_found++ ;
  606. break ;
  607. case basc_MARKER :
  608. psf_binheader_readf (psf, "E4", &dword) ;
  609. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  610. psf_log_printf (psf, " basc : %un", dword) ;
  611. if ((error = aiff_read_basc_chunk (psf, dword)))
  612. return error ;
  613. break ;
  614. case MARK_MARKER :
  615. psf_binheader_readf (psf, "E4", &dword) ;
  616. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  617. psf_log_printf (psf, " %M : %dn", marker, dword) ;
  618. { unsigned short mark_id, n = 0 ;
  619. unsigned int position ;
  620. bytesread = psf_binheader_readf (psf, "E2", &n) ;
  621. mark_count = n ;
  622. psf_log_printf (psf, "  Count : %dn", mark_count) ;
  623. if (paiff->markstr != NULL)
  624. { psf_log_printf (psf, "*** Second MARK chunk found. Throwing away the first.n") ;
  625. free (paiff->markstr) ;
  626. } ;
  627. paiff->markstr = calloc (mark_count, sizeof (MARK_ID_POS)) ;
  628. if (paiff->markstr == NULL)
  629. return SFE_MALLOC_FAILED ;
  630. for (n = 0 ; n < mark_count && bytesread < dword ; n++)
  631. { unsigned int pstr_len ;
  632. unsigned char ch ;
  633. bytesread += psf_binheader_readf (psf, "E241", &mark_id, &position, &ch) ;
  634. psf_log_printf (psf, "   Mark ID  : %un   Position : %un", mark_id, position) ;
  635. pstr_len = (ch & 1) ? ch : ch + 1 ;
  636. if (pstr_len < sizeof (psf->u.scbuf) - 1)
  637. { bytesread += psf_binheader_readf (psf, "b", psf->u.scbuf, pstr_len) ;
  638. psf->u.scbuf [pstr_len] = 0 ;
  639. }
  640. else
  641. { unsigned int read_len = pstr_len - (sizeof (psf->u.scbuf) - 1) ;
  642. bytesread += psf_binheader_readf (psf, "bj", psf->u.scbuf, read_len, pstr_len - read_len) ;
  643. psf->u.scbuf [sizeof (psf->u.scbuf) - 1] = 0 ;
  644. }
  645. psf_log_printf (psf, "   Name     : %sn", psf->u.scbuf) ;
  646. paiff->markstr [n].markerID = mark_id ;
  647. paiff->markstr [n].position = position ;
  648. /*
  649. ** TODO if psf->u.scbuf is equal to
  650. ** either Beg_loop, Beg loop or beg loop and spam
  651. ** if (psf->instrument == NULL && (psf->instrument = psf_instrument_alloc ()) == NULL)
  652. ** return SFE_MALLOC_FAILED ;
  653. */
  654. } ;
  655. } ;
  656. mark_found++ ;
  657. psf_binheader_readf (psf, "j", dword - bytesread) ;
  658. break ;
  659. case FVER_MARKER :
  660. found_chunk |= HAVE_FVER ;
  661. /* Fall through to next case. */
  662. case SFX_MARKER :
  663. psf_binheader_readf (psf, "E4", &dword) ;
  664. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  665. psf_log_printf (psf, " %M : %dn", marker, dword) ;
  666. psf_binheader_readf (psf, "j", dword) ;
  667. break ;
  668. case NONE_MARKER :
  669. /* Fix for broken AIFC files with incorrect COMM chunk length. */
  670. { unsigned char byte ;
  671. psf_binheader_readf (psf, "1", &byte) ;
  672. dword = byte ;
  673. psf_binheader_readf (psf, "j", dword) ;
  674. }
  675. break ;
  676. case CHAN_MARKER :
  677. psf_binheader_readf (psf, "E4", &dword) ;
  678. pchk4_store (&paiff->chunk4, marker, psf_ftell (psf) - 8, dword) ;
  679. if (dword < 12)
  680. { psf_log_printf (psf, " %M : %d (should be >= 12)n", marker, dword) ;
  681. psf_binheader_readf (psf, "j", dword) ;
  682. break ;
  683. }
  684. psf_log_printf (psf, " %M : %dn", marker, dword) ;
  685. if ((error = aiff_read_chanmap (psf, dword)))
  686. return error ;
  687. break ;
  688. default :
  689. if (psf_isprint ((marker >> 24) & 0xFF) && psf_isprint ((marker >> 16) & 0xFF)
  690. && psf_isprint ((marker >> 8) & 0xFF) && psf_isprint (marker & 0xFF))
  691. { psf_binheader_readf (psf, "E4", &dword) ;
  692. psf_log_printf (psf, " %M : %d (unknown marker)n", marker, dword) ;
  693. psf_binheader_readf (psf, "j", dword) ;
  694. break ;
  695. } ;
  696. if ((dword = psf_ftell (psf)) & 0x03)
  697. { psf_log_printf (psf, "  Unknown chunk marker %X at position %d. Resyncing.n", marker, dword - 4) ;
  698. psf_binheader_readf (psf, "j", -3) ;
  699. break ;
  700. } ;
  701. psf_log_printf (psf, "*** Unknown chunk marker %X at position %D. Exiting parser.n", marker, psf_ftell (psf)) ;
  702. done = 1 ;
  703. break ;
  704. } ; /* switch (marker) */
  705. if ((! psf->sf.seekable) && (found_chunk & HAVE_SSND))
  706. break ;
  707. if (psf_ftell (psf) >= psf->filelength - (2 * SIGNED_SIZEOF (dword)))
  708. break ;
  709. } ; /* while (1) */
  710. if (instr_found && mark_found)
  711. { int j ;
  712. for (j = 0 ; j<psf->instrument->loop_count ; j ++)
  713. { if (j < ARRAY_LEN (psf->instrument->loops))
  714. { psf->instrument->loops [j].start = marker_to_position (paiff->markstr, psf->instrument->loops [j].start, mark_count) ;
  715. psf->instrument->loops [j].end = marker_to_position (paiff->markstr, psf->instrument->loops [j].end, mark_count) ;
  716. psf->instrument->loops [j].mode = SF_LOOP_FORWARD ;
  717. } ;
  718.    } ;
  719. } ;
  720. if (! (found_chunk & HAVE_FORM))
  721. return SFE_AIFF_NO_FORM ;
  722. if (! (found_chunk & HAVE_AIFF))
  723. return SFE_AIFF_COMM_NO_FORM ;
  724. if (! (found_chunk & HAVE_COMM))
  725. return SFE_AIFF_SSND_NO_COMM ;
  726. if (! psf->dataoffset)
  727. return SFE_AIFF_NO_DATA ;
  728. return 0 ;
  729. } /* aiff_read_header */
  730. static int
  731. aiff_close (SF_PRIVATE *psf)
  732. { AIFF_PRIVATE *paiff = psf->container_data ;
  733. if (paiff != NULL && paiff->markstr != NULL)
  734. { free (paiff->markstr) ;
  735. paiff->markstr = NULL ;
  736. } ;
  737. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  738. { aiff_write_tailer (psf) ;
  739. aiff_write_header (psf, SF_TRUE) ;
  740. } ;
  741. return 0 ;
  742. } /* aiff_close */
  743. static int
  744. aiff_read_comm_chunk (SF_PRIVATE *psf, COMM_CHUNK *comm_fmt)
  745. { int error = 0, bytesread, subformat ;
  746. psf->u.scbuf [0] = 0 ;
  747. bytesread = psf_binheader_readf (psf, "E4", &(comm_fmt->size)) ;
  748. /* The COMM chunk has an int aligned to an odd word boundary. Some
  749. ** procesors are not able to deal with this (ie bus fault) so we have
  750. ** to take special care.
  751. */
  752. comm_fmt->size += comm_fmt->size & 1 ;
  753. bytesread +=
  754. psf_binheader_readf (psf, "E242b", &(comm_fmt->numChannels), &(comm_fmt->numSampleFrames),
  755. &(comm_fmt->sampleSize), &(comm_fmt->sampleRate), SIGNED_SIZEOF (comm_fmt->sampleRate)) ;
  756. if (comm_fmt->size > 0x10000 && (comm_fmt->size & 0xffff) == 0)
  757. { psf_log_printf (psf, " COMM : %d (0x%x) *** should be ", comm_fmt->size, comm_fmt->size) ;
  758. comm_fmt->size = ENDSWAP_INT (comm_fmt->size) ;
  759. psf_log_printf (psf, "%d (0x%x)n", comm_fmt->size, comm_fmt->size) ;
  760. }
  761. else
  762. psf_log_printf (psf, " COMM : %dn", comm_fmt->size) ;
  763. if (comm_fmt->size == SIZEOF_AIFF_COMM)
  764. comm_fmt->encoding = NONE_MARKER ;
  765. else if (comm_fmt->size == SIZEOF_AIFC_COMM_MIN)
  766. bytesread += psf_binheader_readf (psf, "Em", &(comm_fmt->encoding)) ;
  767. else if (comm_fmt->size >= SIZEOF_AIFC_COMM)
  768. { unsigned char encoding_len ;
  769. unsigned read_len ;
  770. bytesread += psf_binheader_readf (psf, "Em1", &(comm_fmt->encoding), &encoding_len) ;
  771. comm_fmt->size = SF_MIN (sizeof (psf->u.scbuf), make_size_t (comm_fmt->size)) ;
  772. memset (psf->u.scbuf, 0, comm_fmt->size) ;
  773. read_len = comm_fmt->size - SIZEOF_AIFC_COMM + 1 ;
  774. bytesread += psf_binheader_readf (psf, "b", psf->u.scbuf, read_len) ;
  775. psf->u.scbuf [read_len + 1] = 0 ;
  776. } ;
  777. psf_log_printf (psf, "  Sample Rate : %dn", tenbytefloat2int (comm_fmt->sampleRate)) ;
  778. psf_log_printf (psf, "  Frames      : %u%sn", comm_fmt->numSampleFrames, (comm_fmt->numSampleFrames == 0 && psf->filelength > 104) ? " (Should not be 0)" : "") ;
  779. psf_log_printf (psf, "  Channels    : %dn", comm_fmt->numChannels) ;
  780. /* Found some broken 'fl32' files with comm.samplesize == 16. Fix it here. */
  781. if ((comm_fmt->encoding == fl32_MARKER || comm_fmt->encoding == FL32_MARKER) && comm_fmt->sampleSize != 32)
  782. { psf_log_printf (psf, "  Sample Size : %d (should be 32)n", comm_fmt->sampleSize) ;
  783. comm_fmt->sampleSize = 32 ;
  784. }
  785. else if ((comm_fmt->encoding == fl64_MARKER || comm_fmt->encoding == FL64_MARKER) && comm_fmt->sampleSize != 64)
  786. { psf_log_printf (psf, "  Sample Size : %d (should be 64)n", comm_fmt->sampleSize) ;
  787. comm_fmt->sampleSize = 64 ;
  788. }
  789. else
  790. psf_log_printf (psf, "  Sample Size : %dn", comm_fmt->sampleSize) ;
  791. subformat = s_bitwidth_to_subformat (comm_fmt->sampleSize) ;
  792. psf->endian = SF_ENDIAN_BIG ;
  793. switch (comm_fmt->encoding)
  794. { case NONE_MARKER :
  795. psf->sf.format = (SF_FORMAT_AIFF | subformat) ;
  796. break ;
  797. case twos_MARKER :
  798. case in24_MARKER :
  799. case in32_MARKER :
  800. psf->sf.format = (SF_ENDIAN_BIG | SF_FORMAT_AIFF | subformat) ;
  801. break ;
  802. case sowt_MARKER :
  803. case ni24_MARKER :
  804. case ni32_MARKER :
  805. psf->endian = SF_ENDIAN_LITTLE ;
  806. psf->sf.format = (SF_ENDIAN_LITTLE | SF_FORMAT_AIFF | subformat) ;
  807. break ;
  808. case fl32_MARKER :
  809. case FL32_MARKER :
  810. psf->sf.format = (SF_FORMAT_AIFF | SF_FORMAT_FLOAT) ;
  811. break ;
  812. case ulaw_MARKER :
  813. case ULAW_MARKER :
  814. psf->sf.format = (SF_FORMAT_AIFF | SF_FORMAT_ULAW) ;
  815. break ;
  816. case alaw_MARKER :
  817. case ALAW_MARKER :
  818. psf->sf.format = (SF_FORMAT_AIFF | SF_FORMAT_ALAW) ;
  819. break ;
  820. case fl64_MARKER :
  821. case FL64_MARKER :
  822. psf->sf.format = (SF_FORMAT_AIFF | SF_FORMAT_DOUBLE) ;
  823. break ;
  824. case raw_MARKER :
  825. psf->sf.format = (SF_FORMAT_AIFF | SF_FORMAT_PCM_U8) ;
  826. break ;
  827. case DWVW_MARKER :
  828. psf->sf.format = SF_FORMAT_AIFF ;
  829. switch (comm_fmt->sampleSize)
  830. { case 12 :
  831. psf->sf.format |= SF_FORMAT_DWVW_12 ;
  832. break ;
  833. case 16 :
  834. psf->sf.format |= SF_FORMAT_DWVW_16 ;
  835. break ;
  836. case 24 :
  837. psf->sf.format |= SF_FORMAT_DWVW_24 ;
  838. break ;
  839. default :
  840. psf->sf.format |= SF_FORMAT_DWVW_N ;
  841. break ;
  842. } ;
  843. break ;
  844. case GSM_MARKER :
  845. psf->sf.format = SF_FORMAT_AIFF ;
  846. psf->sf.format = (SF_FORMAT_AIFF | SF_FORMAT_GSM610) ;
  847. break ;
  848. case ima4_MARKER :
  849. psf->endian = SF_ENDIAN_BIG ;
  850. psf->sf.format = (SF_FORMAT_AIFF | SF_FORMAT_IMA_ADPCM) ;
  851. break ;
  852. default :
  853. psf_log_printf (psf, "AIFC : Unimplemented format : %Mn", comm_fmt->encoding) ;
  854. error = SFE_UNIMPLEMENTED ;
  855. } ;
  856. if (! psf->u.scbuf [0])
  857. psf_log_printf (psf, "  Encoding    : %Mn", comm_fmt->encoding) ;
  858. else
  859. psf_log_printf (psf, "  Encoding    : %M => %sn", comm_fmt->encoding, psf->u.scbuf) ;
  860. return error ;
  861. } /* aiff_read_comm_chunk */
  862. /*==========================================================================================
  863. */
  864. static int
  865. aiff_rewrite_header (SF_PRIVATE *psf, AIFF_PRIVATE * paiff)
  866. {
  867. /* Assuming here that the header has already been written and just
  868. ** needs to be corrected for new data length. That means that we
  869. ** only change the length fields of the FORM and SSND chunks ;
  870. ** everything else can be skipped over.
  871. */
  872. int k, ch ;
  873. int comm_size, comm_frames ;
  874. psf_fseek (psf, 0, SEEK_SET) ;
  875. psf_fread (psf->header, psf->dataoffset, 1, psf) ;
  876. psf->headindex = 0 ;
  877. for (k = 0 ; k < paiff->chunk4.count ; k++)
  878. { switch (paiff->chunk4.l [k].chunk)
  879. { case FORM_MARKER :
  880. psf_binheader_writef (psf, "Etm8", FORM_MARKER, psf->filelength - 8) ;
  881. break ;
  882. case COMM_MARKER :
  883. psf->headindex = paiff->chunk4.l [k].offset ;
  884. comm_frames = psf->sf.frames ;
  885. comm_size = paiff->chunk4.l [k].len ;
  886. psf_binheader_writef (psf, "Em42t4", COMM_MARKER, comm_size, psf->sf.channels, comm_frames) ;
  887. break ;
  888. case SSND_MARKER :
  889. psf->headindex = paiff->chunk4.l [k].offset ;
  890. psf_binheader_writef (psf, "Etm8", SSND_MARKER, psf->datalength + SIZEOF_SSND_CHUNK) ;
  891. break ;
  892. case PEAK_MARKER :
  893. psf->headindex = paiff->chunk4.l [k].offset ;
  894. psf_binheader_writef (psf, "Em4", PEAK_MARKER, AIFF_PEAK_CHUNK_SIZE (psf->sf.channels)) ;
  895. psf_binheader_writef (psf, "E44", 1, time (NULL)) ;
  896. for (ch = 0 ; ch < psf->sf.channels ; ch++)
  897. psf_binheader_writef (psf, "Eft8", (float) psf->peak_info->peaks [ch].value, psf->peak_info->peaks [ch].position) ;
  898. break ;
  899. default :
  900. /* There are a whole bunch of chunks we should just ignore. */
  901. break ;
  902. } ;
  903. } ;
  904. /* Header mangling complete so write it out. */
  905. psf_fseek (psf, 0, SEEK_SET) ;
  906. psf_fwrite (psf->header, psf->headindex, 1, psf) ;
  907. return 0 ;
  908. } /* aiff_rewrite_header */
  909. static int
  910. aiff_write_header (SF_PRIVATE *psf, int calc_length)
  911. { sf_count_t current ;
  912. AIFF_PRIVATE *paiff ;
  913. unsigned char comm_sample_rate [10], comm_zero_bytes [2] = { 0, 0 } ;
  914. unsigned int comm_type, comm_size, comm_encoding, comm_frames = 0 ;
  915. int k, endian, has_data = SF_FALSE ;
  916. short bit_width ;
  917. if ((paiff = psf->container_data) == NULL)
  918. return SFE_INTERNAL ;
  919. current = psf_ftell (psf) ;
  920. if (current > psf->dataoffset)
  921. has_data = SF_TRUE ;
  922. if (calc_length)
  923. { psf->filelength = psf_get_filelen (psf) ;
  924. psf->datalength = psf->filelength - psf->dataoffset ;
  925. if (psf->dataend)
  926. psf->datalength -= psf->filelength - psf->dataend ;
  927. if (psf->bytewidth > 0)
  928. psf->sf.frames = psf->datalength / (psf->bytewidth * psf->sf.channels) ;
  929. } ;
  930. if (psf->file.mode == SFM_RDWR && psf->dataoffset > 0 && paiff->chunk4.count > 0)
  931. { int err = aiff_rewrite_header (psf, paiff) ;
  932. if (current > 0)
  933. psf_fseek (psf, current, SEEK_SET) ;
  934. return err ;
  935. } ;
  936. endian = SF_ENDIAN (psf->sf.format) ;
  937. if (CPU_IS_LITTLE_ENDIAN && endian == SF_ENDIAN_CPU)
  938. endian = SF_ENDIAN_LITTLE ;
  939. /* Standard value here. */
  940. bit_width = psf->bytewidth * 8 ;
  941. comm_frames = (psf->sf.frames > 0xFFFFFFFF) ? 0xFFFFFFFF : psf->sf.frames ;
  942. switch (SF_CODEC (psf->sf.format))
  943. { case SF_FORMAT_PCM_S8 :
  944. case SF_FORMAT_PCM_16 :
  945. case SF_FORMAT_PCM_24 :
  946. case SF_FORMAT_PCM_32 :
  947. switch (endian)
  948. { case SF_ENDIAN_BIG :
  949. psf->endian = SF_ENDIAN_BIG ;
  950. comm_type = AIFC_MARKER ;
  951. comm_size = SIZEOF_AIFC_COMM ;
  952. comm_encoding = twos_MARKER ;
  953. break ;
  954. case SF_ENDIAN_LITTLE :
  955. psf->endian = SF_ENDIAN_LITTLE ;
  956. comm_type = AIFC_MARKER ;
  957. comm_size = SIZEOF_AIFC_COMM ;
  958. comm_encoding = sowt_MARKER ;
  959. break ;
  960. default : /* SF_ENDIAN_FILE */
  961. psf->endian = SF_ENDIAN_BIG ;
  962. comm_type = AIFF_MARKER ;
  963. comm_size = SIZEOF_AIFF_COMM ;
  964. comm_encoding = 0 ;
  965. break ;
  966. } ;
  967. break ;
  968. case SF_FORMAT_FLOAT : /* Big endian floating point. */
  969. psf->endian = SF_ENDIAN_BIG ;
  970. comm_type = AIFC_MARKER ;
  971. comm_size = SIZEOF_AIFC_COMM ;
  972. comm_encoding = FL32_MARKER ; /* Use 'FL32' because its easier to read. */
  973. break ;
  974. case SF_FORMAT_DOUBLE : /* Big endian double precision floating point. */
  975. psf->endian = SF_ENDIAN_BIG ;
  976. comm_type = AIFC_MARKER ;
  977. comm_size = SIZEOF_AIFC_COMM ;
  978. comm_encoding = FL64_MARKER ; /* Use 'FL64' because its easier to read. */
  979. break ;
  980. case SF_FORMAT_ULAW :
  981. psf->endian = SF_ENDIAN_BIG ;
  982. comm_type = AIFC_MARKER ;
  983. comm_size = SIZEOF_AIFC_COMM ;
  984. comm_encoding = ulaw_MARKER ;
  985. break ;
  986. case SF_FORMAT_ALAW :
  987. psf->endian = SF_ENDIAN_BIG ;
  988. comm_type = AIFC_MARKER ;
  989. comm_size = SIZEOF_AIFC_COMM ;
  990. comm_encoding = alaw_MARKER ;
  991. break ;
  992. case SF_FORMAT_PCM_U8 :
  993. psf->endian = SF_ENDIAN_BIG ;
  994. comm_type = AIFC_MARKER ;
  995. comm_size = SIZEOF_AIFC_COMM ;
  996. comm_encoding = raw_MARKER ;
  997. break ;
  998. case SF_FORMAT_DWVW_12 :
  999. psf->endian = SF_ENDIAN_BIG ;
  1000. comm_type = AIFC_MARKER ;
  1001. comm_size = SIZEOF_AIFC_COMM ;
  1002. comm_encoding = DWVW_MARKER ;
  1003. /* Override standard value here.*/
  1004. bit_width = 12 ;
  1005. break ;
  1006. case SF_FORMAT_DWVW_16 :
  1007. psf->endian = SF_ENDIAN_BIG ;
  1008. comm_type = AIFC_MARKER ;
  1009. comm_size = SIZEOF_AIFC_COMM ;
  1010. comm_encoding = DWVW_MARKER ;
  1011. /* Override standard value here.*/
  1012. bit_width = 16 ;
  1013. break ;
  1014. case SF_FORMAT_DWVW_24 :
  1015. psf->endian = SF_ENDIAN_BIG ;
  1016. comm_type = AIFC_MARKER ;
  1017. comm_size = SIZEOF_AIFC_COMM ;
  1018. comm_encoding = DWVW_MARKER ;
  1019. /* Override standard value here.*/
  1020. bit_width = 24 ;
  1021. break ;
  1022. case SF_FORMAT_GSM610 :
  1023. psf->endian = SF_ENDIAN_BIG ;
  1024. comm_type = AIFC_MARKER ;
  1025. comm_size = SIZEOF_AIFC_COMM ;
  1026. comm_encoding = GSM_MARKER ;
  1027. /* Override standard value here.*/
  1028. bit_width = 16 ;
  1029. break ;
  1030. case SF_FORMAT_IMA_ADPCM :
  1031. psf->endian = SF_ENDIAN_BIG ;
  1032. comm_type = AIFC_MARKER ;
  1033. comm_size = SIZEOF_AIFC_COMM ;
  1034. comm_encoding = ima4_MARKER ;
  1035. /* Override standard value here.*/
  1036. bit_width = 16 ;
  1037. comm_frames = psf->sf.frames / AIFC_IMA4_SAMPLES_PER_BLOCK ;
  1038. break ;
  1039. default : return SFE_BAD_OPEN_FORMAT ;
  1040. } ;
  1041. /* Reset the current header length to zero. */
  1042. psf->header [0] = 0 ;
  1043. psf->headindex = 0 ;
  1044. psf_fseek (psf, 0, SEEK_SET) ;
  1045. psf_binheader_writef (psf, "Etm8", FORM_MARKER, psf->filelength - 8) ;
  1046. /* Write AIFF/AIFC marker and COM chunk. */
  1047. if (comm_type == AIFC_MARKER)
  1048. /* AIFC must have an FVER chunk. */
  1049. psf_binheader_writef (psf, "Emm44", comm_type, FVER_MARKER, 4, 0xA2805140) ;
  1050. else
  1051. psf_binheader_writef (psf, "Em", comm_type) ;
  1052. paiff->comm_offset = psf->headindex - 8 ;
  1053. memset (comm_sample_rate, 0, sizeof (comm_sample_rate)) ;
  1054. uint2tenbytefloat (psf->sf.samplerate, comm_sample_rate) ;
  1055. psf_binheader_writef (psf, "Em42t42", COMM_MARKER, comm_size, psf->sf.channels, comm_frames, bit_width) ;
  1056. psf_binheader_writef (psf, "b", comm_sample_rate, sizeof (comm_sample_rate)) ;
  1057. /* AIFC chunks have some extra data. */
  1058. if (comm_type == AIFC_MARKER)
  1059. psf_binheader_writef (psf, "mb", comm_encoding, comm_zero_bytes, sizeof (comm_zero_bytes)) ;
  1060. if (psf->channel_map && paiff->chanmap_tag)
  1061. psf_binheader_writef (psf, "Em4444", CHAN_MARKER, 12, paiff->chanmap_tag, 0, 0) ;
  1062. if (psf->instrument != NULL)
  1063. { MARK_ID_POS m [4] ;
  1064. INST_CHUNK ch ;
  1065. unsigned short ct = 0 ;
  1066. memset (m, 0, sizeof (m)) ;
  1067. memset (&ch, 0, sizeof (ch)) ;
  1068. ch.baseNote = psf->instrument->basenote ;
  1069. ch.detune = psf->instrument->detune ;
  1070. ch.lowNote = psf->instrument->key_lo ;
  1071. ch.highNote = psf->instrument->key_hi ;
  1072. ch.lowVelocity = psf->instrument->velocity_lo ;
  1073. ch.highVelocity = psf->instrument->velocity_hi ;
  1074. ch.gain = psf->instrument->gain ;
  1075. if (psf->instrument->loops [0].mode != SF_LOOP_NONE)
  1076. { ch.sustain_loop.playMode = 1 ;
  1077. ch.sustain_loop.beginLoop = ct ;
  1078. m [0].markerID = ct++ ;
  1079. m [0].position = psf->instrument->loops [0].start ;
  1080. ch.sustain_loop.endLoop = ct ;
  1081. m [1].markerID = ct++ ;
  1082. m [1].position = psf->instrument->loops [0].end ;
  1083. } ;
  1084. if (psf->instrument->loops [1].mode != SF_LOOP_NONE)
  1085. { ch.release_loop.playMode = 1 ;
  1086. ch.release_loop.beginLoop = ct ;
  1087. m [2].markerID = ct++ ;
  1088. m [2].position = psf->instrument->loops [1].start ;
  1089. ch.release_loop.endLoop = ct ;
  1090. m [3].markerID = ct++ ;
  1091. m [3].position = psf->instrument->loops [1].end ;
  1092. }
  1093. else
  1094. { ch.release_loop.playMode = 0 ;
  1095. ch.release_loop.beginLoop = 0 ;
  1096. ch.release_loop.endLoop = 0 ;
  1097. } ;
  1098. psf_binheader_writef (psf, "Em4111111", INST_MARKER, SIZEOF_INST_CHUNK, ch.baseNote, ch.detune,
  1099. ch.lowNote, ch.highNote, ch.lowVelocity, ch.highVelocity) ;
  1100. psf_binheader_writef (psf, "2222222", ch.gain, ch.sustain_loop.playMode,
  1101. ch.sustain_loop.beginLoop, ch.sustain_loop.endLoop, ch.release_loop.playMode,
  1102. ch.release_loop.beginLoop, ch.release_loop.endLoop) ;
  1103. if (ct == 2)
  1104. psf_binheader_writef (psf, "Em42241b241b",
  1105. MARK_MARKER, 2 + 2 * (2 + 4 + 1 + 9), 2,
  1106. m [0].markerID, m [0].position, 8, "beg loop", make_size_t (9),
  1107. m [1].markerID, m [1].position, 8, "end loop", make_size_t (9)) ;
  1108. else if (ct == 4)
  1109. psf_binheader_writef (psf, "Em42 241b 241b 241b 241b",
  1110. MARK_MARKER, 2 + 4 * (2 + 4 + 1 + 9), 4,
  1111. m [0].markerID, m [0].position, 8, "beg loop", make_size_t (9),
  1112. m [1].markerID, m [1].position, 8, "end loop", make_size_t (9),
  1113. m [2].markerID, m [2].position, 8, "beg loop", make_size_t (9),
  1114. m [3].markerID, m [3].position, 8, "end loop", make_size_t (9)) ;
  1115. } ;
  1116. if (psf->str_flags & SF_STR_LOCATE_START)
  1117. aiff_write_strings (psf, SF_STR_LOCATE_START) ;
  1118. if (psf->peak_info != NULL && psf->peak_info->peak_loc == SF_PEAK_START)
  1119. { psf_binheader_writef (psf, "Em4", PEAK_MARKER, AIFF_PEAK_CHUNK_SIZE (psf->sf.channels)) ;
  1120. psf_binheader_writef (psf, "E44", 1, time (NULL)) ;
  1121. for (k = 0 ; k < psf->sf.channels ; k++)
  1122. psf_binheader_writef (psf, "Eft8", (float) psf->peak_info->peaks [k].value, psf->peak_info->peaks [k].position) ;
  1123. } ;
  1124. /* Write SSND chunk. */
  1125. paiff->ssnd_offset = psf->headindex ;
  1126. psf_binheader_writef (psf, "Etm844", SSND_MARKER, psf->datalength + SIZEOF_SSND_CHUNK, 0, 0) ;
  1127. /* Header construction complete so write it out. */
  1128. psf_fwrite (psf->header, psf->headindex, 1, psf) ;
  1129. if (psf->error)
  1130. return psf->error ;
  1131. if (has_data && psf->dataoffset != psf->headindex)
  1132. return psf->error = SFE_INTERNAL ;
  1133. psf->dataoffset = psf->headindex ;
  1134. if (! has_data)
  1135. psf_fseek (psf, psf->dataoffset, SEEK_SET) ;
  1136. else if (current > 0)
  1137. psf_fseek (psf, current, SEEK_SET) ;
  1138. return psf->error ;
  1139. } /* aiff_write_header */
  1140. static int
  1141. aiff_write_tailer (SF_PRIVATE *psf)
  1142. { int k ;
  1143. /* Reset the current header length to zero. */
  1144. psf->header [0] = 0 ;
  1145. psf->headindex = 0 ;
  1146. psf->dataend = psf_fseek (psf, 0, SEEK_END) ;
  1147. /* Make sure tailer data starts at even byte offset. Pad if necessary. */
  1148. if (psf->dataend % 2 == 1)
  1149. { psf_fwrite (psf->header, 1, 1, psf) ;
  1150. psf->dataend ++ ;
  1151. } ;
  1152. if (psf->peak_info != NULL && psf->peak_info->peak_loc == SF_PEAK_END)
  1153. { psf_binheader_writef (psf, "Em4", PEAK_MARKER, AIFF_PEAK_CHUNK_SIZE (psf->sf.channels)) ;
  1154. psf_binheader_writef (psf, "E44", 1, time (NULL)) ;
  1155. for (k = 0 ; k < psf->sf.channels ; k++)
  1156. psf_binheader_writef (psf, "Eft8", (float) psf->peak_info->peaks [k].value, psf->peak_info->peaks [k].position) ;
  1157. } ;
  1158. if (psf->str_flags & SF_STR_LOCATE_END)
  1159. aiff_write_strings (psf, SF_STR_LOCATE_END) ;
  1160. /* Write the tailer. */
  1161. if (psf->headindex > 0)
  1162. psf_fwrite (psf->header, psf->headindex, 1, psf) ;
  1163. return 0 ;
  1164. } /* aiff_write_tailer */
  1165. static void
  1166. aiff_write_strings (SF_PRIVATE *psf, int location)
  1167. { int k, slen ;
  1168. for (k = 0 ; k < SF_MAX_STRINGS ; k++)
  1169. { if (psf->strings [k].type == 0)
  1170. break ;
  1171. if (psf->strings [k].flags != location)
  1172. continue ;
  1173. switch (psf->strings [k].type)
  1174. { case SF_STR_SOFTWARE :
  1175. slen = strlen (psf->strings [k].str) ;
  1176. psf_binheader_writef (psf, "Em4mb", APPL_MARKER, slen + 4, m3ga_MARKER, psf->strings [k].str, make_size_t (slen + (slen & 1))) ;
  1177. break ;
  1178. case SF_STR_TITLE :
  1179. psf_binheader_writef (psf, "EmS", NAME_MARKER, psf->strings [k].str) ;
  1180. break ;
  1181. case SF_STR_COPYRIGHT :
  1182. psf_binheader_writef (psf, "EmS", c_MARKER, psf->strings [k].str) ;
  1183. break ;
  1184. case SF_STR_ARTIST :
  1185. psf_binheader_writef (psf, "EmS", AUTH_MARKER, psf->strings [k].str) ;
  1186. break ;
  1187. case SF_STR_COMMENT :
  1188. psf_binheader_writef (psf, "EmS", ANNO_MARKER, psf->strings [k].str) ;
  1189. break ;
  1190. /*
  1191. case SF_STR_DATE :
  1192. psf_binheader_writef (psf, "Ems", ICRD_MARKER, psf->strings [k].str) ;
  1193. break ;
  1194. */
  1195. } ;
  1196. } ;
  1197. return ;
  1198. } /* aiff_write_strings */
  1199. static int
  1200. aiff_command (SF_PRIVATE * psf, int command, void * UNUSED (data), int UNUSED (datasize))
  1201. { AIFF_PRIVATE *paiff ;
  1202. if ((paiff = psf->container_data) == NULL)
  1203. return SFE_INTERNAL ;
  1204. switch (command)
  1205. { case SFC_SET_CHANNEL_MAP_INFO :
  1206. paiff->chanmap_tag = aiff_caf_find_channel_layout_tag (psf->channel_map, psf->sf.channels) ;
  1207. return (paiff->chanmap_tag != 0) ;
  1208. default :
  1209. break ;
  1210. } ;
  1211. return 0 ;
  1212. } /* aiff_command */
  1213. static const char*
  1214. get_loop_mode_str (short mode)
  1215. { switch (mode)
  1216. { case 0 : return "none" ;
  1217. case 1 : return "forward" ;
  1218. case 2 : return "backward" ;
  1219. } ;
  1220. return "*** unknown" ;
  1221. } /* get_loop_mode_str */
  1222. static short
  1223. get_loop_mode (short mode)
  1224. { switch (mode)
  1225. { case 0 : return SF_LOOP_NONE ;
  1226. case 1 : return SF_LOOP_FORWARD ;
  1227. case 2 : return SF_LOOP_BACKWARD ;
  1228. } ;
  1229. return SF_LOOP_NONE ;
  1230. } /* get_loop_mode */
  1231. /*==========================================================================================
  1232. ** Rough hack at converting from 80 bit IEEE float in AIFF header to an int and
  1233. ** back again. It assumes that all sample rates are between 1 and 800MHz, which
  1234. ** should be OK as other sound file formats use a 32 bit integer to store sample
  1235. ** rate.
  1236. ** There is another (probably better) version in the source code to the SoX but it
  1237. ** has a copyright which probably prevents it from being allowable as GPL/LGPL.
  1238. */
  1239. static int
  1240. tenbytefloat2int (unsigned char *bytes)
  1241. { int val = 3 ;
  1242. if (bytes [0] & 0x80) /* Negative number. */
  1243. return 0 ;
  1244. if (bytes [0] <= 0x3F) /* Less than 1. */
  1245. return 1 ;
  1246. if (bytes [0] > 0x40) /* Way too big. */
  1247. return 0x4000000 ;
  1248. if (bytes [0] == 0x40 && bytes [1] > 0x1C) /* Too big. */
  1249. return 800000000 ;
  1250. /* Ok, can handle it. */
  1251. val = (bytes [2] << 23) | (bytes [3] << 15) | (bytes [4] << 7) | (bytes [5] >> 1) ;
  1252. val >>= (29 - bytes [1]) ;
  1253. return val ;
  1254. } /* tenbytefloat2int */
  1255. static void
  1256. uint2tenbytefloat (unsigned int num, unsigned char *bytes)
  1257. { unsigned int mask = 0x40000000 ;
  1258. int count ;
  1259. if (num <= 1)
  1260. { bytes [0] = 0x3F ;
  1261. bytes [1] = 0xFF ;
  1262. bytes [2] = 0x80 ;
  1263. return ;
  1264. } ;
  1265. bytes [0] = 0x40 ;
  1266. if (num >= mask)
  1267. { bytes [1] = 0x1D ;
  1268. return ;
  1269. } ;
  1270. for (count = 0 ; count <= 32 ; count ++)
  1271. { if (num & mask)
  1272. break ;
  1273. mask >>= 1 ;
  1274. } ;
  1275. num <<= count + 1 ;
  1276. bytes [1] = 29 - count ;
  1277. bytes [2] = (num >> 24) & 0xFF ;
  1278. bytes [3] = (num >> 16) & 0xFF ;
  1279. bytes [4] = (num >> 8) & 0xFF ;
  1280. bytes [5] = num & 0xFF ;
  1281. } /* uint2tenbytefloat */
  1282. static int
  1283. aiff_read_basc_chunk (SF_PRIVATE * psf, int datasize)
  1284. { const char * type_str ;
  1285. basc_CHUNK bc ;
  1286. int count ;
  1287. count = psf_binheader_readf (psf, "E442", &bc.version, &bc.numBeats, &bc.rootNote) ;
  1288. count += psf_binheader_readf (psf, "E222", &bc.scaleType, &bc.sigNumerator, &bc.sigDenominator) ;
  1289. count += psf_binheader_readf (psf, "E2j", &bc.loopType, datasize - sizeof (bc)) ;
  1290. psf_log_printf (psf, "  Version ? : %un  Num Beats : %un  Root Note : 0x%xn",
  1291. bc.version, bc.numBeats, bc.rootNote) ;
  1292. switch (bc.scaleType)
  1293. { case basc_SCALE_MINOR :
  1294. type_str = "MINOR" ;
  1295. break ;
  1296. case basc_SCALE_MAJOR :
  1297. type_str = "MAJOR" ;
  1298. break ;
  1299. case basc_SCALE_NEITHER :
  1300. type_str = "NEITHER" ;
  1301. break ;
  1302. case basc_SCALE_BOTH :
  1303. type_str = "BOTH" ;
  1304. break ;
  1305. default :
  1306. type_str = "!!WRONG!!" ;
  1307. break ;
  1308. } ;
  1309. psf_log_printf (psf, "  ScaleType : 0x%x (%s)n", bc.scaleType, type_str) ;
  1310. psf_log_printf (psf, "  Time Sig  : %d/%dn", bc.sigNumerator, bc.sigDenominator) ;
  1311. switch (bc.loopType)
  1312. { case basc_TYPE_ONE_SHOT :
  1313. type_str = "One Shot" ;
  1314. break ;
  1315. case basc_TYPE_LOOP :
  1316. type_str = "Loop" ;
  1317. break ;
  1318. default:
  1319. type_str = "!!WRONG!!" ;
  1320. break ;
  1321. } ;
  1322. psf_log_printf (psf, "  Loop Type : 0x%x (%s)n", bc.loopType, type_str) ;
  1323. if ((psf->loop_info = calloc (1, sizeof (SF_LOOP_INFO))) == NULL)
  1324. return SFE_MALLOC_FAILED ;
  1325. psf->loop_info->time_sig_num = bc.sigNumerator ;
  1326. psf->loop_info->time_sig_den = bc.sigDenominator ;
  1327. psf->loop_info->loop_mode = (bc.loopType == basc_TYPE_ONE_SHOT) ? SF_LOOP_NONE : SF_LOOP_FORWARD ;
  1328. psf->loop_info->num_beats = bc.numBeats ;
  1329. /* Can always be recalculated from other known fields. */
  1330. psf->loop_info->bpm = (1.0 / psf->sf.frames) * psf->sf.samplerate
  1331. * ((bc.numBeats * 4.0) / bc.sigDenominator) * 60.0 ;
  1332. psf->loop_info->root_key = bc.rootNote ;
  1333. if (count < datasize)
  1334. psf_binheader_readf (psf, "j", datasize - count) ;
  1335. return 0 ;
  1336. } /* aiff_read_basc_chunk */
  1337. static int
  1338. aiff_read_chanmap (SF_PRIVATE * psf, unsigned dword)
  1339. { const AIFF_CAF_CHANNEL_MAP * map_info ;
  1340. unsigned channel_bitmap, channel_decriptions, bytesread ;
  1341. int layout_tag ;
  1342. bytesread = psf_binheader_readf (psf, "444", &layout_tag, &channel_bitmap, &channel_decriptions) ;
  1343. map_info = aiff_caf_of_channel_layout_tag (layout_tag) ;
  1344. psf_log_printf (psf, "  Tag    : %xn", layout_tag) ;
  1345. if (map_info)
  1346. psf_log_printf (psf, "  Layout : %sn", map_info->name) ;
  1347. if (bytesread < dword)
  1348. psf_binheader_readf (psf, "j", dword - bytesread) ;
  1349. if (map_info->channel_map != NULL)
  1350. { size_t chanmap_size = psf->sf.channels * sizeof (psf->channel_map [0]) ;
  1351. free (psf->channel_map) ;
  1352. if ((psf->channel_map = malloc (chanmap_size)) == NULL)
  1353. return SFE_MALLOC_FAILED ;
  1354. memcpy (psf->channel_map, map_info->channel_map, chanmap_size) ;
  1355. } ;
  1356. return 0 ;
  1357. } /* aiff_read_chanmap */