2015-05-17 06:55:04 -04:00
|
|
|
#ifndef PORTAUDIO_BACKEND_DEBUG_H
|
|
|
|
#define PORTAUDIO_BACKEND_DEBUG_H
|
|
|
|
|
2015-08-22 07:43:12 -04:00
|
|
|
#include "ardour/debug.h"
|
2015-05-17 06:55:04 -04:00
|
|
|
|
2015-08-22 07:43:12 -04: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-22 18:16:05 -04:00
|
|
|
#define DEBUG_PORTS(msg) DEBUG_TRACE (PBD::DEBUG::BackendPorts, msg);
|
2015-05-17 06:55:04 -04:00
|
|
|
|
|
|
|
#endif // PORTAUDIO_BACKEND_DEBUG_H
|