File: para.h

package info (click to toggle)
muroard 0.1.0-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 356 kB
  • ctags: 307
  • sloc: ansic: 2,017; sh: 340; makefile: 83
file content (57 lines) | stat: -rw-r--r-- 1,747 bytes parent folder | download
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
50
51
52
53
54
55
56
57
//para.h:

/*
 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010
 *
 *  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.
 *
 */

/*
 * This header contains the declarations for all run-time options/parameters
 */

#ifndef _MUROARD_PARA_H_
#define _MUROARD_PARA_H_

/*********************************************************/
/* audio config                                          */
/*********************************************************/

int g_sa_rate;
int g_sa_channels;

/*********************************************************/
/* mixer config                                          */
/*********************************************************/

size_t g_abuffer_size;

/*********************************************************/
/* network config                                        */
/*********************************************************/

#ifdef MUROAR_FEATURE_SOCKET_LISTEN
int g_listen_socket;
#endif

#endif

//ll