2024.06.18

This commit is contained in:
sshlien
2024-06-18 16:59:50 -04:00
parent 7b8785ce0d
commit 10af1c7b16
3 changed files with 8 additions and 5 deletions

View File

@@ -1 +1 @@
June 12 2024 June 18 2024

View File

@@ -6,7 +6,7 @@ abc2abc version 2.22 April 30 2024
yaps version 1.94 April 30 2024 yaps version 1.94 April 30 2024
abcmatch version 1.83 February 19 2024 abcmatch version 1.83 February 19 2024
midicopy version 1.39 November 08 2022 midicopy version 1.39 November 08 2022
midistats version 0.94 June 11 2024 midistats version 0.95 June 18 2024
24th January 2002 24th January 2002
Copyright James Allwright Copyright James Allwright

View File

@@ -17,7 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/ */
#define VERSION "0.94 June 12 2024 midistats" #define VERSION "0.95 June 18 2024 midistats"
/* midistrats.c is a descendent of midi2abc.c which was becoming to /* midistrats.c is a descendent of midi2abc.c which was becoming to
large. The object of the program is to extract statistical characterisitic large. The object of the program is to extract statistical characterisitic
@@ -901,6 +901,7 @@ int chan, pitch, vol;
int dithermargin; /* [SS] 2023-08-22 */ int dithermargin; /* [SS] 2023-08-22 */
int cpitch; /* [SS] 2023-09-13 */ int cpitch; /* [SS] 2023-09-13 */
int pulsePosition; int pulsePosition;
int beatnumber;
cpitch = pitch % 12; cpitch = pitch % 12;
channel_used_in_track[chan+1]++; /* [SS] 2023-09-06 */ channel_used_in_track[chan+1]++; /* [SS] 2023-09-06 */
@@ -951,8 +952,10 @@ int chan, pitch, vol;
chanpitchhistogram[chan*12+cpitch]++; /* [SS] 2023-09-13 */ chanpitchhistogram[chan*12+cpitch]++; /* [SS] 2023-09-13 */
eigthunit = Mf_currtime/halfdivision; eigthunit = Mf_currtime/halfdivision;
updateNotememory (eigthunit, chan, pitch); beatnumber = Mf_currtime/division;
updateTrackNotememory (eigthunit, chan, pitch);
updateNotememory (beatnumber, chan, pitch);
updateTrackNotememory (beatnumber, chan, pitch);
} }