-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- source=midi is now working
- Loading branch information
Showing
5 changed files
with
28 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* @file midireader.h | ||
* | ||
*/ | ||
/* Copyright (C) 2019-2024 by Arjan van Vught mailto:[email protected] | ||
/* Copyright (C) 2019-2025 by Arjan van Vught mailto:[email protected] | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -42,11 +42,11 @@ class MidiReader { | |
void Update(); | ||
|
||
private: | ||
uint32_t m_nMtcQfFramePrevious { 0 }; | ||
uint32_t m_nMtcQfFramesDelta { 0 }; | ||
midi::TimecodeType m_TimeCodeType { midi::TimecodeType::UNKNOWN }; | ||
uint8_t m_nPartPrevious { 0 }; | ||
bool m_bDirection { true }; | ||
uint32_t m_nMtcQfFramePrevious { 0 }; | ||
uint32_t m_nMtcQfFramesDelta { 0 }; | ||
MidiBPM m_MidiBPM; | ||
}; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters