/* AlsaEngine.h Copyright 2009, Alan Calvert 2010, Mark McCurry This file is part of ZynAddSubFX, which is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ZynAddSubFX 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 for more details. You should have received a copy of the GNU General Public License along with ZynAddSubFX. If not, see . */ #ifndef ALSA_ENGINE_H #define ALSA_ENGINE_H #include #include #include #include #include "AudioOut.h" #include "MidiIn.h" #include "OutMgr.h" #include "../Misc/Stereo.h" class AlsaEngine:public AudioOut, MidiIn { public: AlsaEngine(); ~AlsaEngine(); bool Start(); void Stop(); void setAudioEn(bool nval); bool getAudioEn() const; void setMidiEn(bool nval); bool getMidiEn() const; protected: void *AudioThread(); static void *_AudioThread(void *arg); void *MidiThread(); static void *_MidiThread(void *arg); private: bool openMidi(); void stopMidi(); bool openAudio(); void stopAudio(); short *interleave(const Stereo &smps); struct { std::string device; snd_seq_t *handle; int alsaId; pthread_t pThread; } midi; struct { snd_pcm_t *handle; snd_pcm_hw_params_t *params; unsigned int sampleRate; snd_pcm_uframes_t frames; unsigned int periods; short *buffer; pthread_t pThread; } audio; void *processAudio(); }; #endif