limiter.c
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:12k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: limiter.c,v 1.3.32.1 2004/07/09 02:00:48 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /*
  50.  * Fixed-point lookahead peak-limiter
  51.  * by Ken Cooke
  52.  */
  53. #include "hlxclib/math.h"
  54. #include "hlxclib/stdlib.h"
  55. #include "limiter.h"
  56. #include "math64.h"
  57. #define MAX(a,b) (((a) > (b)) ? (a) : (b))
  58. #define MIN(a,b) (((a) < (b)) ? (a) : (b))
  59. #define INCMOD(a,b) ((a) = ((a) + (b)) & 0x1ff)
  60. #define LEFT 0
  61. #define RGHT 1
  62. #define MONO 0
  63. #define FIXSCALE 2147483648.0 /* convert to S.31 fixed-point */
  64. #define FLT_ONE 2147483647.0
  65. #define FIX_ONE 0x7fffffff
  66. static const double def_dbgain = 0.0;
  67. static const double def_outceil = -0.1;
  68. static const double def_release = 250.0;
  69. static const double def_rms_attack = 25.0;
  70. static const double def_rms_release = 250.0;
  71. static const double cicgain = (1 << 12) / (53.0 * 76.0);
  72. #define RAND16(r) (((r) = (r) * 69069U + 1U) >> 16)
  73. static unsigned char randseed[32] = { /* Flawfinder: ignore */
  74. 0x00, 0x0d, 0x0a, 0x50, 0x65, 0x61, 0x6b, 0x5f,
  75. 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x72, 0x20,
  76. 0x62, 0x79, 0x20, 0x4b, 0x65, 0x6e, 0x20, 0x43,
  77. 0x6f, 0x6f, 0x6b, 0x65, 0x0d, 0x0a, 0x00, 0x00,
  78. };
  79. /*
  80.  * Utility functions
  81.  */
  82. double
  83. DbToGain(double db) {
  84. return pow(10.0, db / 20.0);
  85. }
  86. double
  87. GainToDb(double gain) {
  88. ASSERT(gain > 0.0);
  89. return (20.0 * log10(gain));
  90. }
  91. double
  92. MsToTc(double ms, double samprate) {
  93. ASSERT(ms > 0.0);
  94. ASSERT(samprate > 0.0);
  95. return exp(-1000.0 / (ms * samprate));
  96. }
  97. double
  98. TcToMs(double tc, double samprate) {
  99. ASSERT(tc > 0.0);
  100. ASSERT(samprate > 0.0);
  101. return (-1000.0 / (log(tc) * samprate));
  102. }
  103. double
  104. Log2(double x) {
  105. ASSERT(x > 0.0);
  106. return (log(x) / log(2.0));
  107. }
  108. void
  109. LimiterSetGain(double dbgain, LIMSTATE *lim)
  110. {
  111. double mkupgain;
  112. double outgain;
  113. lim->dbgain = dbgain;
  114. /* compute threshold */
  115. mkupgain = (1 << lim->headroom) * DbToGain(dbgain);
  116. lim->threshold = (int)(FLT_ONE / MAX(mkupgain, 1.0));
  117. /* compute output gain */
  118. outgain = DbToGain(def_outceil) * mkupgain * cicgain;
  119. /* normalize outgain into shift and fraction */
  120. lim->outshift = (int) (ceil(Log2(outgain)));
  121. lim->outshift = MAX(lim->outshift, 0);
  122. lim->outfract = (int) ((outgain / (1 << lim->outshift)) * FLT_ONE);
  123. ASSERT(lim->outfract >= 0); /* should never overflow */
  124. lim->outshift = 31 - lim->outshift;
  125. }
  126. void
  127. LimiterSetRelease(double release, LIMSTATE *lim)
  128. {
  129. double x, ms, tc;
  130. double peakval, rmsval;
  131. int n;
  132. /* compute time constants */
  133. lim->reltc = (int)(FIXSCALE * MsToTc(release, lim->samprate));
  134. lim->rmsatktc = (int)(FIXSCALE * MsToTc(def_rms_attack, lim->samprate));
  135. lim->rmsreltc = (int)(FIXSCALE * MsToTc(def_rms_release, lim->samprate));
  136. /* compute adaptive release tables */
  137. for (n = 0; n < 256; n++) {
  138. /* rms saturation curve */
  139. x = n * (1.0 / 256.0);
  140. x = x * x * x;
  141. x = 1.0 - x;
  142. x = x * x * x; /* cubic "S" curve */
  143. ms = x * release;
  144. ms = MAX(ms, 0.01); /* clamp small values */
  145. tc = MsToTc(ms, lim->samprate);
  146. /* peak-over-rms acceleration */
  147. peakval = pow(0.5, 1.0 / (n + 1));
  148. rmsval = tc / peakval;
  149. lim->peaktab[n] = (int)(FIXSCALE * peakval);
  150. lim->rmstab[n] = (int)(0.5 * FIXSCALE * rmsval); /* shifted >> 1 */
  151. }
  152. }
  153. int
  154. LimiterGetDelay(LIMSTATE *lim)
  155. {
  156. return 128;
  157. }
  158. double
  159. LimiterGetAtten(LIMSTATE *lim)
  160. {
  161. return -GainToDb(lim->peak_z / FLT_ONE); // fixme
  162. }
  163. LIMSTATE *
  164. LimiterInit(int samprate, int channels, int headroom)
  165. {
  166. LIMSTATE *lim;
  167. int i, n, dcinput;
  168. lim = (LIMSTATE *) calloc(1, sizeof(LIMSTATE));
  169. if (!lim)
  170. return NULL;
  171. ASSERT(headroom >= 0); /* required for abs(pcm) */
  172. lim->samprate = samprate;
  173. lim->channels = channels;
  174. lim->headroom = headroom;
  175. /* init history */
  176. lim->idx = 0;
  177. lim->peak_z = FIX_ONE;
  178. lim->rms_z = FIX_ONE;
  179. lim->randsave = randseed[19] | 0x1;
  180. i = 0;
  181. /* peak-hold lookahead */
  182. for (n = 0; n < 128; n++)
  183. lim->delay[i++] = FIX_ONE;
  184. /* CIC filter history */
  185. dcinput = FIX_ONE >> 6;
  186. lim->acc1 = 53 * dcinput;
  187. for (n = 52; n > 0; n--)
  188. lim->delay[i++] = n * dcinput;
  189. dcinput = (dcinput * 53) >> 6;
  190. lim->acc2 = 76 * dcinput;
  191. for (n = 75; n > 0; n--)
  192. lim->delay[i++] = n * dcinput;
  193. lim->delay[i++] = 0xbadf00d; /* unused tap */
  194. /* pcm delay */
  195. for (n = 0; n < 256; n++)
  196. lim->delay[i++] = 0;
  197. ASSERT(i == 512);
  198. /* default settings */
  199. LimiterSetGain(def_dbgain, lim);
  200. LimiterSetRelease(def_release, lim);
  201. return lim;
  202. }
  203. void
  204. LimiterFree(LIMSTATE *lim)
  205. {
  206. free(lim);
  207. }
  208. #ifdef HAVE_PLATFORM_MACROS
  209. void
  210. LimiterStereo(int *pcmbuf, int nsamples, LIMSTATE *lim)
  211. {
  212. int *pcmptr, *delay;
  213. int atten, rms, peak;
  214. int i, tc;
  215. // TICK();
  216. ASSERT(!(nsamples & 0x1)); /* must be even */
  217. delay = lim->delay;
  218. i = lim->idx;
  219. for (pcmptr = pcmbuf; pcmptr < pcmbuf + nsamples; pcmptr += 2) {
  220. unsigned int pcmleft  = abs(pcmptr[LEFT]) ;
  221. unsigned int pcmright = abs(pcmptr[RGHT]) ;
  222. /* peak detect */
  223. unsigned int pcmpeak  = MAX(pcmleft, pcmright) ;
  224. /* compute the required attenuation */
  225. if (pcmpeak == 0x80000000UL)
  226. atten = MulShift31(FIX_ONE, lim->threshold) ;
  227. else if ((signed)pcmpeak > lim->threshold)
  228. atten = MulDiv64(FIX_ONE, lim->threshold, pcmpeak);
  229. else
  230. atten = FIX_ONE;
  231. /* peak-hold lookahead */
  232. delay[i] = atten;
  233. INCMOD(i, 1);
  234. atten = MIN(atten, delay[i]);
  235. delay[i] = atten;
  236. INCMOD(i, 2);
  237. atten = MIN(atten, delay[i]);
  238. delay[i] = atten;
  239. INCMOD(i, 4);
  240. atten = MIN(atten, delay[i]);
  241. delay[i] = atten;
  242. INCMOD(i, 8);
  243. atten = MIN(atten, delay[i]);
  244. delay[i] = atten;
  245. INCMOD(i, 16);
  246. atten = MIN(atten, delay[i]);
  247. delay[i] = atten;
  248. INCMOD(i, 32);
  249. atten = MIN(atten, delay[i]);
  250. delay[i] = atten;
  251. INCMOD(i, 64);
  252. atten = MIN(atten, delay[i]);
  253. /* atten is now min value over lookahead */
  254. /* release filter */
  255. peak = atten;
  256. if (peak > lim->peak_z)
  257. peak -= MulShift31((peak - lim->peak_z), lim->reltc);
  258. lim->peak_z = peak;
  259. atten = peak;
  260. /* adapt release */
  261. rms = atten;
  262. tc = (rms < lim->rms_z ? lim->rmsatktc : lim->rmsreltc);
  263. rms -= MulShift31((rms - lim->rms_z), tc);
  264. lim->rms_z = rms;
  265. peak = MIN(peak, rms);
  266. lim->reltc = MulShiftN(lim->peaktab[peak>>23], lim->rmstab[rms>>23], 30);
  267. /*
  268.  * FIR attack/lowpass filter, via 2-stage CIC
  269.  *
  270.  * H(z) = 1 (1 - z^-53) (1 - z^-76)
  271.  *        - ---------- ----------
  272.  *    53*76 (1 - z^-1)  (1 - z^-1)
  273.  */
  274. delay[i] = lim->acc1;
  275. lim->acc1 += atten >> 6;
  276. INCMOD(i, 52);
  277. atten = lim->acc1 - delay[i];
  278. delay[i] = lim->acc2;
  279. lim->acc2 += atten >> 6;
  280. INCMOD(i, 75);
  281. atten = lim->acc2 - delay[i];
  282. atten = MulShift31(atten, lim->outfract);
  283. INCMOD(i, 1); /* skip unused taps */
  284. /* pcm delay */
  285. delay[i] = pcmptr[LEFT];
  286. INCMOD(i, 128);
  287. pcmptr[LEFT] = delay[i];
  288. delay[i] = pcmptr[RGHT];
  289. INCMOD(i, 128);
  290. pcmptr[RGHT] = delay[i];
  291. /* modulate pcm */
  292. pcmptr[LEFT] = MulShiftN(pcmptr[LEFT], atten, lim->outshift);
  293. pcmptr[RGHT] = MulShiftN(pcmptr[RGHT], atten, lim->outshift);
  294. }
  295. lim->idx = i;
  296. // TOCK();
  297. }
  298. void
  299. LimiterMono(int *pcmbuf, int nsamples, LIMSTATE *lim)
  300. {
  301. int *pcmptr, *delay;
  302. int atten, rms, peak;
  303. int i, tc;
  304. // TICK();
  305. delay = lim->delay;
  306. i = lim->idx;
  307. for (pcmptr = pcmbuf; pcmptr < pcmbuf + nsamples; pcmptr += 1) {
  308. /* peak detect */
  309. unsigned int pcmpeak = abs(pcmptr[MONO]);
  310. /* compute the required attenuation */
  311. if (pcmpeak == 0x80000000UL)
  312. atten = MulShift31(FIX_ONE, lim->threshold) ;
  313. else if ((signed)pcmpeak > lim->threshold)
  314. atten = MulDiv64(FIX_ONE, lim->threshold, pcmpeak);
  315. else
  316. atten = FIX_ONE;
  317. /* peak-hold lookahead */
  318. delay[i] = atten;
  319. INCMOD(i, 1);
  320. atten = MIN(atten, delay[i]);
  321. delay[i] = atten;
  322. INCMOD(i, 2);
  323. atten = MIN(atten, delay[i]);
  324. delay[i] = atten;
  325. INCMOD(i, 4);
  326. atten = MIN(atten, delay[i]);
  327. delay[i] = atten;
  328. INCMOD(i, 8);
  329. atten = MIN(atten, delay[i]);
  330. delay[i] = atten;
  331. INCMOD(i, 16);
  332. atten = MIN(atten, delay[i]);
  333. delay[i] = atten;
  334. INCMOD(i, 32);
  335. atten = MIN(atten, delay[i]);
  336. delay[i] = atten;
  337. INCMOD(i, 64);
  338. atten = MIN(atten, delay[i]);
  339. /* atten is now min value over lookahead */
  340. /* release filter */
  341. peak = atten;
  342. if (peak > lim->peak_z)
  343. peak -= MulShift31((peak - lim->peak_z), lim->reltc);
  344. lim->peak_z = peak;
  345. atten = peak;
  346. /* adapt release */
  347. rms = atten;
  348. tc = (rms < lim->rms_z ? lim->rmsatktc : lim->rmsreltc);
  349. rms -= MulShift31((rms - lim->rms_z), tc);
  350. lim->rms_z = rms;
  351. peak = MIN(peak, rms);
  352. lim->reltc = MulShiftN(lim->peaktab[peak>>23], lim->rmstab[rms>>23], 30);
  353. /*
  354.  * FIR attack/lowpass filter, via 2-stage CIC
  355.  *
  356.  * H(z) = 1 (1 - z^-53) (1 - z^-76)
  357.  *        - ---------- ----------
  358.  *    53*76 (1 - z^-1)  (1 - z^-1)
  359.  */
  360. delay[i] = lim->acc1;
  361. lim->acc1 += atten >> 6;
  362. INCMOD(i, 52);
  363. atten = lim->acc1 - delay[i];
  364. delay[i] = lim->acc2;
  365. lim->acc2 += atten >> 6;
  366. INCMOD(i, 75);
  367. atten = lim->acc2 - delay[i];
  368. atten = MulShift31(atten, lim->outfract);
  369. INCMOD(i, 129); /* skip unused taps */
  370. /* pcm delay */
  371. delay[i] = pcmptr[MONO];
  372. INCMOD(i, 128);
  373. pcmptr[MONO] = delay[i];
  374. /* modulate pcm */
  375. pcmptr[MONO] = MulShiftN(pcmptr[MONO], atten, lim->outshift);
  376. }
  377. lim->idx = i;
  378. // TOCK();
  379. }
  380. void
  381. LimiterProcess(int *pcmbuf, int nsamples, LIMSTATE *lim)
  382. {
  383. if (lim->channels == 1)
  384. LimiterMono(pcmbuf, nsamples, lim);
  385. else
  386. LimiterStereo(pcmbuf, nsamples, lim);
  387. }
  388. #endif
  389. void
  390. LimiterOutput16(int *pcmbuf, short *outbuf, int nsamples, LIMSTATE *lim)
  391. {
  392. unsigned int randsave;
  393. int i, r0, r1, dither;
  394. // TICK();
  395. ASSERT(def_outceil < -0.0004); /* guarantees no clipping */
  396. randsave = lim->randsave;
  397. for (i = 0; i < nsamples; i++) {
  398. r0 = RAND16(randsave);
  399. r1 = RAND16(randsave);
  400. dither = r0 - r1; /* flat TPDF dither */
  401. outbuf[i] = (short) ((pcmbuf[i] + dither + (1<<15)) >> 16);
  402. }
  403. lim->randsave = randsave;
  404. // TOCK();
  405. }