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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2002-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
  3. **
  4. ** This program is free software; you can redistribute it and/or modify
  5. ** it under the terms of the GNU Lesser General Public License as published by
  6. ** the Free Software Foundation; either version 2.1 of the License, or
  7. ** (at your option) any later version.
  8. **
  9. ** This program is distributed in the hope that it will be useful,
  10. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ** GNU Lesser General Public License for more details.
  13. **
  14. ** You should have received a copy of the GNU Lesser General Public License
  15. ** along with this program; if not, write to the Free Software
  16. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #include "sfconfig.h"
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <fcntl.h>
  22. #include <string.h>
  23. #include <ctype.h>
  24. #include <math.h>
  25. #include "sndfile.h"
  26. #include "sfendian.h"
  27. #include "common.h"
  28. /*------------------------------------------------------------------------------
  29. */
  30. #define SDS_DATA_OFFSET 0x15
  31. #define SDS_BLOCK_SIZE 127
  32. #define SDS_AUDIO_BYTES_PER_BLOCK 120
  33. #define SDS_3BYTE_TO_INT_DECODE(x) (((x) & 0x7F) | (((x) & 0x7F00) >> 1) | (((x) & 0x7F0000) >> 2))
  34. #define SDS_INT_TO_3BYTE_ENCODE(x) (((x) & 0x7F) | (((x) << 1) & 0x7F00) | (((x) << 2) & 0x7F0000))
  35. /*------------------------------------------------------------------------------
  36. ** Typedefs.
  37. */
  38. typedef struct tag_SDS_PRIVATE
  39. { int bitwidth, frames ;
  40. int samplesperblock, total_blocks ;
  41. int (*reader) (SF_PRIVATE *psf, struct tag_SDS_PRIVATE *psds) ;
  42. int (*writer) (SF_PRIVATE *psf, struct tag_SDS_PRIVATE *psds) ;
  43. int read_block, read_count ;
  44. unsigned char read_data [SDS_BLOCK_SIZE] ;
  45. int read_samples [SDS_BLOCK_SIZE / 2] ; /* Maximum samples per block */
  46. int write_block, write_count ;
  47. unsigned char write_data [SDS_BLOCK_SIZE] ;
  48. int write_samples [SDS_BLOCK_SIZE / 2] ; /* Maximum samples per block */
  49. } SDS_PRIVATE ;
  50. /*------------------------------------------------------------------------------
  51. ** Private static functions.
  52. */
  53. static int sds_close (SF_PRIVATE *psf) ;
  54. static int sds_write_header (SF_PRIVATE *psf, int calc_length) ;
  55. static int sds_read_header (SF_PRIVATE *psf, SDS_PRIVATE *psds) ;
  56. static int sds_init (SF_PRIVATE *psf, SDS_PRIVATE *psds) ;
  57. static sf_count_t sds_read_s (SF_PRIVATE *psf, short *ptr, sf_count_t len) ;
  58. static sf_count_t sds_read_i (SF_PRIVATE *psf, int *ptr, sf_count_t len) ;
  59. static sf_count_t sds_read_f (SF_PRIVATE *psf, float *ptr, sf_count_t len) ;
  60. static sf_count_t sds_read_d (SF_PRIVATE *psf, double *ptr, sf_count_t len) ;
  61. static sf_count_t sds_write_s (SF_PRIVATE *psf, const short *ptr, sf_count_t len) ;
  62. static sf_count_t sds_write_i (SF_PRIVATE *psf, const int *ptr, sf_count_t len) ;
  63. static sf_count_t sds_write_f (SF_PRIVATE *psf, const float *ptr, sf_count_t len) ;
  64. static sf_count_t sds_write_d (SF_PRIVATE *psf, const double *ptr, sf_count_t len) ;
  65. static sf_count_t sds_seek (SF_PRIVATE *psf, int mode, sf_count_t offset) ;
  66. static int sds_2byte_read (SF_PRIVATE *psf, SDS_PRIVATE *psds) ;
  67. static int sds_3byte_read (SF_PRIVATE *psf, SDS_PRIVATE *psds) ;
  68. static int sds_4byte_read (SF_PRIVATE *psf, SDS_PRIVATE *psds) ;
  69. static int sds_read (SF_PRIVATE *psf, SDS_PRIVATE *psds, int *iptr, int readcount) ;
  70. static int sds_2byte_write (SF_PRIVATE *psf, SDS_PRIVATE *psds) ;
  71. static int sds_3byte_write (SF_PRIVATE *psf, SDS_PRIVATE *psds) ;
  72. static int sds_4byte_write (SF_PRIVATE *psf, SDS_PRIVATE *psds) ;
  73. static int sds_write (SF_PRIVATE *psf, SDS_PRIVATE *psds, const int *iptr, int writecount) ;
  74. /*------------------------------------------------------------------------------
  75. ** Public function.
  76. */
  77. int
  78. sds_open (SF_PRIVATE *psf)
  79. { SDS_PRIVATE *psds ;
  80. int error = 0 ;
  81. /* Hmmmm, need this here to pass update_header_test. */
  82. psf->sf.frames = 0 ;
  83. if (! (psds = calloc (1, sizeof (SDS_PRIVATE))))
  84. return SFE_MALLOC_FAILED ;
  85. psf->codec_data = psds ;
  86. if (psf->file.mode == SFM_READ || (psf->file.mode == SFM_RDWR && psf->filelength > 0))
  87. { if ((error = sds_read_header (psf, psds)))
  88. return error ;
  89. } ;
  90. if ((SF_CONTAINER (psf->sf.format)) != SF_FORMAT_SDS)
  91. return SFE_BAD_OPEN_FORMAT ;
  92. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  93. { if (sds_write_header (psf, SF_FALSE))
  94. return psf->error ;
  95. psf->write_header = sds_write_header ;
  96. psf_fseek (psf, SDS_DATA_OFFSET, SEEK_SET) ;
  97. } ;
  98. if ((error = sds_init (psf, psds)) != 0)
  99. return error ;
  100. psf->seek = sds_seek ;
  101. psf->container_close = sds_close ;
  102. psf->blockwidth = 0 ;
  103. return error ;
  104. } /* sds_open */
  105. /*------------------------------------------------------------------------------
  106. */
  107. static int
  108. sds_close (SF_PRIVATE *psf)
  109. {
  110. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  111. { SDS_PRIVATE *psds ;
  112. if ((psds = (SDS_PRIVATE *) psf->codec_data) == NULL)
  113. { psf_log_printf (psf, "*** Bad psf->codec_data ptr.n") ;
  114. return SFE_INTERNAL ;
  115. } ;
  116. if (psds->write_count > 0)
  117. { memset (&(psds->write_data [psds->write_count]), 0, (psds->samplesperblock - psds->write_count) * sizeof (int)) ;
  118. psds->writer (psf, psds) ;
  119. } ;
  120. sds_write_header (psf, SF_TRUE) ;
  121. } ;
  122. return 0 ;
  123. } /* sds_close */
  124. static int
  125. sds_init (SF_PRIVATE *psf, SDS_PRIVATE *psds)
  126. {
  127. if (psds->bitwidth < 8 || psds->bitwidth > 28)
  128. return (psf->error = SFE_SDS_BAD_BIT_WIDTH) ;
  129. if (psds->bitwidth < 14)
  130. { psds->reader = sds_2byte_read ;
  131. psds->writer = sds_2byte_write ;
  132. psds->samplesperblock = SDS_AUDIO_BYTES_PER_BLOCK / 2 ;
  133. }
  134. else if (psds->bitwidth < 21)
  135. { psds->reader = sds_3byte_read ;
  136. psds->writer = sds_3byte_write ;
  137. psds->samplesperblock = SDS_AUDIO_BYTES_PER_BLOCK / 3 ;
  138. }
  139. else
  140. { psds->reader = sds_4byte_read ;
  141. psds->writer = sds_4byte_write ;
  142. psds->samplesperblock = SDS_AUDIO_BYTES_PER_BLOCK / 4 ;
  143. } ;
  144. if (psf->file.mode == SFM_READ || psf->file.mode == SFM_RDWR)
  145. { psf->read_short = sds_read_s ;
  146. psf->read_int = sds_read_i ;
  147. psf->read_float = sds_read_f ;
  148. psf->read_double = sds_read_d ;
  149. /* Read first block. */
  150. psds->reader (psf, psds) ;
  151. } ;
  152. if (psf->file.mode == SFM_WRITE || psf->file.mode == SFM_RDWR)
  153. { psf->write_short = sds_write_s ;
  154. psf->write_int = sds_write_i ;
  155. psf->write_float = sds_write_f ;
  156. psf->write_double = sds_write_d ;
  157. } ;
  158. return 0 ;
  159. } /* sds_init */
  160. static int
  161. sds_read_header (SF_PRIVATE *psf, SDS_PRIVATE *psds)
  162. { unsigned char channel, bitwidth, loop_type, byte ;
  163. unsigned short sample_no, marker ;
  164. unsigned int samp_period, data_length, sustain_loop_start, sustain_loop_end ;
  165. int bytesread, blockcount ;
  166. /* Set position to start of file to begin reading header. */
  167. bytesread = psf_binheader_readf (psf, "pE211", 0, &marker, &channel, &byte) ;
  168. if (marker != 0xF07E || byte != 0x01)
  169. return SFE_SDS_NOT_SDS ;
  170. bytesread += psf_binheader_readf (psf, "e2", &sample_no) ;
  171. sample_no = SDS_3BYTE_TO_INT_DECODE (sample_no) ;
  172. psf_log_printf (psf, "Midi Sample Dump Standard (.sds)nF07En"
  173. " Midi Channel  : %dn Sample Number : %dn",
  174. channel, sample_no) ;
  175. bytesread += psf_binheader_readf (psf, "e13", &bitwidth, &samp_period) ;
  176. samp_period = SDS_3BYTE_TO_INT_DECODE (samp_period) ;
  177. psds->bitwidth = bitwidth ;
  178. if (psds->bitwidth > 1)
  179. psf_log_printf (psf, " Bit Width     : %dn", psds->bitwidth) ;
  180. else
  181. { psf_log_printf (psf, " Bit Width     : %d (should be > 1)n", psds->bitwidth) ;
  182. return SFE_SDS_BAD_BIT_WIDTH ;
  183. } ;
  184. if (samp_period > 0)
  185. { psf->sf.samplerate = 1000000000 / samp_period ;
  186. psf_log_printf (psf, " Sample Period : %dn"
  187. " Sample Rate   : %dn",
  188. samp_period, psf->sf.samplerate) ;
  189. }
  190. else
  191. { psf->sf.samplerate = 16000 ;
  192. psf_log_printf (psf, " Sample Period : %d (should be > 0)n"
  193. " Sample Rate   : %d (guessed)n",
  194. samp_period, psf->sf.samplerate) ;
  195. } ;
  196. bytesread += psf_binheader_readf (psf, "e3331", &data_length, &sustain_loop_start, &sustain_loop_end, &loop_type) ;
  197. data_length = SDS_3BYTE_TO_INT_DECODE (data_length) ;
  198. sustain_loop_start = SDS_3BYTE_TO_INT_DECODE (sustain_loop_start) ;
  199. sustain_loop_end = SDS_3BYTE_TO_INT_DECODE (sustain_loop_end) ;
  200. psf_log_printf (psf,  " Sustain Loopn"
  201. "     Start     : %dn"
  202. "     End       : %dn"
  203. "     Loop Type : %dn",
  204. sustain_loop_start, sustain_loop_end, loop_type) ;
  205. psf->dataoffset = SDS_DATA_OFFSET ;
  206. psf->datalength = psf->filelength - psf->dataoffset ;
  207. if (data_length != psf->filelength - psf->dataoffset)
  208. { psf_log_printf (psf, " Datalength     : %d (truncated data??? %d)n", data_length, psf->filelength - psf->dataoffset) ;
  209. data_length = psf->filelength - psf->dataoffset ;
  210. }
  211. else
  212. psf_log_printf (psf, " Datalength     : %dn", data_length) ;
  213. bytesread += psf_binheader_readf (psf, "1", &byte) ;
  214. if (byte != 0xF7)
  215. psf_log_printf (psf, "bad end : %Xn", byte & 0xFF) ;
  216. for (blockcount = 0 ; bytesread < psf->filelength ; blockcount++)
  217. {
  218. bytesread += psf_fread (&marker, 1, 2, psf) ;
  219. if (marker == 0)
  220. break ;
  221. psf_fseek (psf, SDS_BLOCK_SIZE - 2, SEEK_CUR) ;
  222. bytesread += SDS_BLOCK_SIZE - 2 ;
  223. } ;
  224. psf_log_printf (psf, "nBlocks         : %dn", blockcount) ;
  225. psds->total_blocks = blockcount ;
  226. psds->samplesperblock = SDS_AUDIO_BYTES_PER_BLOCK / ((psds->bitwidth + 6) / 7) ;
  227. psf_log_printf (psf, "Samples/Block  : %dn", psds->samplesperblock) ;
  228. psf_log_printf (psf, "Frames         : %dn", blockcount * psds->samplesperblock) ;
  229. psf->sf.frames = blockcount * psds->samplesperblock ;
  230. psds->frames = blockcount * psds->samplesperblock ;
  231. /* Always Mono */
  232. psf->sf.channels = 1 ;
  233. psf->sf.sections = 1 ;
  234. /*
  235. ** Lie to the user about PCM bit width. Always round up to
  236. ** the next multiple of 8.
  237. */
  238. switch ((psds->bitwidth + 7) / 8)
  239. { case 1 :
  240. psf->sf.format = SF_FORMAT_SDS | SF_FORMAT_PCM_S8 ;
  241. break ;
  242. case 2 :
  243. psf->sf.format = SF_FORMAT_SDS | SF_FORMAT_PCM_16 ;
  244. break ;
  245. case 3 :
  246. psf->sf.format = SF_FORMAT_SDS | SF_FORMAT_PCM_24 ;
  247. break ;
  248. case 4 :
  249. psf->sf.format = SF_FORMAT_SDS | SF_FORMAT_PCM_32 ;
  250. break ;
  251. default :
  252. psf_log_printf (psf, "*** Weird byte width (%d)n", (psds->bitwidth + 7) / 8) ;
  253. return SFE_SDS_BAD_BIT_WIDTH ;
  254. } ;
  255. psf_fseek (psf, SDS_DATA_OFFSET, SEEK_SET) ;
  256. return 0 ;
  257. } /* sds_read_header */
  258. static int
  259. sds_write_header (SF_PRIVATE *psf, int calc_length)
  260. { SDS_PRIVATE *psds ;
  261. sf_count_t current ;
  262. int samp_period, data_length, sustain_loop_start, sustain_loop_end ;
  263. unsigned char loop_type = 0 ;
  264. if ((psds = (SDS_PRIVATE *) psf->codec_data) == NULL)
  265. { psf_log_printf (psf, "*** Bad psf->codec_data ptr.n") ;
  266. return SFE_INTERNAL ;
  267. } ;
  268. if (psf->pipeoffset > 0)
  269. return 0 ;
  270. current = psf_ftell (psf) ;
  271. if (calc_length)
  272. psf->sf.frames = psds->total_blocks * psds->samplesperblock + psds->write_count ;
  273. if (psds->write_count > 0)
  274. { int current_count = psds->write_count ;
  275. int current_block = psds->write_block ;
  276. psds->writer (psf, psds) ;
  277. psf_fseek (psf, -1 * SDS_BLOCK_SIZE, SEEK_CUR) ;
  278. psds->write_count = current_count ;
  279. psds->write_block = current_block ;
  280. } ;
  281. /* Reset the current header length to zero. */
  282. psf->header [0] = 0 ;
  283. psf->headindex = 0 ;
  284. if (psf->is_pipe == SF_FALSE)
  285. psf_fseek (psf, 0, SEEK_SET) ;
  286. psf_binheader_writef (psf, "E211", 0xF07E, 0, 1) ;
  287. switch (SF_CODEC (psf->sf.format))
  288. { case SF_FORMAT_PCM_S8 :
  289. psds->bitwidth = 8 ;
  290. break ;
  291. case SF_FORMAT_PCM_16 :
  292. psds->bitwidth = 16 ;
  293. break ;
  294. case SF_FORMAT_PCM_24 :
  295. psds->bitwidth = 24 ;
  296. break ;
  297. default:
  298. return SFE_SDS_BAD_BIT_WIDTH ;
  299. } ;
  300. samp_period = SDS_INT_TO_3BYTE_ENCODE (1000000000 / psf->sf.samplerate) ;
  301. psf_binheader_writef (psf, "e213", 0, psds->bitwidth, samp_period) ;
  302. data_length = SDS_INT_TO_3BYTE_ENCODE (psds->total_blocks * SDS_BLOCK_SIZE) ;
  303. sustain_loop_start = SDS_INT_TO_3BYTE_ENCODE (0) ;
  304. sustain_loop_end = SDS_INT_TO_3BYTE_ENCODE (psf->sf.frames) ;
  305. psf_binheader_writef (psf, "e33311", data_length, sustain_loop_start, sustain_loop_end, loop_type, 0xF7) ;
  306. /* Header construction complete so write it out. */
  307. psf_fwrite (psf->header, psf->headindex, 1, psf) ;
  308. if (psf->error)
  309. return psf->error ;
  310. psf->dataoffset = psf->headindex ;
  311. psf->datalength = psds->write_block * SDS_BLOCK_SIZE ;
  312. if (current > 0)
  313. psf_fseek (psf, current, SEEK_SET) ;
  314. return psf->error ;
  315. } /* sds_write_header */
  316. /*------------------------------------------------------------------------------
  317. */
  318. static int
  319. sds_2byte_read (SF_PRIVATE *psf, SDS_PRIVATE *psds)
  320. { unsigned char *ucptr, checksum ;
  321. unsigned int sample ;
  322. int  k ;
  323. psds->read_block ++ ;
  324. psds->read_count = 0 ;
  325. if (psds->read_block * psds->samplesperblock > psds->frames)
  326. { memset (psds->read_samples, 0, psds->samplesperblock * sizeof (int)) ;
  327. return 1 ;
  328. } ;
  329. if ((k = psf_fread (psds->read_data, 1, SDS_BLOCK_SIZE, psf)) != SDS_BLOCK_SIZE)
  330. psf_log_printf (psf, "*** Warning : short read (%d != %d).n", k, SDS_BLOCK_SIZE) ;
  331. if (psds->read_data [0] != 0xF0)
  332. { printf ("Error A : %02Xn", psds->read_data [0] & 0xFF) ;
  333. } ;
  334. checksum = psds->read_data [1] ;
  335. if (checksum != 0x7E)
  336. { printf ("Error 1 : %02Xn", checksum & 0xFF) ;
  337. }
  338. for (k = 2 ; k < SDS_BLOCK_SIZE - 3 ; k ++)
  339. checksum ^= psds->read_data [k] ;
  340. checksum &= 0x7F ;
  341. if (checksum != psds->read_data [SDS_BLOCK_SIZE - 2])
  342. { psf_log_printf (psf, "Block %d : checksum is %02X should be %02Xn", psds->read_data [4], checksum, psds->read_data [SDS_BLOCK_SIZE - 2]) ;
  343. } ;
  344. ucptr = psds->read_data + 5 ;
  345. for (k = 0 ; k < 120 ; k += 2)
  346. { sample = (ucptr [k] << 25) + (ucptr [k + 1] << 18) ;
  347. psds->read_samples [k / 2] = (int) (sample - 0x80000000) ;
  348. } ;
  349. return 1 ;
  350. } /* sds_2byte_read */
  351. static int
  352. sds_3byte_read (SF_PRIVATE *psf, SDS_PRIVATE *psds)
  353. { unsigned char *ucptr, checksum ;
  354. unsigned int sample ;
  355. int  k ;
  356. psds->read_block ++ ;
  357. psds->read_count = 0 ;
  358. if (psds->read_block * psds->samplesperblock > psds->frames)
  359. { memset (psds->read_samples, 0, psds->samplesperblock * sizeof (int)) ;
  360. return 1 ;
  361. } ;
  362. if ((k = psf_fread (psds->read_data, 1, SDS_BLOCK_SIZE, psf)) != SDS_BLOCK_SIZE)
  363. psf_log_printf (psf, "*** Warning : short read (%d != %d).n", k, SDS_BLOCK_SIZE) ;
  364. if (psds->read_data [0] != 0xF0)
  365. { printf ("Error A : %02Xn", psds->read_data [0] & 0xFF) ;
  366. } ;
  367. checksum = psds->read_data [1] ;
  368. if (checksum != 0x7E)
  369. { printf ("Error 1 : %02Xn", checksum & 0xFF) ;
  370. }
  371. for (k = 2 ; k < SDS_BLOCK_SIZE - 3 ; k ++)
  372. checksum ^= psds->read_data [k] ;
  373. checksum &= 0x7F ;
  374. if (checksum != psds->read_data [SDS_BLOCK_SIZE - 2])
  375. { psf_log_printf (psf, "Block %d : checksum is %02X should be %02Xn", psds->read_data [4], checksum, psds->read_data [SDS_BLOCK_SIZE - 2]) ;
  376. } ;
  377. ucptr = psds->read_data + 5 ;
  378. for (k = 0 ; k < 120 ; k += 3)
  379. { sample = (ucptr [k] << 25) + (ucptr [k + 1] << 18) + (ucptr [k + 2] << 11) ;
  380. psds->read_samples [k / 3] = (int) (sample - 0x80000000) ;
  381. } ;
  382. return 1 ;
  383. } /* sds_3byte_read */
  384. static int
  385. sds_4byte_read (SF_PRIVATE *psf, SDS_PRIVATE *psds)
  386. { unsigned char *ucptr, checksum ;
  387. unsigned int sample ;
  388. int  k ;
  389. psds->read_block ++ ;
  390. psds->read_count = 0 ;
  391. if (psds->read_block * psds->samplesperblock > psds->frames)
  392. { memset (psds->read_samples, 0, psds->samplesperblock * sizeof (int)) ;
  393. return 1 ;
  394. } ;
  395. if ((k = psf_fread (psds->read_data, 1, SDS_BLOCK_SIZE, psf)) != SDS_BLOCK_SIZE)
  396. psf_log_printf (psf, "*** Warning : short read (%d != %d).n", k, SDS_BLOCK_SIZE) ;
  397. if (psds->read_data [0] != 0xF0)
  398. { printf ("Error A : %02Xn", psds->read_data [0] & 0xFF) ;
  399. } ;
  400. checksum = psds->read_data [1] ;
  401. if (checksum != 0x7E)
  402. { printf ("Error 1 : %02Xn", checksum & 0xFF) ;
  403. }
  404. for (k = 2 ; k < SDS_BLOCK_SIZE - 3 ; k ++)
  405. checksum ^= psds->read_data [k] ;
  406. checksum &= 0x7F ;
  407. if (checksum != psds->read_data [SDS_BLOCK_SIZE - 2])
  408. { psf_log_printf (psf, "Block %d : checksum is %02X should be %02Xn", psds->read_data [4], checksum, psds->read_data [SDS_BLOCK_SIZE - 2]) ;
  409. } ;
  410. ucptr = psds->read_data + 5 ;
  411. for (k = 0 ; k < 120 ; k += 4)
  412. { sample = (ucptr [k] << 25) + (ucptr [k + 1] << 18) + (ucptr [k + 2] << 11) + (ucptr [k + 3] << 4) ;
  413. psds->read_samples [k / 4] = (int) (sample - 0x80000000) ;
  414. } ;
  415. return 1 ;
  416. } /* sds_4byte_read */
  417. static sf_count_t
  418. sds_read_s (SF_PRIVATE *psf, short *ptr, sf_count_t len)
  419. { SDS_PRIVATE *psds ;
  420. int *iptr ;
  421. int k, bufferlen, readcount, count ;
  422. sf_count_t total = 0 ;
  423. if (psf->codec_data == NULL)
  424. return 0 ;
  425. psds = (SDS_PRIVATE*) psf->codec_data ;
  426. iptr = psf->u.ibuf ;
  427. bufferlen = ARRAY_LEN (psf->u.ibuf) ;
  428. while (len > 0)
  429. { readcount = (len >= bufferlen) ? bufferlen : len ;
  430. count = sds_read (psf, psds, iptr, readcount) ;
  431. for (k = 0 ; k < readcount ; k++)
  432. ptr [total + k] = iptr [k] >> 16 ;
  433. total += count ;
  434. len -= readcount ;
  435. } ;
  436. return total ;
  437. } /* sds_read_s */
  438. static sf_count_t
  439. sds_read_i (SF_PRIVATE *psf, int *ptr, sf_count_t len)
  440. { SDS_PRIVATE *psds ;
  441. int total ;
  442. if (psf->codec_data == NULL)
  443. return 0 ;
  444. psds = (SDS_PRIVATE*) psf->codec_data ;
  445. total = sds_read (psf, psds, ptr, len) ;
  446. return total ;
  447. } /* sds_read_i */
  448. static sf_count_t
  449. sds_read_f (SF_PRIVATE *psf, float *ptr, sf_count_t len)
  450. { SDS_PRIVATE *psds ;
  451. int *iptr ;
  452. int k, bufferlen, readcount, count ;
  453. sf_count_t total = 0 ;
  454. float normfact ;
  455. if (psf->codec_data == NULL)
  456. return 0 ;
  457. psds = (SDS_PRIVATE*) psf->codec_data ;
  458. if (psf->norm_float == SF_TRUE)
  459. normfact = 1.0 / 0x80000000 ;
  460. else
  461. normfact = 1.0 / (1 << psds->bitwidth) ;
  462. iptr = psf->u.ibuf ;
  463. bufferlen = ARRAY_LEN (psf->u.ibuf) ;
  464. while (len > 0)
  465. { readcount = (len >= bufferlen) ? bufferlen : len ;
  466. count = sds_read (psf, psds, iptr, readcount) ;
  467. for (k = 0 ; k < readcount ; k++)
  468. ptr [total + k] = normfact * iptr [k] ;
  469. total += count ;
  470. len -= readcount ;
  471. } ;
  472. return total ;
  473. } /* sds_read_f */
  474. static sf_count_t
  475. sds_read_d (SF_PRIVATE *psf, double *ptr, sf_count_t len)
  476. { SDS_PRIVATE *psds ;
  477. int *iptr ;
  478. int k, bufferlen, readcount, count ;
  479. sf_count_t total = 0 ;
  480. double normfact ;
  481. if (psf->codec_data == NULL)
  482. return 0 ;
  483. psds = (SDS_PRIVATE*) psf->codec_data ;
  484. if (psf->norm_double == SF_TRUE)
  485. normfact = 1.0 / 0x80000000 ;
  486. else
  487. normfact = 1.0 / (1 << psds->bitwidth) ;
  488. iptr = psf->u.ibuf ;
  489. bufferlen = ARRAY_LEN (psf->u.ibuf) ;
  490. while (len > 0)
  491. { readcount = (len >= bufferlen) ? bufferlen : len ;
  492. count = sds_read (psf, psds, iptr, readcount) ;
  493. for (k = 0 ; k < readcount ; k++)
  494. ptr [total + k] = normfact * iptr [k] ;
  495. total += count ;
  496. len -= readcount ;
  497. } ;
  498. return total ;
  499. } /* sds_read_d */
  500. static int
  501. sds_read (SF_PRIVATE *psf, SDS_PRIVATE *psds, int *ptr, int len)
  502. { int count, total = 0 ;
  503. while (total < len)
  504. { if (psds->read_block * psds->samplesperblock >= psds->frames)
  505. { memset (&(ptr [total]), 0, (len - total) * sizeof (int)) ;
  506. return total ;
  507. } ;
  508. if (psds->read_count >= psds->samplesperblock)
  509. psds->reader (psf, psds) ;
  510. count = (psds->samplesperblock - psds->read_count) ;
  511. count = (len - total > count) ? count : len - total ;
  512. memcpy (&(ptr [total]), &(psds->read_samples [psds->read_count]), count * sizeof (int)) ;
  513. total += count ;
  514. psds->read_count += count ;
  515. } ;
  516. return total ;
  517. } /* sds_read */
  518. /*==============================================================================
  519. */
  520. static sf_count_t
  521. sds_seek (SF_PRIVATE *psf, int mode, sf_count_t seek_from_start)
  522. { SDS_PRIVATE *psds ;
  523. sf_count_t file_offset ;
  524. int newblock, newsample ;
  525. if ((psds = psf->codec_data) == NULL)
  526. { psf->error = SFE_INTERNAL ;
  527. return PSF_SEEK_ERROR ;
  528. } ;
  529. if (psf->datalength < 0 || psf->dataoffset < 0)
  530. { psf->error = SFE_BAD_SEEK ;
  531. return PSF_SEEK_ERROR ;
  532. } ;
  533. if (seek_from_start < 0 || seek_from_start > psf->sf.frames)
  534. { psf->error = SFE_BAD_SEEK ;
  535. return PSF_SEEK_ERROR ;
  536. } ;
  537. if (mode == SFM_READ && psds->write_count > 0)
  538. psds->writer (psf, psds) ;
  539. newblock = seek_from_start / psds->samplesperblock ;
  540. newsample = seek_from_start % psds->samplesperblock ;
  541. switch (mode)
  542. { case SFM_READ :
  543. if (newblock > psds->total_blocks)
  544. { psf->error = SFE_BAD_SEEK ;
  545. return PSF_SEEK_ERROR ;
  546. } ;
  547. file_offset = psf->dataoffset + newblock * SDS_BLOCK_SIZE ;
  548. if (psf_fseek (psf, file_offset, SEEK_SET) != file_offset)
  549. { psf->error = SFE_SEEK_FAILED ;
  550. return PSF_SEEK_ERROR ;
  551. } ;
  552. psds->read_block = newblock ;
  553. psds->reader (psf, psds) ;
  554. psds->read_count = newsample ;
  555. break ;
  556. case SFM_WRITE :
  557. if (newblock > psds->total_blocks)
  558. { psf->error = SFE_BAD_SEEK ;
  559. return PSF_SEEK_ERROR ;
  560. } ;
  561. file_offset = psf->dataoffset + newblock * SDS_BLOCK_SIZE ;
  562. if (psf_fseek (psf, file_offset, SEEK_SET) != file_offset)
  563. { psf->error = SFE_SEEK_FAILED ;
  564. return PSF_SEEK_ERROR ;
  565. } ;
  566. psds->write_block = newblock ;
  567. psds->reader (psf, psds) ;
  568. psds->write_count = newsample ;
  569. break ;
  570. default :
  571. psf->error = SFE_BAD_SEEK ;
  572. return PSF_SEEK_ERROR ;
  573. break ;
  574. } ;
  575. return seek_from_start ;
  576. } /* sds_seek */
  577. /*==============================================================================
  578. */
  579. static int
  580. sds_2byte_write (SF_PRIVATE *psf, SDS_PRIVATE *psds)
  581. { unsigned char *ucptr, checksum ;
  582. unsigned int sample ;
  583. int  k ;
  584. psds->write_data [0] = 0xF0 ;
  585. psds->write_data [1] = 0x7E ;
  586. psds->write_data [2] = 0 ; /* Channel number */
  587. psds->write_data [3] = psds->write_block & 0x7F ; /* Packet number */
  588. ucptr = psds->write_data + 5 ;
  589. for (k = 0 ; k < 120 ; k += 2)
  590. { sample = psds->write_samples [k / 2] ;
  591. sample += 0x80000000 ;
  592. ucptr [k] = (sample >> 25) & 0x7F ;
  593. ucptr [k + 1] = (sample >> 18) & 0x7F ;
  594. } ;
  595. checksum = psds->write_data [1] ;
  596. for (k = 2 ; k < SDS_BLOCK_SIZE - 3 ; k ++)
  597. checksum ^= psds->write_data [k] ;
  598. checksum &= 0x7F ;
  599. psds->write_data [SDS_BLOCK_SIZE - 2] = checksum ;
  600. psds->write_data [SDS_BLOCK_SIZE - 1] = 0xF7 ;
  601. if ((k = psf_fwrite (psds->write_data, 1, SDS_BLOCK_SIZE, psf)) != SDS_BLOCK_SIZE)
  602. psf_log_printf (psf, "*** Warning : psf_fwrite (%d != %d).n", k, SDS_BLOCK_SIZE) ;
  603. psds->write_block ++ ;
  604. psds->write_count = 0 ;
  605. if (psds->write_block > psds->total_blocks)
  606. psds->total_blocks = psds->write_block ;
  607. psds->frames = psds->total_blocks * psds->samplesperblock ;
  608. return 1 ;
  609. } /* sds_2byte_write */
  610. static int
  611. sds_3byte_write (SF_PRIVATE *psf, SDS_PRIVATE *psds)
  612. { unsigned char *ucptr, checksum ;
  613. unsigned int sample ;
  614. int  k ;
  615. psds->write_data [0] = 0xF0 ;
  616. psds->write_data [1] = 0x7E ;
  617. psds->write_data [2] = 0 ; /* Channel number */
  618. psds->write_data [3] = psds->write_block & 0x7F ; /* Packet number */
  619. ucptr = psds->write_data + 5 ;
  620. for (k = 0 ; k < 120 ; k += 3)
  621. { sample = psds->write_samples [k / 3] ;
  622. sample += 0x80000000 ;
  623. ucptr [k] = (sample >> 25) & 0x7F ;
  624. ucptr [k + 1] = (sample >> 18) & 0x7F ;
  625. ucptr [k + 2] = (sample >> 11) & 0x7F ;
  626. } ;
  627. checksum = psds->write_data [1] ;
  628. for (k = 2 ; k < SDS_BLOCK_SIZE - 3 ; k ++)
  629. checksum ^= psds->write_data [k] ;
  630. checksum &= 0x7F ;
  631. psds->write_data [SDS_BLOCK_SIZE - 2] = checksum ;
  632. psds->write_data [SDS_BLOCK_SIZE - 1] = 0xF7 ;
  633. if ((k = psf_fwrite (psds->write_data, 1, SDS_BLOCK_SIZE, psf)) != SDS_BLOCK_SIZE)
  634. psf_log_printf (psf, "*** Warning : psf_fwrite (%d != %d).n", k, SDS_BLOCK_SIZE) ;
  635. psds->write_block ++ ;
  636. psds->write_count = 0 ;
  637. if (psds->write_block > psds->total_blocks)
  638. psds->total_blocks = psds->write_block ;
  639. psds->frames = psds->total_blocks * psds->samplesperblock ;
  640. return 1 ;
  641. } /* sds_3byte_write */
  642. static int
  643. sds_4byte_write (SF_PRIVATE *psf, SDS_PRIVATE *psds)
  644. { unsigned char *ucptr, checksum ;
  645. unsigned int sample ;
  646. int  k ;
  647. psds->write_data [0] = 0xF0 ;
  648. psds->write_data [1] = 0x7E ;
  649. psds->write_data [2] = 0 ; /* Channel number */
  650. psds->write_data [3] = psds->write_block & 0x7F ; /* Packet number */
  651. ucptr = psds->write_data + 5 ;
  652. for (k = 0 ; k < 120 ; k += 4)
  653. { sample = psds->write_samples [k / 4] ;
  654. sample += 0x80000000 ;
  655. ucptr [k] = (sample >> 25) & 0x7F ;
  656. ucptr [k + 1] = (sample >> 18) & 0x7F ;
  657. ucptr [k + 2] = (sample >> 11) & 0x7F ;
  658. ucptr [k + 3] = (sample >> 4) & 0x7F ;
  659. } ;
  660. checksum = psds->write_data [1] ;
  661. for (k = 2 ; k < SDS_BLOCK_SIZE - 3 ; k ++)
  662. checksum ^= psds->write_data [k] ;
  663. checksum &= 0x7F ;
  664. psds->write_data [SDS_BLOCK_SIZE - 2] = checksum ;
  665. psds->write_data [SDS_BLOCK_SIZE - 1] = 0xF7 ;
  666. if ((k = psf_fwrite (psds->write_data, 1, SDS_BLOCK_SIZE, psf)) != SDS_BLOCK_SIZE)
  667. psf_log_printf (psf, "*** Warning : psf_fwrite (%d != %d).n", k, SDS_BLOCK_SIZE) ;
  668. psds->write_block ++ ;
  669. psds->write_count = 0 ;
  670. if (psds->write_block > psds->total_blocks)
  671. psds->total_blocks = psds->write_block ;
  672. psds->frames = psds->total_blocks * psds->samplesperblock ;
  673. return 1 ;
  674. } /* sds_4byte_write */
  675. static sf_count_t
  676. sds_write_s (SF_PRIVATE *psf, const short *ptr, sf_count_t len)
  677. { SDS_PRIVATE *psds ;
  678. int *iptr ;
  679. int k, bufferlen, writecount, count ;
  680. sf_count_t total = 0 ;
  681. if (psf->codec_data == NULL)
  682. return 0 ;
  683. psds = (SDS_PRIVATE*) psf->codec_data ;
  684. iptr = psf->u.ibuf ;
  685. bufferlen = ARRAY_LEN (psf->u.ibuf) ;
  686. while (len > 0)
  687. { writecount = (len >= bufferlen) ? bufferlen : len ;
  688. for (k = 0 ; k < writecount ; k++)
  689. iptr [k] = ptr [total + k] << 16 ;
  690. count = sds_write (psf, psds, iptr, writecount) ;
  691. total += count ;
  692. len -= writecount ;
  693. } ;
  694. return total ;
  695. } /* sds_write_s */
  696. static sf_count_t
  697. sds_write_i (SF_PRIVATE *psf, const int *ptr, sf_count_t len)
  698. { SDS_PRIVATE *psds ;
  699. int total ;
  700. if (psf->codec_data == NULL)
  701. return 0 ;
  702. psds = (SDS_PRIVATE*) psf->codec_data ;
  703. total = sds_write (psf, psds, ptr, len) ;
  704. return total ;
  705. } /* sds_write_i */
  706. static sf_count_t
  707. sds_write_f (SF_PRIVATE *psf, const float *ptr, sf_count_t len)
  708. { SDS_PRIVATE *psds ;
  709. int *iptr ;
  710. int k, bufferlen, writecount, count ;
  711. sf_count_t total = 0 ;
  712. float normfact ;
  713. if (psf->codec_data == NULL)
  714. return 0 ;
  715. psds = (SDS_PRIVATE*) psf->codec_data ;
  716. if (psf->norm_float == SF_TRUE)
  717. normfact = 1.0 * 0x80000000 ;
  718. else
  719. normfact = 1.0 * (1 << psds->bitwidth) ;
  720. iptr = psf->u.ibuf ;
  721. bufferlen = ARRAY_LEN (psf->u.ibuf) ;
  722. while (len > 0)
  723. { writecount = (len >= bufferlen) ? bufferlen : len ;
  724. for (k = 0 ; k < writecount ; k++)
  725. iptr [k] = normfact * ptr [total + k] ;
  726. count = sds_write (psf, psds, iptr, writecount) ;
  727. total += count ;
  728. len -= writecount ;
  729. } ;
  730. return total ;
  731. } /* sds_write_f */
  732. static sf_count_t
  733. sds_write_d (SF_PRIVATE *psf, const double *ptr, sf_count_t len)
  734. { SDS_PRIVATE *psds ;
  735. int *iptr ;
  736. int k, bufferlen, writecount, count ;
  737. sf_count_t total = 0 ;
  738. double normfact ;
  739. if (psf->codec_data == NULL)
  740. return 0 ;
  741. psds = (SDS_PRIVATE*) psf->codec_data ;
  742. if (psf->norm_double == SF_TRUE)
  743. normfact = 1.0 * 0x80000000 ;
  744. else
  745. normfact = 1.0 * (1 << psds->bitwidth) ;
  746. iptr = psf->u.ibuf ;
  747. bufferlen = ARRAY_LEN (psf->u.ibuf) ;
  748. while (len > 0)
  749. { writecount = (len >= bufferlen) ? bufferlen : len ;
  750. for (k = 0 ; k < writecount ; k++)
  751. iptr [k] = normfact * ptr [total + k] ;
  752. count = sds_write (psf, psds, iptr, writecount) ;
  753. total += count ;
  754. len -= writecount ;
  755. } ;
  756. return total ;
  757. } /* sds_write_d */
  758. static int
  759. sds_write (SF_PRIVATE *psf, SDS_PRIVATE *psds, const int *ptr, int len)
  760. { int count, total = 0 ;
  761. while (total < len)
  762. { count = psds->samplesperblock - psds->write_count ;
  763. if (count > len - total)
  764. count = len - total ;
  765. memcpy (&(psds->write_samples [psds->write_count]), &(ptr [total]), count * sizeof (int)) ;
  766. total += count ;
  767. psds->write_count += count ;
  768. if (psds->write_count >= psds->samplesperblock)
  769. psds->writer (psf, psds) ;
  770. } ;
  771. return total ;
  772. } /* sds_write */