File: driver_muroar.c

package info (click to toggle)
muroard 0.1.14-6
  • links: PTS
  • area: main
  • in suites: buster
  • size: 460 kB
  • sloc: ansic: 3,645; sh: 505; makefile: 117
file content (49 lines) | stat: -rw-r--r-- 1,756 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//driver_muroar.c:

/*
 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010-2013
 *
 *  This file is part of RoarD,
 *  a sound server daemon for using the RoarAudio protocol.
 *  See README for details.
 *
 *  This file is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 3
 *  or (at your option) any later version as published by
 *  the Free Software Foundation.
 *
 *  RoarAudio 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 software; see the file COPYING.  If not, write to
 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301, USA.
 *
 */

#include "muroard.h"

#define DRIVER_HAVE_INIT
#define DRIVER_USE_SYSIO

int muroard_driver_init(const char * dev) {

 if ( (muroard_state_member(driver_fh) = muroar_connect(dev, MUROARD_DEFAULT_DRIVER_CLIENT_NAME)) == -1 )
  return -1;

 if ( (muroard_state_member(driver_fh) = muroar_stream(muroard_state_member(driver_fh),
                                                       MUROAR_PLAY_WAVE,
                                                       NULL,
                                                       MUROAR_CODEC_PCM,
                                                       muroard_state_member(sa_rate),
                                                       muroard_state_member(sa_channels),
                                                       16)) == -1 )
  return -1;
 
 return 0;
}

//ll