summaryrefslogtreecommitdiff
path: root/drivers/dummy/dummy_driver.h
blob: 4daf18212c1c273271d8e8225b5b919b8df2c1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
    Copyright (C) 2003 Robert Ham <rah@bash.sh>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */


#ifndef __JACK_DUMMY_DRIVER_H__
#define __JACK_DUMMY_DRIVER_H__

#include <unistd.h>

#include <jack/types.h>
#include <jack/jslist.h>
#include <jack/jack.h>
#include "driver.h"
#include <config.h>

// needed for clock_nanosleep
#ifndef _GNU_SOURCE
    #define _GNU_SOURCE
#endif
#include <time.h>

typedef struct _dummy_driver dummy_driver_t;

struct _dummy_driver {
	JACK_DRIVER_NT_DECL;

	jack_nframes_t sample_rate;
	jack_nframes_t period_size;
	unsigned long wait_time;

#if defined(HAVE_CLOCK_GETTIME) && defined(HAVE_CLOCK_NANOSLEEP)
	struct timespec next_wakeup;
#else
	jack_time_t next_time;
#endif

	unsigned int capture_channels;
	unsigned int playback_channels;

	JSList         *capture_ports;
	JSList         *playback_ports;

	jack_client_t  *client;
};

#endif /* __JACK_DUMMY_DRIVER_H__ */