source: roaraudio/roard/include/roard.h @ 2838:b96e2260514a

Last change on this file since 2838:b96e2260514a was 2838:b96e2260514a, checked in by phi, 15 years ago

added ROAR_SUBSYS_RDTCS

File size: 3.4 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
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
[0]25#ifndef _ROARD_H_
26#define _ROARD_H_
27
[1482]28// need to include this first as we need the config
29#include <roaraudio.h>
[1964]30#include <libroarlight/libroarlight.h>
[2283]31#include <libroareio/libroareio.h>
[1482]32
[2726]33#include <ctype.h>
[1482]34
35#ifndef ROAR_TARGET_MICROCONTROLLER
[0]36#include <signal.h>
[1482]37#endif
38
[1537]39#if defined(ROAR_HAVE_SELECT) && defined(ROAR_HAVE_H_SYS_SELECT)
[0]40#include <sys/select.h>
[1482]41#endif
42
43#ifdef ROAR_HAVE_WAIT
[248]44#include <sys/wait.h>
[1482]45#endif
46
47#if !defined(ROAR_TARGET_WIN32) && !defined(ROAR_TARGET_MICROCONTROLLER)
[444]48#include <pwd.h>
[1482]49#endif
50
51#ifndef ROAR_TARGET_MICROCONTROLLER
[1198]52#include <sys/time.h>
53#include <time.h>
[1482]54#endif
[242]55
[1993]56#ifdef ROAR_HAVE_LIBSLP
57#include <slp.h>
58#endif
59
[243]60/*
[242]61#ifdef __linux__
[243]62#include <linux/unistd.h>
[242]63#include <linux/ioprio.h>
64#endif
[243]65*/
[242]66
[1917]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
[2232]72#define ROAR_SUBSYS_RAW           0x10
[2681]73#define ROAR_SUBSYS_COMPLEX       0x20
[2838]74#define ROAR_SUBSYS_RDTCS         0x40
[1917]75
[2307]76// some usefull macros:
77#define _8BIT  1
78#define _16BIT 2
79#define _24BIT 3
80#define _32BIT 4
81#define _64BIT 8
[242]82
[2530]83// listeing code:
84#define ROAR_MAX_LISTEN_SOCKETS  8
85
[0]86//#include "buffer.h"
[2674]87#include "codecfilter.h"
[2657]88#include "container_framework.h"
[0]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"
[2519]98#include "emul_esd.h"
[0]99#include "sources.h"
[40]100#include "sample.h"
[89]101#include "meta.h"
[244]102#include "midi.h"
[2446]103#include "ssynth.h"
[1816]104#include "light.h"
[2236]105#include "raw.h"
[2717]106#include "rdtcs.h"
[245]107#include "lib.h"
[0]108
[242]109
[0]110int alive;
[1494]111#ifdef ROAR_SUPPORT_LISTEN
[1155]112int g_no_listen;
[1494]113#endif
[0]114
[246]115uint32_t g_pos; // current possition in output stream
116
[0]117int g_standby;
[920]118int g_autostandby;
[0]119
[905]120int main_loop (int driver, DRIVER_USERDATA_T driver_inst, struct roar_audio_info * sa, int sysclocksync);
[574]121void cleanup_listen_socket (int terminate);
[0]122void clean_quit (void);
123void clean_quit_prep (void);
124
125void on_sig_int (int signum);
[2732]126void on_sig_term (int signum);
[248]127void on_sig_chld (int signum);
[2112]128void on_sig_usr1 (int signum);
[0]129
[1494]130#ifdef ROAR_SUPPORT_LISTEN
[2530]131int g_listen_socket[ROAR_MAX_LISTEN_SOCKETS];
132int g_listen_proto[ROAR_MAX_LISTEN_SOCKETS];
[1494]133#endif
[0]134
[37]135int g_self_client;
136
[71]137int g_terminate;
138
[1609]139struct roar_audio_info * g_sa, * g_max_sa;
140
141struct roard_config {
142 uint32_t flags;
143 struct {
144  uint32_t flags;
145  struct roar_mixer_settings mixer;
146  int                        mixer_channels;
147 } streams[ROAR_DIR_DIRIDS];
[2017]148 char * location;
[1609]149} * g_config;
[0]150
151#endif
152
153//ll
Note: See TracBrowser for help on using the repository browser.