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

Unified Diff: media/midi/midi_message_queue.cc

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/midi/midi_manager_win.cc ('k') | media/midi/midi_message_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/midi/midi_message_queue.cc
diff --git a/media/midi/midi_message_queue.cc b/media/midi/midi_message_queue.cc
index 9107a4b528e23ae4bf39d286a67307085feec373..77ea641deac4d5d86b9405ec54fcfb5d731fe35c 100644
--- a/media/midi/midi_message_queue.cc
+++ b/media/midi/midi_message_queue.cc
@@ -7,27 +7,9 @@
#include <algorithm>
#include "base/logging.h"
-#include "media/midi/midi_message_util.h"
+#include "media/midi/message_util.h"
namespace midi {
-namespace {
-
-const uint8_t kSysEx = 0xf0;
-const uint8_t kEndOfSysEx = 0xf7;
-
-bool IsDataByte(uint8_t data) {
- return (data & 0x80) == 0;
-}
-
-bool IsSystemRealTimeMessage(uint8_t data) {
- return 0xf8 <= data;
-}
-
-bool IsSystemMessage(uint8_t data) {
- return 0xf0 <= data;
-}
-
-} // namespace
MidiMessageQueue::MidiMessageQueue(bool allow_running_status)
: allow_running_status_(allow_running_status) {}
@@ -49,13 +31,13 @@ void MidiMessageQueue::Get(std::vector<uint8_t>* message) {
// Check if |next_message_| is already a complete MIDI message or not.
if (!next_message_.empty()) {
const uint8_t status_byte = next_message_.front();
- const size_t target_len = GetMidiMessageLength(status_byte);
+ const size_t target_len = GetMessageLength(status_byte);
if (target_len == 0) {
- DCHECK_EQ(kSysEx, status_byte);
- if (next_message_.back() == kEndOfSysEx) {
- // OK, this is a complete SysEx message.
- std::swap(*message, next_message_);
- DCHECK(next_message_.empty());
+ DCHECK_EQ(kSysExByte, status_byte);
+ if (next_message_.back() == kEndOfSysExByte) {
+ // OK, this is a complete SysEx message.
+ std::swap(*message, next_message_);
+ DCHECK(next_message_.empty());
return;
}
} else if (next_message_.size() == target_len) {
@@ -90,11 +72,11 @@ void MidiMessageQueue::Get(std::vector<uint8_t>* message) {
}
if (next_message_.empty()) {
- const size_t target_len = GetMidiMessageLength(next);
+ const size_t target_len = GetMessageLength(next);
// If |target_len| is zero, it means either |next| is not a valid status
// byte or |next| is a valid status byte but the message length is
// unpredictable. For the latter case, only SysEx can be accepted.
- if (target_len > 0 || next == kSysEx) {
+ if (target_len > 0 || next == kSysExByte) {
next_message_.push_back(next);
}
// Consume |next| always, since if |next| isn't status byte, which means
@@ -111,7 +93,8 @@ void MidiMessageQueue::Get(std::vector<uint8_t>* message) {
// drop the pending message and respin the loop to re-evaluate |next|.
// This also clears the running status byte speculatively added above, as
// well as any broken incomplete messages.
- if (!IsDataByte(next) && !(status_byte == kSysEx && next == kEndOfSysEx)) {
+ if (!IsDataByte(next) &&
+ !(status_byte == kSysExByte && next == kEndOfSysExByte)) {
next_message_.clear();
continue;
}
« no previous file with comments | « media/midi/midi_manager_win.cc ('k') | media/midi/midi_message_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698