source: roaraudio/libroarsndio/libroarsndio.c @ 1566:952d80a40019

Last change on this file since 1566:952d80a40019 was 1560:c7f40b469c33, checked in by phi, 15 years ago

wrote some basic calls

File size: 2.3 KB
Line 
1//libroarsndio.c:
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#include "libroarsndio.h"
34
35struct sio_hdl * sio_open(char * name, unsigned mode, int nbio_flag) {
36 struct sio_hdl * hdl = NULL;
37
38 if ( mode != SIO_PLAY ) /* currently we only support playback */
39  return NULL;
40
41 if ( (hdl = malloc(sizeof(struct sio_hdl))) == NULL )
42  return NULL;
43
44 memset(hdl, 0, sizeof(struct sio_hdl));
45
46 sio_initpar(&(hdl->para));
47
48 hdl->fh = -1;
49
50 if ( name != NULL )
51  hdl->device = strdup(name);
52
53 return hdl;
54}
55
56void   sio_close  (struct sio_hdl * hdl) {
57 if ( hdl == NULL )
58  return;
59
60 if ( hdl->fh == -1 )
61  close(hdl->fh);
62
63 free(hdl);
64}
65
66int    sio_eof    (struct sio_hdl * hdl) {
67 return 0;
68}
69
70void   sio_onmove (struct sio_hdl * hdl, void (*cb)(void * arg, int delta), void * arg) {
71 if ( hdl == NULL )
72  return;
73
74 hdl->on_move     = cb;
75 hdl->on_move_arg = arg;
76}
77
78void   sio_onvol  (struct sio_hdl * hdl, void (*cb)(void * arg, unsigned vol), void * arg) {
79 if ( hdl == NULL )
80  return;
81
82 hdl->on_vol     = cb;
83 hdl->on_vol_arg = arg;
84}
85
86//ll
Note: See TracBrowser for help on using the repository browser.