annotate src/portaudio_20161030_catalina_patch/test/patest_leftright.c @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents d43aab368df9
children
rev   line source
cannam@162 1 /** @file patest_leftright.c
cannam@162 2 @ingroup test_src
cannam@162 3 @brief Play different tone sine waves that
cannam@162 4 alternate between left and right channel.
cannam@162 5
cannam@162 6 The low tone should be on the left channel.
cannam@162 7
cannam@162 8 @author Ross Bencina <rossb@audiomulch.com>
cannam@162 9 @author Phil Burk <philburk@softsynth.com>
cannam@162 10 */
cannam@162 11 /*
cannam@162 12 * $Id$
cannam@162 13 *
cannam@162 14 * This program uses the PortAudio Portable Audio Library.
cannam@162 15 * For more information see: http://www.portaudio.com
cannam@162 16 * Copyright (c) 1999-2000 Ross Bencina and Phil Burk
cannam@162 17 *
cannam@162 18 * Permission is hereby granted, free of charge, to any person obtaining
cannam@162 19 * a copy of this software and associated documentation files
cannam@162 20 * (the "Software"), to deal in the Software without restriction,
cannam@162 21 * including without limitation the rights to use, copy, modify, merge,
cannam@162 22 * publish, distribute, sublicense, and/or sell copies of the Software,
cannam@162 23 * and to permit persons to whom the Software is furnished to do so,
cannam@162 24 * subject to the following conditions:
cannam@162 25 *
cannam@162 26 * The above copyright notice and this permission notice shall be
cannam@162 27 * included in all copies or substantial portions of the Software.
cannam@162 28 *
cannam@162 29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
cannam@162 30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
cannam@162 31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
cannam@162 32 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
cannam@162 33 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
cannam@162 34 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
cannam@162 35 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
cannam@162 36 */
cannam@162 37
cannam@162 38 /*
cannam@162 39 * The text above constitutes the entire PortAudio license; however,
cannam@162 40 * the PortAudio community also makes the following non-binding requests:
cannam@162 41 *
cannam@162 42 * Any person wishing to distribute modifications to the Software is
cannam@162 43 * requested to send the modifications to the original developer so that
cannam@162 44 * they can be incorporated into the canonical version. It is also
cannam@162 45 * requested that these non-binding requests be included along with the
cannam@162 46 * license above.
cannam@162 47 */
cannam@162 48
cannam@162 49 #include <stdio.h>
cannam@162 50 #include <math.h>
cannam@162 51 #include "portaudio.h"
cannam@162 52
cannam@162 53 #define NUM_SECONDS (8)
cannam@162 54 #define SAMPLE_RATE (44100)
cannam@162 55 #define FRAMES_PER_BUFFER (512)
cannam@162 56 #ifndef M_PI
cannam@162 57 #define M_PI (3.14159265)
cannam@162 58 #endif
cannam@162 59 #define TABLE_SIZE (200)
cannam@162 60 #define BALANCE_DELTA (0.001)
cannam@162 61
cannam@162 62 typedef struct
cannam@162 63 {
cannam@162 64 float sine[TABLE_SIZE];
cannam@162 65 int left_phase;
cannam@162 66 int right_phase;
cannam@162 67 float targetBalance; // 0.0 = left, 1.0 = right
cannam@162 68 float currentBalance;
cannam@162 69 } paTestData;
cannam@162 70
cannam@162 71 /* This routine will be called by the PortAudio engine when audio is needed.
cannam@162 72 ** It may called at interrupt level on some machines so don't do anything
cannam@162 73 ** that could mess up the system like calling malloc() or free().
cannam@162 74 */
cannam@162 75 static int patestCallback( const void *inputBuffer,
cannam@162 76 void *outputBuffer,
cannam@162 77 unsigned long framesPerBuffer,
cannam@162 78 const PaStreamCallbackTimeInfo* timeInfo,
cannam@162 79 PaStreamCallbackFlags statusFlags,
cannam@162 80 void *userData )
cannam@162 81 {
cannam@162 82 paTestData *data = (paTestData*)userData;
cannam@162 83 float *out = (float*)outputBuffer;
cannam@162 84 unsigned long i;
cannam@162 85 int finished = 0;
cannam@162 86 /* Prevent unused variable warnings. */
cannam@162 87 (void) inputBuffer;
cannam@162 88
cannam@162 89 for( i=0; i<framesPerBuffer; i++ )
cannam@162 90 {
cannam@162 91 // Smoothly pan between left and right.
cannam@162 92 if( data->currentBalance < data->targetBalance )
cannam@162 93 {
cannam@162 94 data->currentBalance += BALANCE_DELTA;
cannam@162 95 }
cannam@162 96 else if( data->currentBalance > data->targetBalance )
cannam@162 97 {
cannam@162 98 data->currentBalance -= BALANCE_DELTA;
cannam@162 99 }
cannam@162 100 // Apply left/right balance.
cannam@162 101 *out++ = data->sine[data->left_phase] * (1.0f - data->currentBalance); /* left */
cannam@162 102 *out++ = data->sine[data->right_phase] * data->currentBalance; /* right */
cannam@162 103
cannam@162 104 data->left_phase += 1;
cannam@162 105 if( data->left_phase >= TABLE_SIZE ) data->left_phase -= TABLE_SIZE;
cannam@162 106 data->right_phase += 3; /* higher pitch so we can distinguish left and right. */
cannam@162 107 if( data->right_phase >= TABLE_SIZE ) data->right_phase -= TABLE_SIZE;
cannam@162 108 }
cannam@162 109
cannam@162 110 return finished;
cannam@162 111 }
cannam@162 112
cannam@162 113 /*******************************************************************/
cannam@162 114 int main(void);
cannam@162 115 int main(void)
cannam@162 116 {
cannam@162 117 PaStream *stream;
cannam@162 118 PaStreamParameters outputParameters;
cannam@162 119 PaError err;
cannam@162 120 paTestData data;
cannam@162 121 int i;
cannam@162 122 printf("Play different tone sine waves that alternate between left and right channel.\n");
cannam@162 123 printf("The low tone should be on the left channel.\n");
cannam@162 124
cannam@162 125 /* initialise sinusoidal wavetable */
cannam@162 126 for( i=0; i<TABLE_SIZE; i++ )
cannam@162 127 {
cannam@162 128 data.sine[i] = (float) sin( ((double)i/(double)TABLE_SIZE) * M_PI * 2. );
cannam@162 129 }
cannam@162 130 data.left_phase = data.right_phase = 0;
cannam@162 131 data.currentBalance = 0.0;
cannam@162 132 data.targetBalance = 0.0;
cannam@162 133
cannam@162 134 err = Pa_Initialize();
cannam@162 135 if( err != paNoError ) goto error;
cannam@162 136
cannam@162 137 outputParameters.device = Pa_GetDefaultOutputDevice(); /* default output device */
cannam@162 138 if (outputParameters.device == paNoDevice) {
cannam@162 139 fprintf(stderr,"Error: No default output device.\n");
cannam@162 140 goto error;
cannam@162 141 }
cannam@162 142 outputParameters.channelCount = 2; /* stereo output */
cannam@162 143 outputParameters.sampleFormat = paFloat32; /* 32 bit floating point output */
cannam@162 144 outputParameters.suggestedLatency = Pa_GetDeviceInfo( outputParameters.device )->defaultLowOutputLatency;
cannam@162 145 outputParameters.hostApiSpecificStreamInfo = NULL;
cannam@162 146
cannam@162 147 err = Pa_OpenStream( &stream,
cannam@162 148 NULL, /* No input. */
cannam@162 149 &outputParameters, /* As above. */
cannam@162 150 SAMPLE_RATE,
cannam@162 151 FRAMES_PER_BUFFER,
cannam@162 152 paClipOff, /* we won't output out of range samples so don't bother clipping them */
cannam@162 153 patestCallback,
cannam@162 154 &data );
cannam@162 155 if( err != paNoError ) goto error;
cannam@162 156
cannam@162 157 err = Pa_StartStream( stream );
cannam@162 158 if( err != paNoError ) goto error;
cannam@162 159
cannam@162 160 printf("Play for several seconds.\n");
cannam@162 161 for( i=0; i<4; i++ )
cannam@162 162 {
cannam@162 163 printf("Hear low sound on left side.\n");
cannam@162 164 data.targetBalance = 0.01;
cannam@162 165 Pa_Sleep( 1000 );
cannam@162 166
cannam@162 167 printf("Hear high sound on right side.\n");
cannam@162 168 data.targetBalance = 0.99;
cannam@162 169 Pa_Sleep( 1000 );
cannam@162 170 }
cannam@162 171
cannam@162 172 err = Pa_StopStream( stream );
cannam@162 173 if( err != paNoError ) goto error;
cannam@162 174 err = Pa_CloseStream( stream );
cannam@162 175 if( err != paNoError ) goto error;
cannam@162 176 Pa_Terminate();
cannam@162 177 printf("Test finished.\n");
cannam@162 178 return err;
cannam@162 179 error:
cannam@162 180 Pa_Terminate();
cannam@162 181 fprintf( stderr, "An error occured while using the portaudio stream\n" );
cannam@162 182 fprintf( stderr, "Error number: %d\n", err );
cannam@162 183 fprintf( stderr, "Error message: %s\n", Pa_GetErrorText( err ) );
cannam@162 184 return err;
cannam@162 185 }