Chris@4
|
1 /** @file patest_toomanysines.c
|
Chris@4
|
2 @ingroup test_src
|
Chris@4
|
3 @brief Play more sine waves than we can handle in real time as a stress test.
|
Chris@4
|
4 @todo This may not be needed now that we have "patest_out_overflow.c".
|
Chris@4
|
5 @author Ross Bencina <rossb@audiomulch.com>
|
Chris@4
|
6 @author Phil Burk <philburk@softsynth.com>
|
Chris@4
|
7 */
|
Chris@4
|
8 /*
|
Chris@4
|
9 * $Id: patest_toomanysines.c 1609 2011-02-27 00:06:07Z philburk $
|
Chris@4
|
10 *
|
Chris@4
|
11 * This program uses the PortAudio Portable Audio Library.
|
Chris@4
|
12 * For more information see: http://www.portaudio.com
|
Chris@4
|
13 * Copyright (c) 1999-2000 Ross Bencina and Phil Burk
|
Chris@4
|
14 *
|
Chris@4
|
15 * Permission is hereby granted, free of charge, to any person obtaining
|
Chris@4
|
16 * a copy of this software and associated documentation files
|
Chris@4
|
17 * (the "Software"), to deal in the Software without restriction,
|
Chris@4
|
18 * including without limitation the rights to use, copy, modify, merge,
|
Chris@4
|
19 * publish, distribute, sublicense, and/or sell copies of the Software,
|
Chris@4
|
20 * and to permit persons to whom the Software is furnished to do so,
|
Chris@4
|
21 * subject to the following conditions:
|
Chris@4
|
22 *
|
Chris@4
|
23 * The above copyright notice and this permission notice shall be
|
Chris@4
|
24 * included in all copies or substantial portions of the Software.
|
Chris@4
|
25 *
|
Chris@4
|
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
Chris@4
|
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
Chris@4
|
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
Chris@4
|
29 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
Chris@4
|
30 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
Chris@4
|
31 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
Chris@4
|
32 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
Chris@4
|
33 */
|
Chris@4
|
34
|
Chris@4
|
35 /*
|
Chris@4
|
36 * The text above constitutes the entire PortAudio license; however,
|
Chris@4
|
37 * the PortAudio community also makes the following non-binding requests:
|
Chris@4
|
38 *
|
Chris@4
|
39 * Any person wishing to distribute modifications to the Software is
|
Chris@4
|
40 * requested to send the modifications to the original developer so that
|
Chris@4
|
41 * they can be incorporated into the canonical version. It is also
|
Chris@4
|
42 * requested that these non-binding requests be included along with the
|
Chris@4
|
43 * license above.
|
Chris@4
|
44 */
|
Chris@4
|
45
|
Chris@4
|
46 #include <stdio.h>
|
Chris@4
|
47 #include <math.h>
|
Chris@4
|
48 #include "portaudio.h"
|
Chris@4
|
49
|
Chris@4
|
50 #define MAX_SINES (1000)
|
Chris@4
|
51 #define MAX_LOAD (1.2)
|
Chris@4
|
52 #define SAMPLE_RATE (44100)
|
Chris@4
|
53 #define FRAMES_PER_BUFFER (512)
|
Chris@4
|
54 #ifndef M_PI
|
Chris@4
|
55 #define M_PI (3.14159265)
|
Chris@4
|
56 #endif
|
Chris@4
|
57 #define TWOPI (M_PI * 2.0)
|
Chris@4
|
58
|
Chris@4
|
59 typedef struct paTestData
|
Chris@4
|
60 {
|
Chris@4
|
61 int numSines;
|
Chris@4
|
62 double phases[MAX_SINES];
|
Chris@4
|
63 }
|
Chris@4
|
64 paTestData;
|
Chris@4
|
65
|
Chris@4
|
66 /* This routine will be called by the PortAudio engine when audio is needed.
|
Chris@4
|
67 ** It may called at interrupt level on some machines so don't do anything
|
Chris@4
|
68 ** that could mess up the system like calling malloc() or free().
|
Chris@4
|
69 */
|
Chris@4
|
70 static int patestCallback( const void *inputBuffer, void *outputBuffer,
|
Chris@4
|
71 unsigned long framesPerBuffer,
|
Chris@4
|
72 const PaStreamCallbackTimeInfo* timeInfo,
|
Chris@4
|
73 PaStreamCallbackFlags statusFlags,
|
Chris@4
|
74 void *userData )
|
Chris@4
|
75 {
|
Chris@4
|
76 paTestData *data = (paTestData*)userData;
|
Chris@4
|
77 float *out = (float*)outputBuffer;
|
Chris@4
|
78 unsigned long i;
|
Chris@4
|
79 int j;
|
Chris@4
|
80 int finished = 0;
|
Chris@4
|
81 (void) inputBuffer; /* Prevent unused variable warning. */
|
Chris@4
|
82
|
Chris@4
|
83 for( i=0; i<framesPerBuffer; i++ )
|
Chris@4
|
84 {
|
Chris@4
|
85 float output = 0.0;
|
Chris@4
|
86 double phaseInc = 0.02;
|
Chris@4
|
87 double phase;
|
Chris@4
|
88 for( j=0; j<data->numSines; j++ )
|
Chris@4
|
89 {
|
Chris@4
|
90 /* Advance phase of next oscillator. */
|
Chris@4
|
91 phase = data->phases[j];
|
Chris@4
|
92 phase += phaseInc;
|
Chris@4
|
93 if( phase > TWOPI ) phase -= TWOPI;
|
Chris@4
|
94
|
Chris@4
|
95 phaseInc *= 1.02;
|
Chris@4
|
96 if( phaseInc > 0.5 ) phaseInc *= 0.5;
|
Chris@4
|
97
|
Chris@4
|
98 /* This is not a very efficient way to calc sines. */
|
Chris@4
|
99 output += (float) sin( phase );
|
Chris@4
|
100 data->phases[j] = phase;
|
Chris@4
|
101 }
|
Chris@4
|
102 *out++ = (float) (output / data->numSines);
|
Chris@4
|
103 }
|
Chris@4
|
104 return finished;
|
Chris@4
|
105 }
|
Chris@4
|
106
|
Chris@4
|
107 /*******************************************************************/
|
Chris@4
|
108 int main(void);
|
Chris@4
|
109 int main(void)
|
Chris@4
|
110 {
|
Chris@4
|
111 PaStreamParameters outputParameters;
|
Chris@4
|
112 PaStream *stream;
|
Chris@4
|
113 PaError err;
|
Chris@4
|
114 int numStress;
|
Chris@4
|
115 paTestData data = {0};
|
Chris@4
|
116 double load;
|
Chris@4
|
117
|
Chris@4
|
118 printf("PortAudio Test: output sine wave. SR = %d, BufSize = %d. MAX_LOAD = %f\n",
|
Chris@4
|
119 SAMPLE_RATE, FRAMES_PER_BUFFER, MAX_LOAD );
|
Chris@4
|
120
|
Chris@4
|
121 err = Pa_Initialize();
|
Chris@4
|
122 if( err != paNoError ) goto error;
|
Chris@4
|
123
|
Chris@4
|
124 outputParameters.device = Pa_GetDefaultOutputDevice(); /* default output device */
|
Chris@4
|
125 if (outputParameters.device == paNoDevice) {
|
Chris@4
|
126 fprintf(stderr,"Error: No default output device.\n");
|
Chris@4
|
127 goto error;
|
Chris@4
|
128 }
|
Chris@4
|
129 outputParameters.channelCount = 1; /* mono output */
|
Chris@4
|
130 outputParameters.sampleFormat = paFloat32; /* 32 bit floating point output */
|
Chris@4
|
131 outputParameters.suggestedLatency = Pa_GetDeviceInfo( outputParameters.device )->defaultLowOutputLatency;
|
Chris@4
|
132 outputParameters.hostApiSpecificStreamInfo = NULL;
|
Chris@4
|
133
|
Chris@4
|
134 err = Pa_OpenStream(
|
Chris@4
|
135 &stream,
|
Chris@4
|
136 NULL, /* no input */
|
Chris@4
|
137 &outputParameters,
|
Chris@4
|
138 SAMPLE_RATE,
|
Chris@4
|
139 FRAMES_PER_BUFFER,
|
Chris@4
|
140 paClipOff, /* we won't output out of range samples so don't bother clipping them */
|
Chris@4
|
141 patestCallback,
|
Chris@4
|
142 &data );
|
Chris@4
|
143 if( err != paNoError ) goto error;
|
Chris@4
|
144 err = Pa_StartStream( stream );
|
Chris@4
|
145 if( err != paNoError ) goto error;
|
Chris@4
|
146
|
Chris@4
|
147 /* Determine number of sines required to get to 50% */
|
Chris@4
|
148 do
|
Chris@4
|
149 { Pa_Sleep( 100 );
|
Chris@4
|
150
|
Chris@4
|
151 load = Pa_GetStreamCpuLoad( stream );
|
Chris@4
|
152 printf("numSines = %d, CPU load = %f\n", data.numSines, load );
|
Chris@4
|
153
|
Chris@4
|
154 if( load < 0.3 )
|
Chris@4
|
155 {
|
Chris@4
|
156 data.numSines += 10;
|
Chris@4
|
157 }
|
Chris@4
|
158 else if( load < 0.4 )
|
Chris@4
|
159 {
|
Chris@4
|
160 data.numSines += 2;
|
Chris@4
|
161 }
|
Chris@4
|
162 else
|
Chris@4
|
163 {
|
Chris@4
|
164 data.numSines += 1;
|
Chris@4
|
165 }
|
Chris@4
|
166
|
Chris@4
|
167 }
|
Chris@4
|
168 while( load < 0.5 );
|
Chris@4
|
169
|
Chris@4
|
170 /* Calculate target stress value then ramp up to that level*/
|
Chris@4
|
171 numStress = (int) (2.0 * data.numSines * MAX_LOAD );
|
Chris@4
|
172 if( numStress > MAX_SINES )
|
Chris@4
|
173 numStress = MAX_SINES;
|
Chris@4
|
174 for( ; data.numSines < numStress; data.numSines+=2 )
|
Chris@4
|
175 {
|
Chris@4
|
176 Pa_Sleep( 200 );
|
Chris@4
|
177 load = Pa_GetStreamCpuLoad( stream );
|
Chris@4
|
178 printf("STRESSING: numSines = %d, CPU load = %f\n", data.numSines, load );
|
Chris@4
|
179 }
|
Chris@4
|
180
|
Chris@4
|
181 printf("Suffer for 5 seconds.\n");
|
Chris@4
|
182 Pa_Sleep( 5000 );
|
Chris@4
|
183
|
Chris@4
|
184 printf("Stop stream.\n");
|
Chris@4
|
185 err = Pa_StopStream( stream );
|
Chris@4
|
186 if( err != paNoError ) goto error;
|
Chris@4
|
187
|
Chris@4
|
188 err = Pa_CloseStream( stream );
|
Chris@4
|
189 if( err != paNoError ) goto error;
|
Chris@4
|
190
|
Chris@4
|
191 Pa_Terminate();
|
Chris@4
|
192 printf("Test finished.\n");
|
Chris@4
|
193 return err;
|
Chris@4
|
194 error:
|
Chris@4
|
195 Pa_Terminate();
|
Chris@4
|
196 fprintf( stderr, "An error occured while using the portaudio stream\n" );
|
Chris@4
|
197 fprintf( stderr, "Error number: %d\n", err );
|
Chris@4
|
198 fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
|
Chris@4
|
199 return err;
|
Chris@4
|
200 }
|