Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: media/midi/midi_message_util.h

Issue 2431393002: Web MIDI: move MIDI message validating logic into message_util.{cc|h} (Closed)
Patch Set: build fix Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/midi/midi_message_queue.cc ('k') | media/midi/midi_message_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « media/midi/midi_message_queue.cc ('k') | media/midi/midi_message_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698