Better isolation of server and clients system resources to allow starting the server...
[jack2.git] / common / JackAudioAdapter.h
blobeab6ba3d45323972f62b14666a2b4c5fa1b055fa
1 /*
2 Copyright (C) 2008 Grame
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __JackAudioAdapter__
21 #define __JackAudioAdapter__
23 #include "JackAudioAdapterInterface.h"
25 namespace Jack
28 /*!
29 \brief Audio adapter : Jack client side.
32 class JackAudioAdapter
34 private:
36 static int Process ( jack_nframes_t, void* arg );
37 static int BufferSize ( jack_nframes_t buffer_size, void *arg );
38 static int SampleRate ( jack_nframes_t sample_rate, void *arg );
40 int fCaptureChannels;
41 int fPlaybackChannels;
43 JackResampler** fCaptureRingBuffer;
44 JackResampler** fPlaybackRingBuffer;
46 jack_port_t** fCapturePortList;
47 jack_port_t** fPlaybackPortList;
49 jack_client_t* fJackClient;
50 JackAudioAdapterInterface* fAudioAdapter;
52 void FreePorts();
53 void Reset();
55 public:
57 JackAudioAdapter ( jack_client_t* jack_client, JackAudioAdapterInterface* audio_io ) :
58 fJackClient ( jack_client ), fAudioAdapter ( audio_io )
60 ~JackAudioAdapter();
62 int Open();
63 int Close();
68 #endif