summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/midi_buffer.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-05-23 19:32:16 +0000
committerDavid Robillard <d@drobilla.net>2008-05-23 19:32:16 +0000
commit7ffed4e61c0223dba8fa042f9c436305984275d4 (patch)
treed9785228c606260e654a785e60a948466b9b9a73 /libs/ardour/ardour/midi_buffer.h
parent4aa9d17ab1bc4b344bfb30aabf9a479e80f2d7e8 (diff)
Remove pointless Byte typedef that didn't really match any other typedef in ardour anyway.
git-svn-id: svn://localhost/ardour2/branches/3.0@3409 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/midi_buffer.h')
-rw-r--r--libs/ardour/ardour/midi_buffer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/ardour/midi_buffer.h b/libs/ardour/ardour/midi_buffer.h
index a6cbb49118..699f461b17 100644
--- a/libs/ardour/ardour/midi_buffer.h
+++ b/libs/ardour/ardour/midi_buffer.h
@@ -39,9 +39,9 @@ public:
void copy(const MidiBuffer& copy);
- bool push_back(const MIDI::Event& event);
- bool push_back(const jack_midi_event_t& event);
- Byte* reserve(double time, size_t size);
+ bool push_back(const MIDI::Event& event);
+ bool push_back(const jack_midi_event_t& event);
+ uint8_t* reserve(double time, size_t size);
void resize(size_t);
@@ -93,7 +93,7 @@ private:
/* FIXME: this is utter crap. rewrite as a flat/packed buffer like MidiRingBuffer */
MIDI::Event* _events; ///< Event structs that point to offsets in _data
- Byte* _data; ///< MIDI, straight up. No time stamps.
+ uint8_t* _data; ///< MIDI, straight up. No time stamps.
};