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

Audio

开发平台:

Unix_Linux

  1. /*
  2. ** Copyright (C) 2003-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 <stdlib.h>
  20. #include "sndfile.h"
  21. #include "sfendian.h"
  22. #include "common.h"
  23. /*============================================================================
  24. ** Rule number 1 is to only apply dither when going from a larger bitwidth
  25. ** to a smaller bitwidth. This can happen on both read and write.
  26. **
  27. ** Need to apply dither on all conversions marked X below.
  28. **
  29. ** Dither on write:
  30. **
  31. ** Input
  32. ** | short int float double
  33. ** --------+-----------------------------------------------
  34. ** O 8 bit | X X X X
  35. ** u 16 bit | none X X X
  36. ** t 24 bit | none X X X
  37. ** p 32 bit | none none X X
  38. ** u float | none none none none
  39. ** t double | none none none none
  40. **
  41. ** Dither on read:
  42. **
  43. ** Input
  44. ** O | 8 bit 16 bit 24 bit 32 bit float double
  45. ** u --------+-------------------------------------------------
  46. ** t short | none none X X X X
  47. ** p int | none none none X X X
  48. ** u float | none none none none none none
  49. ** t double | none none none none none none
  50. */
  51. #define SFE_DITHER_BAD_PTR 666
  52. #define SFE_DITHER_BAD_TYPE 667
  53. typedef struct
  54. { int read_short_dither_bits, read_int_dither_bits ;
  55. int write_short_dither_bits, write_int_dither_bits ;
  56. double read_float_dither_scale, read_double_dither_bits ;
  57. double write_float_dither_scale, write_double_dither_bits ;
  58. sf_count_t (*read_short) (SF_PRIVATE *psf, short *ptr, sf_count_t len) ;
  59. sf_count_t (*read_int) (SF_PRIVATE *psf, int *ptr, sf_count_t len) ;
  60. sf_count_t (*read_float) (SF_PRIVATE *psf, float *ptr, sf_count_t len) ;
  61. sf_count_t (*read_double) (SF_PRIVATE *psf, double *ptr, sf_count_t len) ;
  62. sf_count_t (*write_short) (SF_PRIVATE *psf, const short *ptr, sf_count_t len) ;
  63. sf_count_t (*write_int) (SF_PRIVATE *psf, const int *ptr, sf_count_t len) ;
  64. sf_count_t (*write_float) (SF_PRIVATE *psf, const float *ptr, sf_count_t len) ;
  65. sf_count_t (*write_double) (SF_PRIVATE *psf, const double *ptr, sf_count_t len) ;
  66. double buffer [SF_BUFFER_LEN / sizeof (double)] ;
  67. } DITHER_DATA ;
  68. static sf_count_t dither_read_short (SF_PRIVATE *psf, short *ptr, sf_count_t len) ;
  69. static sf_count_t dither_read_int (SF_PRIVATE *psf, int *ptr, sf_count_t len) ;
  70. static sf_count_t dither_write_short (SF_PRIVATE *psf, const short *ptr, sf_count_t len) ;
  71. static sf_count_t dither_write_int (SF_PRIVATE *psf, const int *ptr, sf_count_t len) ;
  72. static sf_count_t dither_write_float (SF_PRIVATE *psf, const float *ptr, sf_count_t len) ;
  73. static sf_count_t dither_write_double (SF_PRIVATE *psf, const double *ptr, sf_count_t len) ;
  74. int
  75. dither_init (SF_PRIVATE *psf, int mode)
  76. { DITHER_DATA *pdither ;
  77. pdither = psf->dither ; /* This may be NULL. */
  78. /* Turn off dither on read. */
  79. if (mode == SFM_READ && psf->read_dither.type == SFD_NO_DITHER)
  80. { if (pdither == NULL)
  81. return 0 ; /* Dither is already off, so just return. */
  82. if (pdither->read_short)
  83. psf->read_short = pdither->read_short ;
  84. if (pdither->read_int)
  85. psf->read_int = pdither->read_int ;
  86. if (pdither->read_float)
  87. psf->read_float = pdither->read_float ;
  88. if (pdither->read_double)
  89. psf->read_double = pdither->read_double ;
  90. return 0 ;
  91. } ;
  92. /* Turn off dither on write. */
  93. if (mode == SFM_WRITE && psf->write_dither.type == SFD_NO_DITHER)
  94. { if (pdither == NULL)
  95. return 0 ; /* Dither is already off, so just return. */
  96. if (pdither->write_short)
  97. psf->write_short = pdither->write_short ;
  98. if (pdither->write_int)
  99. psf->write_int = pdither->write_int ;
  100. if (pdither->write_float)
  101. psf->write_float = pdither->write_float ;
  102. if (pdither->write_double)
  103. psf->write_double = pdither->write_double ;
  104. return 0 ;
  105. } ;
  106. /* Turn on dither on read if asked. */
  107. if (mode == SFM_READ && psf->read_dither.type != 0)
  108. { if (pdither == NULL)
  109. pdither = psf->dither = calloc (1, sizeof (DITHER_DATA)) ;
  110. if (pdither == NULL)
  111. return SFE_MALLOC_FAILED ;
  112. switch (SF_CODEC (psf->sf.format))
  113. { case SF_FORMAT_DOUBLE :
  114. case SF_FORMAT_FLOAT :
  115. pdither->read_int = psf->read_int ;
  116. psf->read_int = dither_read_int ;
  117. break ;
  118. case SF_FORMAT_PCM_32 :
  119. case SF_FORMAT_PCM_24 :
  120. case SF_FORMAT_PCM_16 :
  121. case SF_FORMAT_PCM_S8 :
  122. case SF_FORMAT_PCM_U8 :
  123. pdither->read_short = psf->read_short ;
  124. psf->read_short = dither_read_short ;
  125. break ;
  126. default : break ;
  127. } ;
  128. } ;
  129. /* Turn on dither on write if asked. */
  130. if (mode == SFM_WRITE && psf->write_dither.type != 0)
  131. { if (pdither == NULL)
  132. pdither = psf->dither = calloc (1, sizeof (DITHER_DATA)) ;
  133. if (pdither == NULL)
  134. return SFE_MALLOC_FAILED ;
  135. switch (SF_CODEC (psf->sf.format))
  136. { case SF_FORMAT_DOUBLE :
  137. case SF_FORMAT_FLOAT :
  138. pdither->write_int = psf->write_int ;
  139. psf->write_int = dither_write_int ;
  140. break ;
  141. case SF_FORMAT_PCM_32 :
  142. case SF_FORMAT_PCM_24 :
  143. case SF_FORMAT_PCM_16 :
  144. case SF_FORMAT_PCM_S8 :
  145. case SF_FORMAT_PCM_U8 :
  146. break ;
  147. default : break ;
  148. } ;
  149. pdither->write_short = psf->write_short ;
  150. psf->write_short = dither_write_short ;
  151. pdither->write_int = psf->write_int ;
  152. psf->write_int = dither_write_int ;
  153. pdither->write_float = psf->write_float ;
  154. psf->write_float = dither_write_float ;
  155. pdither->write_double = psf->write_double ;
  156. psf->write_double = dither_write_double ;
  157. } ;
  158. return 0 ;
  159. } /* dither_init */
  160. /*==============================================================================
  161. */
  162. static void dither_short (const short *in, short *out, int frames, int channels) ;
  163. static void dither_int (const int *in, int *out, int frames, int channels) ;
  164. static void dither_float (const float *in, float *out, int frames, int channels) ;
  165. static void dither_double (const double *in, double *out, int frames, int channels) ;
  166. static sf_count_t
  167. dither_read_short (SF_PRIVATE * UNUSED (psf), short * UNUSED (ptr), sf_count_t len)
  168. {
  169. return len ;
  170. } /* dither_read_short */
  171. static sf_count_t
  172. dither_read_int (SF_PRIVATE * UNUSED (psf), int * UNUSED (ptr), sf_count_t len)
  173. {
  174. return len ;
  175. } /* dither_read_int */
  176. /*------------------------------------------------------------------------------
  177. */
  178. static sf_count_t
  179. dither_write_short (SF_PRIVATE *psf, const short *ptr, sf_count_t len)
  180. { DITHER_DATA *pdither ;
  181. int bufferlen, writecount, thiswrite ;
  182. sf_count_t total = 0 ;
  183. if ((pdither = psf->dither) == NULL)
  184. { psf->error = SFE_DITHER_BAD_PTR ;
  185. return 0 ;
  186. } ;
  187. switch (SF_CODEC (psf->sf.format))
  188. { case SF_FORMAT_PCM_S8 :
  189. case SF_FORMAT_PCM_U8 :
  190. case SF_FORMAT_DPCM_8 :
  191. break ;
  192. default :
  193. return pdither->write_short (psf, ptr, len) ;
  194. } ;
  195. bufferlen = sizeof (pdither->buffer) / sizeof (short) ;
  196. while (len > 0)
  197. { writecount = (len >= bufferlen) ? bufferlen : (int) len ;
  198. writecount /= psf->sf.channels ;
  199. writecount *= psf->sf.channels ;
  200. dither_short (ptr, (short*) pdither->buffer, writecount / psf->sf.channels, psf->sf.channels) ;
  201. thiswrite = pdither->write_short (psf, (short*) pdither->buffer, writecount) ;
  202. total += thiswrite ;
  203. len -= thiswrite ;
  204. if (thiswrite < writecount)
  205. break ;
  206. } ;
  207. return total ;
  208. } /* dither_write_short */
  209. static sf_count_t
  210. dither_write_int (SF_PRIVATE *psf, const int *ptr, sf_count_t len)
  211. { DITHER_DATA *pdither ;
  212. int bufferlen, writecount, thiswrite ;
  213. sf_count_t total = 0 ;
  214. if ((pdither = psf->dither) == NULL)
  215. { psf->error = SFE_DITHER_BAD_PTR ;
  216. return 0 ;
  217. } ;
  218. switch (SF_CODEC (psf->sf.format))
  219. { case SF_FORMAT_PCM_S8 :
  220. case SF_FORMAT_PCM_U8 :
  221. case SF_FORMAT_PCM_16 :
  222. case SF_FORMAT_PCM_24 :
  223. break ;
  224. case SF_FORMAT_DPCM_8 :
  225. case SF_FORMAT_DPCM_16 :
  226. break ;
  227. default :
  228. return pdither->write_int (psf, ptr, len) ;
  229. } ;
  230. bufferlen = sizeof (pdither->buffer) / sizeof (int) ;
  231. while (len > 0)
  232. { writecount = (len >= bufferlen) ? bufferlen : (int) len ;
  233. writecount /= psf->sf.channels ;
  234. writecount *= psf->sf.channels ;
  235. dither_int (ptr, (int*) pdither->buffer, writecount / psf->sf.channels, psf->sf.channels) ;
  236. thiswrite = pdither->write_int (psf, (int*) pdither->buffer, writecount) ;
  237. total += thiswrite ;
  238. len -= thiswrite ;
  239. if (thiswrite < writecount)
  240. break ;
  241. } ;
  242. return total ;
  243. } /* dither_write_int */
  244. static sf_count_t
  245. dither_write_float (SF_PRIVATE *psf, const float *ptr, sf_count_t len)
  246. { DITHER_DATA *pdither ;
  247. int bufferlen, writecount, thiswrite ;
  248. sf_count_t total = 0 ;
  249. if ((pdither = psf->dither) == NULL)
  250. { psf->error = SFE_DITHER_BAD_PTR ;
  251. return 0 ;
  252. } ;
  253. switch (SF_CODEC (psf->sf.format))
  254. { case SF_FORMAT_PCM_S8 :
  255. case SF_FORMAT_PCM_U8 :
  256. case SF_FORMAT_PCM_16 :
  257. case SF_FORMAT_PCM_24 :
  258. break ;
  259. case SF_FORMAT_DPCM_8 :
  260. case SF_FORMAT_DPCM_16 :
  261. break ;
  262. default :
  263. return pdither->write_float (psf, ptr, len) ;
  264. } ;
  265. bufferlen = sizeof (pdither->buffer) / sizeof (float) ;
  266. while (len > 0)
  267. { writecount = (len >= bufferlen) ? bufferlen : (float) len ;
  268. writecount /= psf->sf.channels ;
  269. writecount *= psf->sf.channels ;
  270. dither_float (ptr, (float*) pdither->buffer, writecount / psf->sf.channels, psf->sf.channels) ;
  271. thiswrite = pdither->write_float (psf, (float*) pdither->buffer, writecount) ;
  272. total += thiswrite ;
  273. len -= thiswrite ;
  274. if (thiswrite < writecount)
  275. break ;
  276. } ;
  277. return total ;
  278. } /* dither_write_float */
  279. static sf_count_t
  280. dither_write_double (SF_PRIVATE *psf, const double *ptr, sf_count_t len)
  281. { DITHER_DATA *pdither ;
  282. int bufferlen, writecount, thiswrite ;
  283. sf_count_t total = 0 ;
  284. if ((pdither = psf->dither) == NULL)
  285. { psf->error = SFE_DITHER_BAD_PTR ;
  286. return 0 ;
  287. } ;
  288. switch (SF_CODEC (psf->sf.format))
  289. { case SF_FORMAT_PCM_S8 :
  290. case SF_FORMAT_PCM_U8 :
  291. case SF_FORMAT_PCM_16 :
  292. case SF_FORMAT_PCM_24 :
  293. break ;
  294. case SF_FORMAT_DPCM_8 :
  295. case SF_FORMAT_DPCM_16 :
  296. break ;
  297. default :
  298. return pdither->write_double (psf, ptr, len) ;
  299. } ;
  300. bufferlen = sizeof (pdither->buffer) / sizeof (double) ;
  301. while (len > 0)
  302. { writecount = (len >= bufferlen) ? bufferlen : (double) len ;
  303. writecount /= psf->sf.channels ;
  304. writecount *= psf->sf.channels ;
  305. dither_double (ptr, (double*) pdither->buffer, writecount / psf->sf.channels, psf->sf.channels) ;
  306. thiswrite = pdither->write_double (psf, (double*) pdither->buffer, writecount) ;
  307. total += thiswrite ;
  308. len -= thiswrite ;
  309. if (thiswrite < writecount)
  310. break ;
  311. } ;
  312. return total ;
  313. } /* dither_write_double */
  314. /*==============================================================================
  315. */
  316. static void
  317. dither_short (const short *in, short *out, int frames, int channels)
  318. { int ch, k ;
  319. for (ch = 0 ; ch < channels ; ch++)
  320. for (k = ch ; k < channels * frames ; k += channels)
  321. out [k] = in [k] ;
  322. } /* dither_short */
  323. static void
  324. dither_int (const int *in, int *out, int frames, int channels)
  325. { int ch, k ;
  326. for (ch = 0 ; ch < channels ; ch++)
  327. for (k = ch ; k < channels * frames ; k += channels)
  328. out [k] = in [k] ;
  329. } /* dither_int */
  330. static void
  331. dither_float (const float *in, float *out, int frames, int channels)
  332. { int ch, k ;
  333. for (ch = 0 ; ch < channels ; ch++)
  334. for (k = ch ; k < channels * frames ; k += channels)
  335. out [k] = in [k] ;
  336. } /* dither_float */
  337. static void
  338. dither_double (const double *in, double *out, int frames, int channels)
  339. { int ch, k ;
  340. for (ch = 0 ; ch < channels ; ch++)
  341. for (k = ch ; k < channels * frames ; k += channels)
  342. out [k] = in [k] ;
  343. } /* dither_double */
  344. /*==============================================================================
  345. */
  346. #if 0
  347. /*
  348. ** Not made public because this (maybe) requires storage of state information.
  349. **
  350. ** Also maybe need separate state info for each channel!!!!
  351. */
  352. int
  353. DO_NOT_USE_sf_dither_short (const SF_DITHER_INFO *dither, const short *in, short *out, int frames, int channels)
  354. { int ch, k ;
  355. if (! dither)
  356. return SFE_DITHER_BAD_PTR ;
  357. switch (dither->type & SFD_TYPEMASK)
  358. { case SFD_WHITE :
  359. case SFD_TRIANGULAR_PDF :
  360. for (ch = 0 ; ch < channels ; ch++)
  361. for (k = ch ; k < channels * frames ; k += channels)
  362. out [k] = in [k] ;
  363. break ;
  364. default :
  365. return SFE_DITHER_BAD_TYPE ;
  366. } ;
  367. return 0 ;
  368. } /* DO_NOT_USE_sf_dither_short */
  369. int
  370. DO_NOT_USE_sf_dither_int (const SF_DITHER_INFO *dither, const int *in, int *out, int frames, int channels)
  371. { int ch, k ;
  372. if (! dither)
  373. return SFE_DITHER_BAD_PTR ;
  374. switch (dither->type & SFD_TYPEMASK)
  375. { case SFD_WHITE :
  376. case SFD_TRIANGULAR_PDF :
  377. for (ch = 0 ; ch < channels ; ch++)
  378. for (k = ch ; k < channels * frames ; k += channels)
  379. out [k] = in [k] ;
  380. break ;
  381. default :
  382. return SFE_DITHER_BAD_TYPE ;
  383. } ;
  384. return 0 ;
  385. } /* DO_NOT_USE_sf_dither_int */
  386. int
  387. DO_NOT_USE_sf_dither_float (const SF_DITHER_INFO *dither, const float *in, float *out, int frames, int channels)
  388. { int ch, k ;
  389. if (! dither)
  390. return SFE_DITHER_BAD_PTR ;
  391. switch (dither->type & SFD_TYPEMASK)
  392. { case SFD_WHITE :
  393. case SFD_TRIANGULAR_PDF :
  394. for (ch = 0 ; ch < channels ; ch++)
  395. for (k = ch ; k < channels * frames ; k += channels)
  396. out [k] = in [k] ;
  397. break ;
  398. default :
  399. return SFE_DITHER_BAD_TYPE ;
  400. } ;
  401. return 0 ;
  402. } /* DO_NOT_USE_sf_dither_float */
  403. int
  404. DO_NOT_USE_sf_dither_double (const SF_DITHER_INFO *dither, const double *in, double *out, int frames, int channels)
  405. { int ch, k ;
  406. if (! dither)
  407. return SFE_DITHER_BAD_PTR ;
  408. switch (dither->type & SFD_TYPEMASK)
  409. { case SFD_WHITE :
  410. case SFD_TRIANGULAR_PDF :
  411. for (ch = 0 ; ch < channels ; ch++)
  412. for (k = ch ; k < channels * frames ; k += channels)
  413. out [k] = in [k] ;
  414. break ;
  415. default :
  416. return SFE_DITHER_BAD_TYPE ;
  417. } ;
  418. return 0 ;
  419. } /* DO_NOT_USE_sf_dither_double */
  420. #endif