source: roaraudio/roard/include/roard.h @ 3550:894340e379a7

Last change on this file since 3550:894340e379a7 was 3517:1a3218a3fc5b, checked in by phi, 14 years ago

updated license headers, FSF moved office

File size: 3.6 KB
RevLine 
[0]1//roard.h:
2
[668]3/*
[2446]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008, 2009
[668]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
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[668]23 *
24 */
25
[0]26#ifndef _ROARD_H_
27#define _ROARD_H_
28
[2970]29// configure ROAR_INFO()
30int g_verbose;
31#define ROAR_DBG_INFOVAR g_verbose
32
[1482]33// need to include this first as we need the config
34#include <roaraudio.h>
[3207]35#include <roaraudio/units.h>
[1964]36#include <libroarlight/libroarlight.h>
[2283]37#include <libroareio/libroareio.h>
[1482]38
[2726]39#include <ctype.h>
[1482]40
[3056]41#ifdef ROAR_HAVE_H_SIGNAL
[0]42#include <signal.h>
[1482]43#endif
44
[1537]45#if defined(ROAR_HAVE_SELECT) && defined(ROAR_HAVE_H_SYS_SELECT)
[0]46#include <sys/select.h>
[1482]47#endif
48
49#ifdef ROAR_HAVE_WAIT
[248]50#include <sys/wait.h>
[1482]51#endif
52
53#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[444]54#include <pwd.h>
[1482]55#endif
56
[3202]57#ifdef ROAR_HAVE_H_SYS_TIME
[1198]58#include <sys/time.h>
[3202]59#endif
60#ifdef ROAR_HAVE_H_TIME
[1198]61#include <time.h>
[1482]62#endif
[242]63
[1993]64#ifdef ROAR_HAVE_LIBSLP
65#include <slp.h>
66#endif
67
[243]68/*
[242]69#ifdef __linux__
[243]70#include <linux/unistd.h>
[242]71#include <linux/ioprio.h>
72#endif
[243]73*/
[242]74
[1917]75#define ROAR_SUBSYS_NONE          0x00
76#define ROAR_SUBSYS_WAVEFORM      0x01
77#define ROAR_SUBSYS_MIDI          0x02
78#define ROAR_SUBSYS_CB            0x04
79#define ROAR_SUBSYS_LIGHT         0x08
[2232]80#define ROAR_SUBSYS_RAW           0x10
[2681]81#define ROAR_SUBSYS_COMPLEX       0x20
[2838]82#define ROAR_SUBSYS_RDTCS         0x40
[1917]83
[2530]84// listeing code:
85#define ROAR_MAX_LISTEN_SOCKETS  8
86
[0]87//#include "buffer.h"
[2674]88#include "codecfilter.h"
[2657]89#include "container_framework.h"
[0]90#include "client.h"
91#include "driver.h"
92#include "output.h"
93#include "mixer.h"
94//#include "convert.h"
95#include "streams.h"
96#include "network.h"
97#include "commands.h"
98#include "req.h"
[2519]99#include "emul_esd.h"
[3255]100#include "emul_simple.h"
[0]101#include "sources.h"
[40]102#include "sample.h"
[89]103#include "meta.h"
[244]104#include "midi.h"
[2446]105#include "ssynth.h"
[1816]106#include "light.h"
[2236]107#include "raw.h"
[2717]108#include "rdtcs.h"
[2945]109#include "waveform.h"
[245]110#include "lib.h"
[3353]111#include "plugins.h"
[0]112
[242]113
[0]114int alive;
[1494]115#ifdef ROAR_SUPPORT_LISTEN
[1155]116int g_no_listen;
[1494]117#endif
[0]118
[246]119uint32_t g_pos; // current possition in output stream
120
[0]121int g_standby;
[920]122int g_autostandby;
[0]123
[905]124int main_loop (int driver, DRIVER_USERDATA_T driver_inst, struct roar_audio_info * sa, int sysclocksync);
[574]125void cleanup_listen_socket (int terminate);
[0]126void clean_quit (void);
127void clean_quit_prep (void);
128
129void on_sig_int (int signum);
[2732]130void on_sig_term (int signum);
[248]131void on_sig_chld (int signum);
[2112]132void on_sig_usr1 (int signum);
[0]133
[1494]134#ifdef ROAR_SUPPORT_LISTEN
[3253]135struct roard_listen {
[3128]136 int socket;
137 int proto;
138 union {
139  void * vp;
140  int    si;
141  struct {
142   int                    dir;
143   struct roar_audio_info info;
144  } stpl;
145 } inst;
146} g_listen[ROAR_MAX_LISTEN_SOCKETS];
[1494]147#endif
[0]148
[37]149int g_self_client;
150
[71]151int g_terminate;
152
[1609]153struct roar_audio_info * g_sa, * g_max_sa;
154
155struct roard_config {
156 uint32_t flags;
157 struct {
158  uint32_t flags;
159  struct roar_mixer_settings mixer;
160  int                        mixer_channels;
161 } streams[ROAR_DIR_DIRIDS];
[2017]162 char * location;
[3039]163 size_t jumbo_mtu;
[1609]164} * g_config;
[0]165
166#endif
167
168//ll
Note: See TracBrowser for help on using the repository browser.