|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- ZynAddSubFX - a software synthesizer
-
- PaEngine.cpp - Audio output for PortAudio
- Copyright (C) 2002 Nasca Octavian Paul
- Author: Nasca Octavian Paul
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of version 2 of the GNU General Public License
- as published by the Free Software Foundation.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License (version 2 or later) for more details.
-
- You should have received a copy of the GNU General Public License (version 2)
- along with this program; if not, write to the Free Software Foundation,
- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
- */
-
- #include "PaEngine.h"
- #include <iostream>
-
- using namespace std;
-
- PaEngine::PaEngine()
- :stream(NULL)
- {
- name = "PA";
- }
-
-
- PaEngine::~PaEngine()
- {
- Stop();
- }
-
- bool PaEngine::Start()
- {
- if(getAudioEn())
- return true;
- Pa_Initialize();
-
- PaStreamParameters outputParameters;
- outputParameters.device = Pa_GetDefaultOutputDevice();
- if(outputParameters.device == paNoDevice) {
- cerr << "Error: No default output device." << endl;
- Pa_Terminate();
- return false;
- }
- outputParameters.channelCount = 2; /* stereo output */
- outputParameters.sampleFormat = paFloat32; /* 32 bit floating point output */
- outputParameters.suggestedLatency =
- Pa_GetDeviceInfo(outputParameters.device)->defaultLowOutputLatency;
- outputParameters.hostApiSpecificStreamInfo = NULL;
-
-
- Pa_OpenStream(&stream,
- NULL,
- &outputParameters,
- synth->samplerate,
- synth->buffersize,
- 0,
- PAprocess,
- (void *) this);
- Pa_StartStream(stream);
- return true;
- }
-
- void PaEngine::setAudioEn(bool nval)
- {
- if(nval)
- Start();
- else
- Stop();
- }
-
- bool PaEngine::getAudioEn() const
- {
- return stream;
- }
-
- int PaEngine::PAprocess(const void *inputBuffer,
- void *outputBuffer,
- unsigned long framesPerBuffer,
- const PaStreamCallbackTimeInfo *outTime,
- PaStreamCallbackFlags flags,
- void *userData)
- {
- (void) inputBuffer;
- (void) outTime;
- (void) flags;
- return static_cast<PaEngine *>(userData)->process((float *) outputBuffer,
- framesPerBuffer);
- }
-
- int PaEngine::process(float *out, unsigned long framesPerBuffer)
- {
- const Stereo<float *> smp = getNext();
- for(unsigned i = 0; i < framesPerBuffer; ++i) {
- *out++ = smp.l[i];
- *out++ = smp.r[i];
- }
-
- return 0;
- }
-
- void PaEngine::Stop()
- {
- if(!getAudioEn())
- return;
- Pa_StopStream(stream);
- Pa_CloseStream(stream);
- stream = NULL;
- Pa_Terminate();
- }
|