2 Copyright (C) 2008 Grame & RTL 2008
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 __JackOSSAdapter__
21 #define __JackOSSAdapter__
26 #include "JackAudioAdapterInterface.h"
27 #include "JackPlatformPlug.h"
28 #include "JackError.h"
35 typedef jack_default_audio_sample_t jack_sample_t
;
37 #define OSS_DRIVER_DEF_DEV "/dev/dsp"
38 #define OSS_DRIVER_DEF_FS 48000
39 #define OSS_DRIVER_DEF_BLKSIZE 1024
40 #define OSS_DRIVER_DEF_NPERIODS 2
41 #define OSS_DRIVER_DEF_BITS 16
42 #define OSS_DRIVER_DEF_INS 2
43 #define OSS_DRIVER_DEF_OUTS 2
46 \brief The OSS adapter.
49 class JackOSSAdapter
: public JackAudioAdapterInterface
, public JackRunnableInterface
52 enum { kRead
= 1, kWrite
= 2, kReadWrite
= 3 };
58 char fCaptureDriverName
[JACK_CLIENT_NAME_SIZE
+1];
59 char fPlaybackDriverName
[JACK_CLIENT_NAME_SIZE
+1];
67 unsigned int fSampleSize
;
72 unsigned int fInputBufferSize
;
73 unsigned int fOutputBufferSize
;
78 float** fInputSampleBuffer
;
79 float** fOutputSampleBuffer
;
86 void SetSampleFormat();
87 void DisplayDeviceInfo();
91 JackOSSAdapter(jack_nframes_t buffer_size
, jack_nframes_t sample_rate
, const JSList
* params
);
101 int SetBufferSize(jack_nframes_t buffer_size
);
113 #include "JackCompilerDeps.h"
114 #include "driver_interface.h"
116 SERVER_EXPORT jack_driver_desc_t
* jack_get_descriptor();