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.
5 #include "media/midi/midi_message_util.h"
10 size_t GetMidiMessageLength(uint8 status_byte
) {
11 if (status_byte
< 0x80)
13 if (0x80 <= status_byte
&& status_byte
<= 0xbf)
15 if (0xc0 <= status_byte
&& status_byte
<= 0xdf)
17 if (0xe0 <= status_byte
&& status_byte
<= 0xef)
19 if (status_byte
== 0xf0)
21 if (status_byte
== 0xf1)
23 if (status_byte
== 0xf2)
25 if (status_byte
== 0xf3)
27 if (0xf4 <= status_byte
&& status_byte
<= 0xf6)
29 if (status_byte
== 0xf7)
31 // 0xf8 <= status_byte && status_byte <= 0xff