source: roaraudio/roard/include/roard.h @ 2945:4ee3f04d27dd

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

added dummy files (waveform.[ch]) for waveform subsystem

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