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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: limitertest.c,v 1.4.52.1 2004/07/09 02:00:44 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. /* unit test for fixed point helper routines and limiter. */
  50. #include <stdio.h>
  51. #include <stdlib.h>
  52. #include <math.h>
  53. #include <time.h>
  54. #include <string.h>
  55. #ifndef M_PI
  56. #define M_PI 3.141592654
  57. #endif
  58. #define TIMING
  59. #include "math64.h"
  60. #include "limiter.h"
  61. #include "cpuident.h"
  62. #define N 2048
  63. static float f[N] ;
  64. static int a[N] ;
  65. static int b[N] ;
  66. static int c[N] ;
  67. static int d[N] ;
  68. /* see NR in C, chap. 7 */
  69. unsigned int my_rand(unsigned int state)
  70. {
  71.   return state * 1664525L + 1013904223L ;
  72. }
  73. static void prepare_rand(int r[])
  74. {
  75.     int i ;
  76.     unsigned int randstate = 0xDEADBEEF ;
  77.     for (i = 0 ; i < N ; i++)
  78.     {
  79.         // generate random numbers between -2^16 and +2^16
  80.         r[i] = (randstate >> 16) - (1<<15) ;
  81.         randstate = my_rand(randstate) ;
  82.     }
  83. }
  84. #if 1
  85. #undef ASSERT
  86. #define ASSERT(x) if(!(x)){printf("line %d: arg1=%d,arg2=%d,res=%d,true=%dn",
  87.   __LINE__,arg1,a[i],res2,res1);exit(10);}
  88. #endif
  89. int main(void)
  90. {
  91.     int i,j ;
  92.     int res1,res2 ;
  93. LIMSTATE* lim ;
  94. clock_t t ;
  95. long cycles ;
  96. float cyclesPerSec ;
  97.     CPUInformation cpuInfo ;
  98.     CPUIdentify(&cpuInfo) ;
  99.     prepare_rand(a);
  100.     prepare_rand(b);
  101.     for (i = 0 ; i < N ; i++)
  102.     {
  103.         c[i] = a[i] ;
  104. if (!c[i]) c[i] = 1 ;
  105.         if (fabs((float)a[i] * (float)b[i] / (float)c[i]) > (float)0x7fffffffUL)
  106.   c[i] = 0x7fffffffUL ;
  107.     }
  108.     // test the 64-bit commands
  109.     for (i = 0 ; i < N ; i++)
  110.     {
  111.       signed int arg1 = (-1L<<31);
  112.         res1 = a[i] ;
  113.         res2 = -MulShift31(arg1,a[i]) ;
  114.         ASSERT(res1 == res2) ;
  115.     }
  116.     printf("MulShift31 test passed.n");
  117.     for (j = 0 ; j < 32 ; j++)
  118.     {
  119.         for (i = 0 ; i < N ; i++)
  120.         {
  121.             int arg1 = (-1L<<j) ;
  122.             res1 = a[i] ;
  123.             res2 = -MulShiftN(arg1,a[i],j) ;
  124.             ASSERT(res1 == res2) ;
  125.             res2 = -MulShiftN(a[i],arg1,j) ;
  126.             ASSERT(res1 == res2) ;
  127.         }
  128.     }
  129. #if 0 // don't test for shifts of >= 32
  130.     for (j = 32 ; j < 64 ; j++)
  131.     {
  132.         for (i = 0 ; i < N ; i++)
  133.         {
  134.             res1 = a[i]>>(j-31) ;
  135.             res2 = -MulShiftN((-1L<<31),a[i],j) ;
  136.             ASSERT(res1 == res2) ;
  137.         }
  138.     }
  139. #endif
  140.     printf("MulShiftN test passed.n");
  141.     for (j = 0 ; j < 32 ; j++)
  142.     {
  143.         for (i = 0 ; i < N ; i++)
  144.         {
  145.             signed int arg1 = (-1L<<j) ;
  146.             res1 = a[i] ;
  147.             res2 = MulDiv64(arg1,a[i],arg1) ;
  148.             ASSERT(res1 == res2) ;
  149.             if (a[i])
  150.             {
  151.               res2 = MulDiv64(arg1,a[i],a[i]) ;
  152.               ASSERT(arg1 == res2) ;
  153.             }
  154.         }
  155.     }
  156.     printf("MulDiv64 test passed.n");
  157.     printf("measuring clock frequencyn");
  158. // try to measure cpu clock
  159. t = clock() ; TICK() ;
  160.         j = 3;
  161. for (i = 0 ; i < 5000000 ; i++) j *= j ; // do something... do anything
  162. cycles = (long)TOCK(i) ;
  163. t = clock()-t ;
  164. cyclesPerSec = (float)cycles * CLOCKS_PER_SEC / t ;
  165. printf("rapproximate CPU clock: %3.1f MHzn",1E-6*cyclesPerSec) ;
  166.     // timing tests
  167.     printf("MulShift30: ");
  168.     TICK() ;
  169.     for (i = 0 ; i < N ; i+=4)
  170.     {
  171.         d[i  ] = MulShift30(a[i  ],b[i  ]) ;
  172.         d[i+1] = MulShift30(a[i+1],b[i+1]) ;
  173.         d[i+2] = MulShift30(a[i+2],b[i+2]) ;
  174.         d[i+3] = MulShift30(a[i+3],b[i+3]) ;
  175.     }
  176.     cycles = (long)TOCK(N) ;
  177.     // timing tests
  178.     printf("MulShift31: ");
  179.     TICK() ;
  180.     for (i = 0 ; i < N ; i+=4)
  181.     {
  182.         d[i  ] = MulShift31(a[i  ],b[i  ]) ;
  183.         d[i+1] = MulShift31(a[i+1],b[i+1]) ;
  184.         d[i+2] = MulShift31(a[i+2],b[i+2]) ;
  185.         d[i+3] = MulShift31(a[i+3],b[i+3]) ;
  186.     }
  187.     cycles = (long)TOCK(N) ;
  188.     // timing tests
  189.     printf("MulShift32: ");
  190.     TICK() ;
  191.     for (i = 0 ; i < N ; i+=4)
  192.     {
  193.         d[i  ] = MulShift32(a[i  ],b[i  ]) ;
  194.         d[i+1] = MulShift32(a[i+1],b[i+1]) ;
  195.         d[i+2] = MulShift32(a[i+2],b[i+2]) ;
  196.         d[i+3] = MulShift32(a[i+3],b[i+3]) ;
  197.     }
  198.     cycles = (long)TOCK(N) ;
  199.     // timing tests
  200.     printf("MulShiftN: ");
  201.     TICK() ;
  202.     for (i = 0 ; i < N ; i+=4)
  203.     {
  204.         d[i  ] = MulShiftN(a[i  ],b[i  ],31) ;
  205.         d[i+1] = MulShiftN(a[i+1],b[i+1],31) ;
  206.         d[i+2] = MulShiftN(a[i+2],b[i+2],31) ;
  207.         d[i+3] = MulShiftN(a[i+3],b[i+3],31) ;
  208.     }
  209.     TOCK(N) ;
  210.     // timing tests
  211.     printf("MulDiv64: ");
  212.     TICK() ;
  213.     for (i = 0 ; i < N ; i+=4)
  214.     {
  215.         d[i  ] = MulDiv64(a[i  ],b[i  ],c[i  ]) ;
  216.         d[i+1] = MulDiv64(a[i+1],b[i+1],c[i+1]) ;
  217.         d[i+2] = MulDiv64(a[i+2],b[i+2],c[i+2]) ;
  218.         d[i+3] = MulDiv64(a[i+3],b[i+3],c[i+3]) ;
  219.     }
  220.     TOCK(N) ;
  221. // test the limiter, no clipping
  222. for (i = 0 ; i < N ; i++)
  223. {
  224. d[i] = (signed int)((1UL<<31)*sin(i * 2.0*M_PI / N)) ;
  225. }
  226. printf("memcpy: ");
  227. TICK() ;
  228. for (i = 0 ; i < 100 ; i++)
  229. {
  230. memcpy(a,d,sizeof(d)) ; /* Flawfinder: ignore */
  231. }
  232. TOCK(100*N) ;
  233. printf("Mono limiter: ");
  234. lim = LimiterInit(44100,1,0) ; // 0dB headroom
  235. TICK() ;
  236. for (i = 0 ; i < 100 ; i++)
  237. {
  238. memcpy(a,d,sizeof(d)) ; /* Flawfinder: ignore */
  239. LimiterProcess(a,N,lim) ;
  240. }
  241. cycles = (long)TOCK(100*N) ;
  242. printf("%1.1lf%% realtimen",100.0*cycles/cyclesPerSec * (44100.0/(100*N))) ;
  243. LimiterFree(lim) ;
  244. printf("Mono limiter, overgain: ");
  245. lim = LimiterInit(44100,1,1) ; // 1dB headroom
  246. TICK() ;
  247. for (i = 0 ; i < 100 ; i++)
  248. {
  249. memcpy(a,d,sizeof(d)) ; /* Flawfinder: ignore */
  250. LimiterProcess(a,N,lim) ;
  251. }
  252. cycles = (long)TOCK(100*N) ;
  253. printf("%1.1lf%% realtimen",100.0*cycles/cyclesPerSec * (44100.0/(100*N))) ;
  254. LimiterFree(lim) ;
  255. printf("Stereo limiter: ");
  256. lim = LimiterInit(44100,2,0) ; // 0dB headroom
  257. TICK() ;
  258. for (i = 0 ; i < 100 ; i++)
  259. {
  260. memcpy(a,d,sizeof(d)) ; /* Flawfinder: ignore */
  261. LimiterProcess(a,N,lim) ;
  262. }
  263. cycles = (long)TOCK(50*N) ;
  264. printf("%1.1lf%% realtimen",100.0*cycles/cyclesPerSec * (44100.0/(50*N))) ;
  265. LimiterFree(lim) ;
  266. printf("Stereo limiter, overgain: ");
  267. lim = LimiterInit(44100,2,1) ; // 1dB headroom
  268. TICK() ;
  269. for (i = 0 ; i < 100 ; i++)
  270. {
  271. memcpy(a,d,sizeof(d)) ; /* Flawfinder: ignore */
  272. LimiterProcess(a,N,lim) ;
  273. }
  274. cycles = (long)TOCK(50*N) ;
  275. printf("%1.1lf%% realtimen",100.0*cycles/cyclesPerSec * (44100.0/(50*N))) ;
  276. LimiterFree(lim) ;
  277.     return 0;
  278. }