| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MEDIA_MIDI_MIDI_MESSAGE_UTIL_H_ | |
| 6 #define MEDIA_MIDI_MIDI_MESSAGE_UTIL_H_ | |
| 7 | |
| 8 #include <stddef.h> | |
| 9 #include <stdint.h> | |
| 10 | |
| 11 #include <deque> | |
| 12 #include <vector> | |
| 13 | |
| 14 #include "media/midi/midi_export.h" | |
| 15 | |
| 16 namespace midi { | |
| 17 | |
| 18 // Returns the length of a MIDI message in bytes. Never returns 4 or greater. | |
| 19 // Returns 0 if |status_byte| is: | |
| 20 // - not a valid status byte, namely data byte. | |
| 21 // - MIDI System Exclusive message. | |
| 22 // - End of System Exclusive message. | |
| 23 // - Reserved System Common Message (0xf4, 0xf5) | |
| 24 MIDI_EXPORT size_t GetMidiMessageLength(uint8_t status_byte); | |
| 25 | |
| 26 const uint8_t kSysExByte = 0xf0; | |
| 27 const uint8_t kEndOfSysExByte = 0xf7; | |
| 28 | |
| 29 const uint8_t kSysMessageBitMask = 0xf0; | |
| 30 const uint8_t kSysMessageBitPattern = 0xf0; | |
| 31 const uint8_t kSysRTMessageBitMask = 0xf8; | |
| 32 const uint8_t kSysRTMessageBitPattern = 0xf8; | |
| 33 | |
| 34 } // namespace midi | |
| 35 | |
| 36 #endif // MEDIA_MIDI_MIDI_MESSAGE_UTIL_H_ | |
| OLD | NEW |