source: roaraudio/roard/include/roard.h @ 1609:3c2a3f0fb127

Last change on this file since 1609:3c2a3f0fb127 was 1609:3c2a3f0fb127, checked in by phi, 15 years ago

started support for server config including default flags and mixer for individuel stream types/dirs

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 "lib.h"
77
78
79int alive;
80#ifdef ROAR_SUPPORT_LISTEN
81int g_no_listen;
82#endif
83
84uint32_t g_pos; // current possition in output stream
85
86int g_standby;
87int g_autostandby;
88
89int main_loop (int driver, DRIVER_USERDATA_T driver_inst, struct roar_audio_info * sa, int sysclocksync);
90void cleanup_listen_socket (int terminate);
91void clean_quit (void);
92void clean_quit_prep (void);
93
94void on_sig_int (int signum);
95void on_sig_chld (int signum);
96
97#ifdef ROAR_SUPPORT_LISTEN
98int g_listen_socket;
99#endif
100
101int g_self_client;
102
103int g_terminate;
104
105struct roar_audio_info * g_sa, * g_max_sa;
106
107struct roard_config {
108 uint32_t flags;
109 struct {
110  uint32_t flags;
111  struct roar_mixer_settings mixer;
112  int                        mixer_channels;
113 } streams[ROAR_DIR_DIRIDS];
114} * g_config;
115
116#endif
117
118//ll
Note: See TracBrowser for help on using the repository browser.