replaygain_synthesis.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:19k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* replaygain_synthesis - Routines for applying ReplayGain to a signal
  2.  * Copyright (C) 2002,2003,2004,2005  Josh Coalson
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (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 General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU 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. /*
  19.  * This is an aggregation of pieces of code from John Edwards' WaveGain
  20.  * program.  Mostly cosmetic changes were made; otherwise, the dithering
  21.  * code is almost untouched and the gain processing was converted from
  22.  * processing a whole file to processing chunks of samples.
  23.  *
  24.  * The original copyright notices for WaveGain's dither.c and wavegain.c
  25.  * appear below:
  26.  */
  27. /*
  28.  * (c) 2002 John Edwards
  29.  * mostly lifted from work by Frank Klemm
  30.  * random functions for dithering.
  31.  */
  32. /*
  33.  * Copyright (C) 2002 John Edwards
  34.  * Additional code by Magnus Holmgren and Gian-Carlo Pascutto
  35.  */
  36. #include <string.h> /* for memset() */
  37. #include <math.h>
  38. #include "private/fast_float_math_hack.h"
  39. #include "replaygain_synthesis.h"
  40. #include "FLAC/assert.h"
  41. #if defined _MSC_VER
  42. #define FLAC__INLINE __inline
  43. #else
  44. #define FLAC__INLINE
  45. #endif
  46. /* adjust for compilers that can't understand using LL suffix for int64_t literals */
  47. #ifdef _MSC_VER
  48. #define FLAC__I64L(x) x
  49. #else
  50. #define FLAC__I64L(x) x##LL
  51. #endif
  52. /*
  53.  * the following is based on parts of dither.c
  54.  */
  55. /*
  56.  *  This is a simple random number generator with good quality for audio purposes.
  57.  *  It consists of two polycounters with opposite rotation direction and different
  58.  *  periods. The periods are coprime, so the total period is the product of both.
  59.  *
  60.  *     -------------------------------------------------------------------------------------------------
  61.  * +-> |31:30:29:28:27:26:25:24:23:22:21:20:19:18:17:16:15:14:13:12:11:10: 9: 8: 7: 6: 5: 4: 3: 2: 1: 0|
  62.  * |   -------------------------------------------------------------------------------------------------
  63.  * |                                                                          |  |  |  |     |        |
  64.  * |                                                                          +--+--+--+-XOR-+--------+
  65.  * |                                                                                      |
  66.  * +--------------------------------------------------------------------------------------+
  67.  *
  68.  *     -------------------------------------------------------------------------------------------------
  69.  *     |31:30:29:28:27:26:25:24:23:22:21:20:19:18:17:16:15:14:13:12:11:10: 9: 8: 7: 6: 5: 4: 3: 2: 1: 0| <-+
  70.  *     -------------------------------------------------------------------------------------------------   |
  71.  *       |  |           |  |                                                                               |
  72.  *       +--+----XOR----+--+                                                                               |
  73.  *                |                                                                                        |
  74.  *                +----------------------------------------------------------------------------------------+
  75.  *
  76.  *
  77.  *  The first has an period of 3*5*17*257*65537, the second of 7*47*73*178481,
  78.  *  which gives a period of 18.410.713.077.675.721.215. The result is the
  79.  *  XORed values of both generators.
  80.  */
  81. static unsigned int random_int_()
  82. {
  83. static const unsigned char parity_[256] = {
  84. 0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
  85. 1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
  86. 1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
  87. 0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
  88. 1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,
  89. 0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
  90. 0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,
  91. 1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0
  92. };
  93. static unsigned int r1_ = 1;
  94. static unsigned int r2_ = 1;
  95. unsigned int t1, t2, t3, t4;
  96. /* Parity calculation is done via table lookup, this is also available
  97.  * on CPUs without parity, can be implemented in C and avoid unpredictable
  98.  * jumps and slow rotate through the carry flag operations.
  99.  */
  100. t3   = t1 = r1_;    t4   = t2 = r2_;
  101. t1  &= 0xF5;        t2 >>= 25;
  102. t1   = parity_[t1]; t2  &= 0x63;
  103. t1 <<= 31;          t2   = parity_[t2];
  104. return (r1_ = (t3 >> 1) | t1 ) ^ (r2_ = (t4 + t4) | t2 );
  105. }
  106. /* gives a equal distributed random number */
  107. /* between -2^31*mult and +2^31*mult */
  108. static double random_equi_(double mult)
  109. {
  110. return mult * (int) random_int_();
  111. }
  112. /* gives a triangular distributed random number */
  113. /* between -2^32*mult and +2^32*mult */
  114. static double random_triangular_(double mult)
  115. {
  116. return mult * ( (double) (int) random_int_() + (double) (int) random_int_() );
  117. }
  118. static const float  F44_0 [16 + 32] = {
  119. (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0,
  120. (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0,
  121. (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0,
  122. (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0,
  123. (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0,
  124. (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0, (float)0
  125. };
  126. static const float  F44_1 [16 + 32] = {  /* SNR(w) = 4.843163 dB, SNR = -3.192134 dB */
  127. (float) 0.85018292704024355931, (float) 0.29089597350995344721, (float)-0.05021866022121039450, (float)-0.23545456294599161833,
  128. (float)-0.58362726442227032096, (float)-0.67038978965193036429, (float)-0.38566861572833459221, (float)-0.15218663390367969967,
  129. (float)-0.02577543084864530676, (float) 0.14119295297688728127, (float) 0.22398848581628781612, (float) 0.15401727203382084116,
  130. (float) 0.05216161232906000929, (float)-0.00282237820999675451, (float)-0.03042794608323867363, (float)-0.03109780942998826024,
  131. (float) 0.85018292704024355931, (float) 0.29089597350995344721, (float)-0.05021866022121039450, (float)-0.23545456294599161833,
  132. (float)-0.58362726442227032096, (float)-0.67038978965193036429, (float)-0.38566861572833459221, (float)-0.15218663390367969967,
  133. (float)-0.02577543084864530676, (float) 0.14119295297688728127, (float) 0.22398848581628781612, (float) 0.15401727203382084116,
  134. (float) 0.05216161232906000929, (float)-0.00282237820999675451, (float)-0.03042794608323867363, (float)-0.03109780942998826024,
  135. (float) 0.85018292704024355931, (float) 0.29089597350995344721, (float)-0.05021866022121039450, (float)-0.23545456294599161833,
  136. (float)-0.58362726442227032096, (float)-0.67038978965193036429, (float)-0.38566861572833459221, (float)-0.15218663390367969967,
  137. (float)-0.02577543084864530676, (float) 0.14119295297688728127, (float) 0.22398848581628781612, (float) 0.15401727203382084116,
  138. (float) 0.05216161232906000929, (float)-0.00282237820999675451, (float)-0.03042794608323867363, (float)-0.03109780942998826024,
  139. };
  140. static const float  F44_2 [16 + 32] = {  /* SNR(w) = 10.060213 dB, SNR = -12.766730 dB */
  141. (float) 1.78827593892108555290, (float) 0.95508210637394326553, (float)-0.18447626783899924429, (float)-0.44198126506275016437,
  142. (float)-0.88404052492547413497, (float)-1.42218907262407452967, (float)-1.02037566838362314995, (float)-0.34861755756425577264,
  143. (float)-0.11490230170431934434, (float) 0.12498899339968611803, (float) 0.38065885268563131927, (float) 0.31883491321310506562,
  144. (float) 0.10486838686563442765, (float)-0.03105361685110374845, (float)-0.06450524884075370758, (float)-0.02939198261121969816,
  145. (float) 1.78827593892108555290, (float) 0.95508210637394326553, (float)-0.18447626783899924429, (float)-0.44198126506275016437,
  146. (float)-0.88404052492547413497, (float)-1.42218907262407452967, (float)-1.02037566838362314995, (float)-0.34861755756425577264,
  147. (float)-0.11490230170431934434, (float) 0.12498899339968611803, (float) 0.38065885268563131927, (float) 0.31883491321310506562,
  148. (float) 0.10486838686563442765, (float)-0.03105361685110374845, (float)-0.06450524884075370758, (float)-0.02939198261121969816,
  149. (float) 1.78827593892108555290, (float) 0.95508210637394326553, (float)-0.18447626783899924429, (float)-0.44198126506275016437,
  150. (float)-0.88404052492547413497, (float)-1.42218907262407452967, (float)-1.02037566838362314995, (float)-0.34861755756425577264,
  151. (float)-0.11490230170431934434, (float) 0.12498899339968611803, (float) 0.38065885268563131927, (float) 0.31883491321310506562,
  152. (float) 0.10486838686563442765, (float)-0.03105361685110374845, (float)-0.06450524884075370758, (float)-0.02939198261121969816,
  153. };
  154. static const float  F44_3 [16 + 32] = {  /* SNR(w) = 15.382598 dB, SNR = -29.402334 dB */
  155. (float) 2.89072132015058161445, (float) 2.68932810943698754106, (float) 0.21083359339410251227, (float)-0.98385073324997617515,
  156. (float)-1.11047823227097316719, (float)-2.18954076314139673147, (float)-2.36498032881953056225, (float)-0.95484132880101140785,
  157. (float)-0.23924057925542965158, (float)-0.13865235703915925642, (float) 0.43587843191057992846, (float) 0.65903257226026665927,
  158. (float) 0.24361815372443152787, (float)-0.00235974960154720097, (float) 0.01844166574603346289, (float) 0.01722945988740875099,
  159. (float) 2.89072132015058161445, (float) 2.68932810943698754106, (float) 0.21083359339410251227, (float)-0.98385073324997617515,
  160. (float)-1.11047823227097316719, (float)-2.18954076314139673147, (float)-2.36498032881953056225, (float)-0.95484132880101140785,
  161. (float)-0.23924057925542965158, (float)-0.13865235703915925642, (float) 0.43587843191057992846, (float) 0.65903257226026665927,
  162. (float) 0.24361815372443152787, (float)-0.00235974960154720097, (float) 0.01844166574603346289, (float) 0.01722945988740875099,
  163. (float) 2.89072132015058161445, (float) 2.68932810943698754106, (float) 0.21083359339410251227, (float)-0.98385073324997617515,
  164. (float)-1.11047823227097316719, (float)-2.18954076314139673147, (float)-2.36498032881953056225, (float)-0.95484132880101140785,
  165. (float)-0.23924057925542965158, (float)-0.13865235703915925642, (float) 0.43587843191057992846, (float) 0.65903257226026665927,
  166. (float) 0.24361815372443152787, (float)-0.00235974960154720097, (float) 0.01844166574603346289, (float) 0.01722945988740875099
  167. };
  168. static double scalar16_(const float* x, const float* y)
  169. {
  170. return
  171. x[ 0]*y[ 0] + x[ 1]*y[ 1] + x[ 2]*y[ 2] + x[ 3]*y[ 3] +
  172. x[ 4]*y[ 4] + x[ 5]*y[ 5] + x[ 6]*y[ 6] + x[ 7]*y[ 7] +
  173. x[ 8]*y[ 8] + x[ 9]*y[ 9] + x[10]*y[10] + x[11]*y[11] +
  174. x[12]*y[12] + x[13]*y[13] + x[14]*y[14] + x[15]*y[15];
  175. }
  176. void FLAC__replaygain_synthesis__init_dither_context(DitherContext *d, int bits, int shapingtype)
  177. {
  178. static unsigned char default_dither [] = { 92, 92, 88, 84, 81, 78, 74, 67,  0,  0 };
  179. static const float*               F [] = { F44_0, F44_1, F44_2, F44_3 };
  180. int index;
  181. if (shapingtype < 0) shapingtype = 0;
  182. if (shapingtype > 3) shapingtype = 3;
  183. d->ShapingType = (NoiseShaping)shapingtype;
  184. index = bits - 11 - shapingtype;
  185. if (index < 0) index = 0;
  186. if (index > 9) index = 9;
  187. memset ( d->ErrorHistory , 0, sizeof (d->ErrorHistory ) );
  188. memset ( d->DitherHistory, 0, sizeof (d->DitherHistory) );
  189. d->FilterCoeff = F [shapingtype];
  190. d->Mask   = ((FLAC__uint64)-1) << (32 - bits);
  191. d->Add    = 0.5     * ((1L << (32 - bits)) - 1);
  192. d->Dither = 0.01f*default_dither[index] / (((FLAC__int64)1) << bits);
  193. d->LastHistoryIndex = 0;
  194. }
  195. /*
  196.  * the following is based on parts of wavegain.c
  197.  */
  198. static FLAC__INLINE FLAC__int64 dither_output_(DitherContext *d, FLAC__bool do_dithering, int shapingtype, int i, double Sum, int k)
  199. {
  200. union {
  201. double d;
  202. FLAC__int64 i;
  203. } doubletmp;
  204. double Sum2;
  205. FLAC__int64 val;
  206. #define ROUND64(x)   ( doubletmp.d = (x) + d->Add + (FLAC__int64)FLAC__I64L(0x001FFFFD80000000), doubletmp.i - (FLAC__int64)FLAC__I64L(0x433FFFFD80000000) )
  207. if(do_dithering) {
  208. if(shapingtype == 0) {
  209. double  tmp = random_equi_(d->Dither);
  210. Sum2 = tmp - d->LastRandomNumber [k];
  211. d->LastRandomNumber [k] = (int)tmp;
  212. Sum2 = Sum += Sum2;
  213. val = ROUND64(Sum2) & d->Mask;
  214. }
  215. else {
  216. Sum2 = random_triangular_(d->Dither) - scalar16_(d->DitherHistory[k], d->FilterCoeff + i);
  217. Sum += d->DitherHistory [k] [(-1-i)&15] = (float)Sum2;
  218. Sum2 = Sum + scalar16_(d->ErrorHistory [k], d->FilterCoeff + i);
  219. val = ROUND64(Sum2) & d->Mask;
  220. d->ErrorHistory [k] [(-1-i)&15] = (float)(Sum - val);
  221. }
  222. return val;
  223. }
  224. else
  225. return ROUND64(Sum);
  226. #undef ROUND64
  227. }
  228. #if 0
  229. float        peak = 0.f,
  230.              new_peak,
  231.              factor_clip
  232. double       scale,
  233.              dB;
  234. ...
  235. peak is in the range -32768.0 .. 32767.0
  236. /* calculate factors for ReplayGain and ClippingPrevention */
  237. *track_gain = GetTitleGain() + settings->man_gain;
  238. scale = (float) pow(10., *track_gain * 0.05);
  239. if(settings->clip_prev) {
  240. factor_clip  = (float) (32767./( peak + 1));
  241. if(scale < factor_clip)
  242. factor_clip = 1.f;
  243. else
  244. factor_clip /= scale;
  245. scale *= factor_clip;
  246. }
  247. new_peak = (float) peak * scale;
  248. dB = 20. * log10(scale);
  249. *track_gain = (float) dB;
  250.   const double scale = pow(10., (double)gain * 0.05);
  251. #endif
  252. size_t FLAC__replaygain_synthesis__apply_gain(FLAC__byte *data_out, FLAC__bool little_endian_data_out, FLAC__bool unsigned_data_out, const FLAC__int32 * const input[], unsigned wide_samples, unsigned channels, const unsigned source_bps, const unsigned target_bps, const double scale, const FLAC__bool hard_limit, FLAC__bool do_dithering, DitherContext *dither_context)
  253. {
  254. static const FLAC__int32 conv_factors_[33] = {
  255. -1, /* 0 bits-per-sample (not supported) */
  256. -1, /* 1 bits-per-sample (not supported) */
  257. -1, /* 2 bits-per-sample (not supported) */
  258. -1, /* 3 bits-per-sample (not supported) */
  259. 268435456, /* 4 bits-per-sample */
  260. 134217728, /* 5 bits-per-sample */
  261. 67108864, /* 6 bits-per-sample */
  262. 33554432, /* 7 bits-per-sample */
  263. 16777216, /* 8 bits-per-sample */
  264. 8388608, /* 9 bits-per-sample */
  265. 4194304, /* 10 bits-per-sample */
  266. 2097152, /* 11 bits-per-sample */
  267. 1048576, /* 12 bits-per-sample */
  268. 524288, /* 13 bits-per-sample */
  269. 262144, /* 14 bits-per-sample */
  270. 131072, /* 15 bits-per-sample */
  271. 65536, /* 16 bits-per-sample */
  272. 32768, /* 17 bits-per-sample */
  273. 16384, /* 18 bits-per-sample */
  274. 8192, /* 19 bits-per-sample */
  275. 4096, /* 20 bits-per-sample */
  276. 2048, /* 21 bits-per-sample */
  277. 1024, /* 22 bits-per-sample */
  278. 512, /* 23 bits-per-sample */
  279. 256, /* 24 bits-per-sample */
  280. 128, /* 25 bits-per-sample */
  281. 64, /* 26 bits-per-sample */
  282. 32, /* 27 bits-per-sample */
  283. 16, /* 28 bits-per-sample */
  284. 8, /* 29 bits-per-sample */
  285. 4, /* 30 bits-per-sample */
  286. 2, /* 31 bits-per-sample */
  287. 1 /* 32 bits-per-sample */
  288. };
  289. static const FLAC__int64 hard_clip_factors_[33] = {
  290. 0, /* 0 bits-per-sample (not supported) */
  291. 0, /* 1 bits-per-sample (not supported) */
  292. 0, /* 2 bits-per-sample (not supported) */
  293. 0, /* 3 bits-per-sample (not supported) */
  294. -8, /* 4 bits-per-sample */
  295. -16, /* 5 bits-per-sample */
  296. -32, /* 6 bits-per-sample */
  297. -64, /* 7 bits-per-sample */
  298. -128, /* 8 bits-per-sample */
  299. -256, /* 9 bits-per-sample */
  300. -512, /* 10 bits-per-sample */
  301. -1024, /* 11 bits-per-sample */
  302. -2048, /* 12 bits-per-sample */
  303. -4096, /* 13 bits-per-sample */
  304. -8192, /* 14 bits-per-sample */
  305. -16384, /* 15 bits-per-sample */
  306. -32768, /* 16 bits-per-sample */
  307. -65536, /* 17 bits-per-sample */
  308. -131072, /* 18 bits-per-sample */
  309. -262144, /* 19 bits-per-sample */
  310. -524288, /* 20 bits-per-sample */
  311. -1048576, /* 21 bits-per-sample */
  312. -2097152, /* 22 bits-per-sample */
  313. -4194304, /* 23 bits-per-sample */
  314. -8388608, /* 24 bits-per-sample */
  315. -16777216, /* 25 bits-per-sample */
  316. -33554432, /* 26 bits-per-sample */
  317. -67108864, /* 27 bits-per-sample */
  318. -134217728, /* 28 bits-per-sample */
  319. -268435456, /* 29 bits-per-sample */
  320. -536870912, /* 30 bits-per-sample */
  321. -1073741824, /* 31 bits-per-sample */
  322. (FLAC__int64)(-1073741824) * 2 /* 32 bits-per-sample */
  323. };
  324. const FLAC__int32 conv_factor = conv_factors_[target_bps];
  325. const FLAC__int64 hard_clip_factor = hard_clip_factors_[target_bps];
  326. /*
  327.  * The integer input coming in has a varying range based on the
  328.  * source_bps.  We want to normalize it to [-1.0, 1.0) so instead
  329.  * of doing two multiplies on each sample, we just multiple
  330.  * 'scale' by 1/(2^(source_bps-1))
  331.  */
  332. const double multi_scale = scale / (double)(1u << (source_bps-1));
  333. FLAC__byte * const start = data_out;
  334. unsigned i, channel;
  335. const FLAC__int32 *input_;
  336. double sample;
  337. const unsigned bytes_per_sample = target_bps / 8;
  338. const unsigned last_history_index = dither_context->LastHistoryIndex;
  339. NoiseShaping noise_shaping = dither_context->ShapingType;
  340. FLAC__int64 val64;
  341. FLAC__int32 val32;
  342. FLAC__int32 uval32;
  343. const FLAC__uint32 twiggle = 1u << (target_bps - 1);
  344. FLAC__ASSERT(channels > 0 && channels <= FLAC_SHARE__MAX_SUPPORTED_CHANNELS);
  345. FLAC__ASSERT(source_bps >= 4);
  346. FLAC__ASSERT(target_bps >= 4);
  347. FLAC__ASSERT(source_bps <= 32);
  348. FLAC__ASSERT(target_bps < 32);
  349. FLAC__ASSERT((target_bps & 7) == 0);
  350. for(channel = 0; channel < channels; channel++) {
  351. const unsigned incr = bytes_per_sample * channels;
  352. data_out = start + bytes_per_sample * channel;
  353. input_ = input[channel];
  354. for(i = 0; i < wide_samples; i++, data_out += incr) {
  355. sample = (double)input_[i] * multi_scale;
  356. if(hard_limit) {
  357. /* hard 6dB limiting */
  358. if(sample < -0.5)
  359. sample = tanh((sample + 0.5) / (1-0.5)) * (1-0.5) - 0.5;
  360. else if(sample > 0.5)
  361. sample = tanh((sample - 0.5) / (1-0.5)) * (1-0.5) + 0.5;
  362. }
  363. sample *= 2147483647.f;
  364. val64 = dither_output_(dither_context, do_dithering, noise_shaping, (i + last_history_index) % 32, sample, channel) / conv_factor;
  365. val32 = (FLAC__int32)val64;
  366. if(val64 >= -hard_clip_factor)
  367. val32 = (FLAC__int32)(-(hard_clip_factor+1));
  368. else if(val64 < hard_clip_factor)
  369. val32 = (FLAC__int32)hard_clip_factor;
  370. uval32 = (FLAC__uint32)val32;
  371. if (unsigned_data_out)
  372. uval32 ^= twiggle;
  373. if (little_endian_data_out) {
  374. switch(target_bps) {
  375. case 24:
  376. data_out[2] = (FLAC__byte)(uval32 >> 16);
  377. /* fall through */
  378. case 16:
  379. data_out[1] = (FLAC__byte)(uval32 >> 8);
  380. /* fall through */
  381. case 8:
  382. data_out[0] = (FLAC__byte)uval32;
  383. break;
  384. }
  385. }
  386. else {
  387. switch(target_bps) {
  388. case 24:
  389. data_out[0] = (FLAC__byte)(uval32 >> 16);
  390. data_out[1] = (FLAC__byte)(uval32 >> 8);
  391. data_out[2] = (FLAC__byte)uval32;
  392. break;
  393. case 16:
  394. data_out[0] = (FLAC__byte)(uval32 >> 8);
  395. data_out[1] = (FLAC__byte)uval32;
  396. break;
  397. case 8:
  398. data_out[0] = (FLAC__byte)uval32;
  399. break;
  400. }
  401. }
  402. }
  403. }
  404. dither_context->LastHistoryIndex = (last_history_index + wide_samples) % 32;
  405. return wide_samples * channels * (target_bps/8);
  406. }