source: roaraudio/roard/include/roard.h @ 2717:2d9d874cb2ab

Last change on this file since 2717:2d9d874cb2ab was 2717:2d9d874cb2ab, checked in by phi, 15 years ago

added rdtcs.[ch]

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