summaryrefslogtreecommitdiff
path: root/drivers/portaudio/portaudio_driver.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-02-23 10:15:45 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-02-23 10:15:45 -0500
commitc758cdf4f6e959b92683f2dba6ce8617ac4f0a83 (patch)
tree36e2664048b4ba9d6925b33281afcab2a0aab53d /drivers/portaudio/portaudio_driver.h
parent25786b77b700abbcce664e7e39504a2b0dd1f0c8 (diff)
downloadjack1-c758cdf4f6e959b92683f2dba6ce8617ac4f0a83.tar.gz
uncrustification of jack source code
Diffstat (limited to 'drivers/portaudio/portaudio_driver.h')
-rw-r--r--drivers/portaudio/portaudio_driver.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/drivers/portaudio/portaudio_driver.h b/drivers/portaudio/portaudio_driver.h
index 55df853..778f4f6 100644
--- a/drivers/portaudio/portaudio_driver.h
+++ b/drivers/portaudio/portaudio_driver.h
@@ -14,10 +14,10 @@
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., 675 Mass Ave, Cambridge, MA 02139, USA.
-
+
Grame Research Laboratory, 9, rue du Garet 69001 Lyon - France
grame@rd.grame.fr
-*/
+ */
#ifndef __jack_portaudio_driver_h__
#define __jack_portaudio_driver_h__
@@ -35,27 +35,27 @@
typedef struct {
- JACK_DRIVER_DECL
+ JACK_DRIVER_DECL
- struct _jack_engine *engine;
+ struct _jack_engine *engine;
- jack_nframes_t frame_rate;
- jack_nframes_t frames_per_cycle;
- unsigned long user_nperiods;
- int capturing;
- int playing;
+ jack_nframes_t frame_rate;
+ jack_nframes_t frames_per_cycle;
+ unsigned long user_nperiods;
+ int capturing;
+ int playing;
- channel_t playback_nchannels;
- channel_t capture_nchannels;
+ channel_t playback_nchannels;
+ channel_t capture_nchannels;
- jack_client_t *client;
- JSList *capture_ports;
- JSList *playback_ports;
+ jack_client_t *client;
+ JSList *capture_ports;
+ JSList *playback_ports;
- float *inPortAudio;
- float *outPortAudio;
- char driver_name[256];
- PortAudioStream* stream;
+ float *inPortAudio;
+ float *outPortAudio;
+ char driver_name[256];
+ PortAudioStream* stream;
} portaudio_driver_t;