summaryrefslogtreecommitdiff
path: root/linux/alsa/alsa_midi_impl.h
blob: d7144a91125e67d831896ed012ec634fbfb31edb (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Copyright (c) 2007 Dmitry S. Baikov
 *
 *  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., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

#ifndef __jack_alsa_midi_impl_h__
#define __jack_alsa_midi_impl_h__

#include "JackConstants.h"

#ifdef JACKMP

#include "types.h"

#ifdef __cplusplus
extern "C"
{
#endif

    int JACK_is_realtime(jack_client_t *client);
    int JACK_client_create_thread(jack_client_t *client, pthread_t *thread, int priority, int realtime, void *(*start_routine)(void*), void *arg);

    jack_port_t* JACK_port_register(jack_client_t *client, const char *port_name, const char *port_type, unsigned long flags, unsigned long buffer_size);
    int JACK_port_unregister(jack_client_t *, jack_port_t*);
    void* JACK_port_get_buffer(jack_port_t*, jack_nframes_t);
    int JACK_port_set_alias(jack_port_t* port, const char* name);
    int jack_port_set_default_metadata(jack_port_t* port, const char* pretty_name);

    jack_nframes_t JACK_get_sample_rate(jack_client_t *);
    jack_nframes_t JACK_frame_time(jack_client_t *);
    jack_nframes_t JACK_last_frame_time(jack_client_t *);

#define jack_is_realtime JACK_is_realtime
#define jack_client_create_thread JACK_client_create_thread

#define jack_port_register JACK_port_register
#define jack_port_unregister JACK_port_unregister
#define jack_port_get_buffer JACK_port_get_buffer
#define jack_port_set_alias JACK_port_set_alias
#define jack_port_set_default_metadata jack_port_set_default_metadata

#define jack_get_sample_rate JACK_get_sample_rate
#define jack_frame_time JACK_frame_time
#define jack_last_frame_time JACK_last_frame_time

#ifdef __cplusplus
} // extern "C"
#endif

#else // usual jack

#include "jack.h"
#include "thread.h"

#endif

#if defined(STANDALONE)
#define MESSAGE(...) fprintf(stderr, __VA_ARGS__)
#elif !defined(JACKMP)
#include <jack/messagebuffer.h>
#endif

#define info_log(...)  jack_info(__VA_ARGS__)
#define error_log(...) jack_error(__VA_ARGS__)

#ifdef ALSA_MIDI_DEBUG
#define debug_log(...) jack_info(__VA_ARGS__)
#else
#define debug_log(...)
#endif

#include "alsa_midi.h"

#endif /* __jack_alsa_midi_impl_h__ */