2015-05-17 20:55:04 +10:00
|
|
|
#ifndef PORTAUDIO_BACKEND_DEBUG_H
|
|
|
|
|
#define PORTAUDIO_BACKEND_DEBUG_H
|
|
|
|
|
|
2015-08-22 21:43:12 +10:00
|
|
|
#include "ardour/debug.h"
|
2015-05-17 20:55:04 +10:00
|
|
|
|
2015-08-22 21:43:12 +10:00
|
|
|
#define DEBUG_AUDIO(msg) DEBUG_TRACE (PBD::DEBUG::BackendAudio, msg);
|
|
|
|
|
#define DEBUG_MIDI(msg) DEBUG_TRACE (PBD::DEBUG::BackendMIDI, msg);
|
|
|
|
|
#define DEBUG_TIMING(msg) DEBUG_TRACE (PBD::DEBUG::BackendTiming, msg);
|
|
|
|
|
#define DEBUG_THREADS(msg) DEBUG_TRACE (PBD::DEBUG::BackendThreads, msg);
|
2015-08-23 08:16:05 +10:00
|
|
|
#define DEBUG_PORTS(msg) DEBUG_TRACE (PBD::DEBUG::BackendPorts, msg);
|
2015-05-17 20:55:04 +10:00
|
|
|
|
|
|
|
|
#endif // PORTAUDIO_BACKEND_DEBUG_H
|