source: roaraudio/roard/include/roard.h @ 1816:4f814a7c9131

Last change on this file since 1816:4f814a7c9131 was 1816:4f814a7c9131, checked in by phi, 15 years ago

added light.[ch]

File size: 2.5 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
31
32#ifndef ROAR_TARGET_MICROCONTROLLER
33#include <signal.h>
34#endif
35
36#if defined(ROAR_HAVE_SELECT) && defined(ROAR_HAVE_H_SYS_SELECT)
37#include <sys/select.h>
38#endif
39
40#ifdef ROAR_HAVE_WAIT
41#include <sys/wait.h>
42#endif
43
44#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
45#include <pwd.h>
46#endif
47
48#ifndef ROAR_TARGET_MICROCONTROLLER
49#include <sys/time.h>
50#include <time.h>
51#endif
52
53/*
54#ifdef __linux__
55#include <linux/unistd.h>
56#include <linux/ioprio.h>
57#endif
58*/
59
60
61//#include "buffer.h"
62#include "codecfilter.h"
63#include "client.h"
64#include "driver.h"
65#include "output.h"
66#include "mixer.h"
67//#include "convert.h"
68#include "streams.h"
69#include "network.h"
70#include "commands.h"
71#include "req.h"
72#include "sources.h"
73#include "sample.h"
74#include "meta.h"
75#include "midi.h"
76#include "light.h"
77#include "lib.h"
78
79
80int alive;
81#ifdef ROAR_SUPPORT_LISTEN
82int g_no_listen;
83#endif
84
85uint32_t g_pos; // current possition in output stream
86
87int g_standby;
88int g_autostandby;
89
90int main_loop (int driver, DRIVER_USERDATA_T driver_inst, struct roar_audio_info * sa, int sysclocksync);
91void cleanup_listen_socket (int terminate);
92void clean_quit (void);
93void clean_quit_prep (void);
94
95void on_sig_int (int signum);
96void on_sig_chld (int signum);
97
98#ifdef ROAR_SUPPORT_LISTEN
99int g_listen_socket;
100#endif
101
102int g_self_client;
103
104int g_terminate;
105
106struct roar_audio_info * g_sa, * g_max_sa;
107
108struct roard_config {
109 uint32_t flags;
110 struct {
111  uint32_t flags;
112  struct roar_mixer_settings mixer;
113  int                        mixer_channels;
114 } streams[ROAR_DIR_DIRIDS];
115} * g_config;
116
117#endif
118
119//ll
Note: See TracBrowser for help on using the repository browser.