source: roaraudio/roard/include/driver_portaudio.h @ 4708:c9d40761088a

Last change on this file since 4708:c9d40761088a was 4708:c9d40761088a, checked in by phi, 13 years ago

updated copyright statements

File size: 2.6 KB
Line 
1//driver_portaudio.h:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010-2011
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#ifndef _DRIVER_PORTAUDIO_H_
27#define _DRIVER_PORTAUDIO_H_
28
29//#undef ROAR_HAVE_LIBPABLIO
30//#define ROAR_HAVE_LIBPORTAUDIO_V0_19
31
32#ifdef ROAR_HAVE_LIBPORTAUDIO
33#if defined(ROAR_HAVE_LIBPABLIO) || defined(ROAR_HAVE_LIBPORTAUDIO_V0_19)
34#define _DRIVER_PORTAUDIO_CAN_OPERATE
35#endif
36#endif
37
38#ifdef _DRIVER_PORTAUDIO_CAN_OPERATE
39
40struct driver_portaudio {
41#ifdef ROAR_HAVE_LIBPABLIO
42 PABLIO_Stream * ostream;
43#elif defined(ROAR_HAVE_LIBPORTAUDIO_V0_19)
44 PaStream *stream;
45 int framesize;
46#endif
47};
48
49typedef struct {
50/*
51 params.device                    = Pa_GetDefaultOutputDevice();
52 params.channelCount              = info->channels;
53 params.sampleFormat              = fmt;
54 params.suggestedLatency          = Pa_GetDeviceInfo(params.device)->defaultLowOutputLatency;
55 params.hostApiSpecificStreamInfo = NULL;
56*/
57 void * device;
58 int channelCount;
59 PaSampleFormat sampleFormat;
60 int suggestedLatency;
61 void * hostApiSpecificStreamInfo;
62} PaStreamParameters;
63
64#define paOutputUnderflowed -1
65
66void *  Pa_GetDefaultOutputDevice(void);
67// Pa_WriteStream(device->stream, buf, write_frames);
68PaError  Pa_WriteStream(PaStream * stream, void *, size_t);
69PaError Pa_StartStream(PaStream * stream);
70PaError Pa_StopStream(PaStream * stream);
71PaError Pa_CloseStream(PaStream * stream);
72
73int driver_portaudio_open(struct roar_vio_calls * inst, char * device, struct roar_audio_info * info, int fh, struct roar_stream_server * sstream);
74
75int     driver_portaudio_close        (struct roar_vio_calls * vio);
76ssize_t driver_portaudio_write        (struct roar_vio_calls * vio, void *buf, size_t count);
77int     driver_portaudio_sync         (struct roar_vio_calls * vio);
78int     driver_portaudio_ctl          (struct roar_vio_calls * vio, int cmd, void * data);
79
80#endif
81
82#endif
83
84//ll
Note: See TracBrowser for help on using the repository browser.