13
0
livetrax/libs/midi++2/midi++/types.h
Carl Hetherington 73192bc1a7 Remove all use of nframes_t.
git-svn-id: svn://localhost/ardour2/branches/3.0@8166 d708f5d6-7413-0410-9779-e7cbd77b26cf
2010-12-03 22:26:29 +00:00

97 lines
2.1 KiB
C++

/*
Copyright (C) 2000-2007 Paul Davis
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 __midi_types_h__
#define __midi_types_h__
#include <jack/jack.h>
#include <inttypes.h>
namespace MIDI {
typedef char channel_t;
typedef float controller_value_t;
typedef unsigned char byte;
typedef unsigned short pitchbend_t;
typedef uint32_t timestamp_t;
/** XXX: dupes from libardour */
typedef int64_t framecnt_t;
typedef jack_nframes_t pframes_t;
enum eventType {
none = 0x0,
raw = 0xF4, /* undefined in MIDI spec */
any = 0xF5, /* undefined in MIDI spec */
off = 0x80,
on = 0x90,
controller = 0xB0,
program = 0xC0,
chanpress = 0xD0,
polypress = 0xA0,
pitchbend = 0xE0,
sysex = 0xF0,
mtc_quarter = 0xF1,
position = 0xF2,
song = 0xF3,
tune = 0xF6,
eox = 0xF7,
timing = 0xF8,
start = 0xFA,
contineu = 0xFB, /* note spelling */
stop = 0xFC,
active = 0xFE,
reset = 0xFF
};
extern const char *controller_names[];
byte decode_controller_name (const char *name);
struct EventTwoBytes {
union {
byte note_number;
byte controller_number;
};
union {
byte velocity;
byte value;
};
};
enum MTC_FPS {
MTC_24_FPS = 0,
MTC_25_FPS = 1,
MTC_30_FPS_DROP = 2,
MTC_30_FPS = 3
};
enum MTC_Status {
MTC_Stopped = 0,
MTC_Forward,
MTC_Backward
};
} // namespace MIDI
#endif // __midi_types_h__