source: roaraudio/roard/include/roard.h @ 2307:2af0ad655276

Last change on this file since 2307:2af0ad655276 was 2307:2af0ad655276, checked in by phi, 15 years ago

added _nBIT consts

File size: 3.1 KB
Line 
1//roard.h:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
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, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#ifndef _ROARD_H_
26#define _ROARD_H_
27
28// need to include this first as we need the config
29#include <roaraudio.h>
30#include <libroarlight/libroarlight.h>
31#include <libroareio/libroareio.h>
32
33
34#ifndef ROAR_TARGET_MICROCONTROLLER
35#include <signal.h>
36#endif
37
38#if defined(ROAR_HAVE_SELECT) && defined(ROAR_HAVE_H_SYS_SELECT)
39#include <sys/select.h>
40#endif
41
42#ifdef ROAR_HAVE_WAIT
43#include <sys/wait.h>
44#endif
45
46#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
47#include <pwd.h>
48#endif
49
50#ifndef ROAR_TARGET_MICROCONTROLLER
51#include <sys/time.h>
52#include <time.h>
53#endif
54
55#ifdef ROAR_HAVE_LIBSLP
56#include <slp.h>
57#endif
58
59/*
60#ifdef __linux__
61#include <linux/unistd.h>
62#include <linux/ioprio.h>
63#endif
64*/
65
66#define ROAR_SUBSYS_NONE          0x00
67#define ROAR_SUBSYS_WAVEFORM      0x01
68#define ROAR_SUBSYS_MIDI          0x02
69#define ROAR_SUBSYS_CB            0x04
70#define ROAR_SUBSYS_LIGHT         0x08
71#define ROAR_SUBSYS_RAW           0x10
72
73// some usefull macros:
74#define _8BIT  1
75#define _16BIT 2
76#define _24BIT 3
77#define _32BIT 4
78#define _64BIT 8
79
80//#include "buffer.h"
81#include "codecfilter.h"
82#include "client.h"
83#include "driver.h"
84#include "output.h"
85#include "mixer.h"
86//#include "convert.h"
87#include "streams.h"
88#include "network.h"
89#include "commands.h"
90#include "req.h"
91#include "sources.h"
92#include "sample.h"
93#include "meta.h"
94#include "midi.h"
95#include "light.h"
96#include "raw.h"
97#include "lib.h"
98
99
100int alive;
101#ifdef ROAR_SUPPORT_LISTEN
102int g_no_listen;
103#endif
104
105uint32_t g_pos; // current possition in output stream
106
107int g_standby;
108int g_autostandby;
109
110int main_loop (int driver, DRIVER_USERDATA_T driver_inst, struct roar_audio_info * sa, int sysclocksync);
111void cleanup_listen_socket (int terminate);
112void clean_quit (void);
113void clean_quit_prep (void);
114
115void on_sig_int (int signum);
116void on_sig_chld (int signum);
117void on_sig_usr1 (int signum);
118
119#ifdef ROAR_SUPPORT_LISTEN
120int g_listen_socket;
121#endif
122
123int g_self_client;
124
125int g_terminate;
126
127struct roar_audio_info * g_sa, * g_max_sa;
128
129struct roard_config {
130 uint32_t flags;
131 struct {
132  uint32_t flags;
133  struct roar_mixer_settings mixer;
134  int                        mixer_channels;
135 } streams[ROAR_DIR_DIRIDS];
136 char * location;
137} * g_config;
138
139#endif
140
141//ll
Note: See TracBrowser for help on using the repository browser.