/[svn]/linuxsampler/trunk/src/engines/gig/Profiler.h
ViewVC logotype

Annotation of /linuxsampler/trunk/src/engines/gig/Profiler.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (hide annotations) (download) (as text)
Sat Dec 25 21:58:58 2004 UTC (19 years, 4 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 2619 byte(s)
* architecture independence fixes, should now compile again for non x86
  systems
* tiny fix of command line switch --version

1 senkov 326 /***************************************************************************
2     * *
3     * LinuxSampler - modular, streaming capable sampler *
4     * *
5     * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6     * *
7     * This program is free software; you can redistribute it and/or modify *
8     * it under the terms of the GNU General Public License as published by *
9     * the Free Software Foundation; either version 2 of the License, or *
10     * (at your option) any later version. *
11     * *
12     * This program is distributed in the hope that it will be useful, *
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15     * GNU General Public License for more details. *
16     * *
17     * You should have received a copy of the GNU General Public License *
18     * along with this program; if not, write to the Free Software *
19     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
20     * MA 02111-1307 USA *
21     ***************************************************************************/
22    
23     #ifndef __LS_GIG_PROFILER_H__
24     #define __LS_GIG_PROFILER_H__
25 schoenebeck 328
26 senkov 326 #include <stdio.h>
27    
28 schoenebeck 328 #include "../../common/global.h"
29     #include "../../common/RTMath.h"
30    
31 senkov 326 namespace LinuxSampler { namespace gig {
32    
33     class Profiler {
34     public:
35     static void Reset( void )
36     {
37     profilingSamples = 0;
38     profilingTime = 0;
39     }
40    
41     static unsigned int GetBogoVoices( unsigned int SamplingFreq );
42    
43 schoenebeck 328 static RTMath::time_stamp_t Stamp( void )
44 senkov 326 {
45 schoenebeck 328 return RTMath::CreateTimeStamp();
46 senkov 326 }
47    
48 schoenebeck 328 static void Record( RTMath::time_stamp_t start,
49 senkov 326 unsigned int samples, unsigned int skip )
50     {
51 schoenebeck 328 RTMath::time_stamp_t stop = Stamp();
52 senkov 326 profilingTime += (stop - start);
53     profilingSamples += (samples - skip);
54     }
55    
56     static void Calibrate( void );
57    
58     private:
59     static unsigned long long profilingSamples;
60     static unsigned long long profilingTime;
61 schoenebeck 328 static double tsPerSecond;
62 senkov 326 };
63    
64     }} // namespace LinuxSampler::gig
65    
66     #endif // __LS_GIG_PROFILER_H__

  ViewVC Help
Powered by ViewVC