Loopp/src/config.hxx

53 lines
970 B
C++
Raw Normal View History

#ifndef LUPPP_CONFIG_H
#define LUPPP_CONFIG_H
2013-09-11 15:19:38 +02:00
/// PROGAM WIDE DEFINES
#define NAME "Luppp"
/// DEBUG
// Track operations
//#define DEBUG_TRACKS 1
// Clip selection / queueing
2013-11-02 00:31:18 +01:00
//#define DEBUG_CLIP 1
// Buffer loading / resizing
2013-09-17 12:00:12 +02:00
//#define DEBUG_BUFFER 1
2013-08-27 01:01:51 +02:00
// Logic : Warning NON RT!
//#define DEBUG_LOGIC 1
2013-08-27 01:01:51 +02:00
// State save / load
//#define DEBUG_STATE 1
2013-09-18 12:46:25 +02:00
// Jack print controller out MIDI
//#define DEBUG_MIDI 1
/// GENERAL
#define NTRACKS 8
#define NSCENES 10
2013-07-27 19:24:04 +02:00
#define MAX_BUFFER_SIZE 1024
#define CONTROLLERS_PREALLOC 20
// nsamples remaining during recording before Looper requests larger buffer
#define LOOPER_SAMPLES_BEFORE_REQUEST 44100
2013-09-17 14:11:11 +02:00
#define LOOPER_SAMPLES_UPDATE_SIZE 44100
#define LUPPP_RETURN_OK 0
#define LUPPP_RETURN_WARNING 1
#define LUPPP_RETURN_ERROR 2
2013-09-11 15:19:38 +02:00
/// debug.hxx for printing convienience
#include "debug.hxx"
#endif // LUPPP_CONFIG_H