source: roaraudio/include/libroarsndio/sndiosym.h @ 1578:1d27931e80c1

Last change on this file since 1578:1d27931e80c1 was 1578:1d27931e80c1, checked in by phi, 15 years ago

set values more OpenBSD like

File size: 4.0 KB
Line 
1//sndiosym.h:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009
5 *  The code (may) include prototypes and comments (and maybe
6 *  other code fragements) from EsounD.
7 *  They are mostly copyrighted by Eric B. Mitchell (aka 'Ricdude)
8 *  <ericmit@ix.netcom.com>. For more information see AUTHORS.esd.
9 *
10 *  This file is part of libroaresd a part of RoarAudio,
11 *  a cross-platform sound system for both, home and professional use.
12 *  See README for details.
13 *
14 *  This file is free software; you can redistribute it and/or modify
15 *  it under the terms of the GNU General Public License version 3
16 *  as published by the Free Software Foundation.
17 *
18 *  RoarAudio is distributed in the hope that it will be useful,
19 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 *  GNU General Public License for more details.
22 *
23 *  You should have received a copy of the GNU General Public License
24 *  along with this software; see the file COPYING.  If not, write to
25 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 *
27 *  NOTE for everyone want's to change something and send patches:
28 *  read README and HACKING! There a addition information on
29 *  the license of this document you need to read before you send
30 *  any patches.
31 */
32
33#ifndef _LIBROARSNDIO_SNDIOSYM_H_
34#define _LIBROARSNDIO_SNDIOSYM_H_
35
36#include <roaraudio.h>
37
38#ifdef ROAR_HAVE_H_POLL
39#include <poll.h>
40#else
41struct pollfd;
42#endif
43
44#define SIO_PLAY        1
45#define SIO_REC         2
46
47#define SIO_IGNORE      0       /* pause during xrun */
48#define SIO_SYNC        1       /* resync after xrun */
49#define SIO_ERROR       2       /* terminate on xrun */
50#define SIO_XSTRINGS    {"ignore", "sync", "error"}
51
52#define SIO_NENC        8
53#define SIO_NCHAN       8
54#define SIO_NRATE       16
55#define SIO_NCONF       4
56
57#define SIO_ENCMAX      10
58
59#if BYTE_ORDER == BIG_ENDIAN && !defined(ROAR_TARGET_WIN32)
60#define SIO_LE_NATIVE   0
61#else
62#if BYTE_ORDER == LITTLE_ENDIAN
63#define SIO_LE_NATIVE   1
64#else
65#error Byte Order of this system is not supported within the sndio interface.
66#endif
67#endif
68
69#define SIO_BPS(bits) (((bits) <= 8) ? 1 : (((bits) <= 16) ? 2 : 4))
70
71#define SIO_SUN_PATH    NULL
72#define SIO_AUCAT_PATH  NULL
73
74#define SIO_MAXVOL 127
75
76
77struct sio_par {
78 unsigned bits;          /* bits per sample */
79 unsigned bps;           /* bytes per sample */
80 unsigned sig;           /* 1 = signed, 0 = unsigned */
81 unsigned le;            /* 1 = LE, 0 = BE byte order */
82 unsigned msb;           /* 1 = MSB, 0 = LSB aligned */
83 unsigned rchan;         /* number channels for recording */
84 unsigned pchan;         /* number channels for playback */
85 unsigned rate;          /* frames per second */
86 unsigned appbufsz;      /* minimum buffer size without xruns */
87 unsigned bufsz;         /* end-to-end buffer size (read-only) */
88 unsigned round;         /* optimal buffer size divisor */
89 unsigned xrun;          /* what to do on overrun/underrun */
90};
91
92struct sio_cap;
93
94struct sio_hdl * sio_open(char * name, unsigned mode, int nbio_flag);
95void   sio_close  (struct sio_hdl * hdl);
96
97void   sio_initpar(struct sio_par * par);
98int    sio_setpar (struct sio_hdl * hdl, struct sio_par * par);
99int    sio_getpar (struct sio_hdl * hdl, struct sio_par * par);
100
101int    sio_getcap (struct sio_hdl * hdl, struct sio_cap * cap);
102
103int    sio_start  (struct sio_hdl * hdl);
104int    sio_stop   (struct sio_hdl * hdl);
105
106size_t sio_read   (struct sio_hdl * hdl, void * addr, size_t nbytes);
107size_t sio_write  (struct sio_hdl * hdl, void * addr, size_t nbytes);
108
109void   sio_onmove (struct sio_hdl * hdl, void (*cb)(void * arg, int delta), void * arg);
110
111int    sio_nfds   (struct sio_hdl * hdl);
112
113int    sio_pollfd (struct sio_hdl * hdl, struct pollfd * pfd, int events);
114
115int    sio_revents(struct sio_hdl * hdl, struct pollfd * pfd);
116
117int    sio_eof    (struct sio_hdl * hdl);
118
119int    sio_setvol (struct sio_hdl * hdl, unsigned vol);
120void   sio_onvol  (struct sio_hdl * hdl, void (*cb)(void * arg, unsigned vol), void * arg);
121
122#endif
123
124//ll
Note: See TracBrowser for help on using the repository browser.