summaryrefslogtreecommitdiff
path: root/drivers/oss/oss_driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/oss/oss_driver.h')
-rw-r--r--drivers/oss/oss_driver.h51
1 files changed, 25 insertions, 26 deletions
diff --git a/drivers/oss/oss_driver.h b/drivers/oss/oss_driver.h
index 5bdf12d..ace932f 100644
--- a/drivers/oss/oss_driver.h
+++ b/drivers/oss/oss_driver.h
@@ -1,24 +1,24 @@
/*
- OSS driver for Jack
- Copyright (C) 2003-2007 Jussi Laako <jussi@sonarnerd.net>
+ OSS driver for Jack
+ Copyright (C) 2003-2007 Jussi Laako <jussi@sonarnerd.net>
- This program 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 2 of the License, or
- (at your option) any later version.
+ This program 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 2 of the License, or
+ (at your option) any later version.
- 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 for more details.
+ 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 for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- MA 02111-1307 USA
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ MA 02111-1307 USA
-*/
+ */
#ifndef __JACK_OSS_DRIVER_H__
@@ -35,19 +35,18 @@
#include "driver.h"
-#define OSS_DRIVER_DEF_DEV "/dev/dsp"
-#define OSS_DRIVER_DEF_FS 48000
-#define OSS_DRIVER_DEF_BLKSIZE 1024
-#define OSS_DRIVER_DEF_NPERIODS 2
-#define OSS_DRIVER_DEF_BITS 16
-#define OSS_DRIVER_DEF_INS 2
-#define OSS_DRIVER_DEF_OUTS 2
+#define OSS_DRIVER_DEF_DEV "/dev/dsp"
+#define OSS_DRIVER_DEF_FS 48000
+#define OSS_DRIVER_DEF_BLKSIZE 1024
+#define OSS_DRIVER_DEF_NPERIODS 2
+#define OSS_DRIVER_DEF_BITS 16
+#define OSS_DRIVER_DEF_INS 2
+#define OSS_DRIVER_DEF_OUTS 2
typedef jack_default_audio_sample_t jack_sample_t;
-typedef struct _oss_driver
-{
+typedef struct _oss_driver {
JACK_DRIVER_DECL
jack_nframes_t sample_rate;
@@ -89,9 +88,9 @@ typedef struct _oss_driver
pthread_t thread_out;
pthread_mutex_t mutex_in;
pthread_mutex_t mutex_out;
-# ifdef USE_BARRIER
+# ifdef USE_BARRIER
pthread_barrier_t barrier;
-# endif
+# endif
sem_t sem_start;
} oss_driver_t;