playmidiのソースコードなど公開物一式のりぽじとり
リビジョン | 95a6935a44163118dd338c3e18779b3d9db64be8 (tree) |
---|---|
日時 | 2020-08-23 13:41:22 |
作者 | ![]() |
コミッター | Koine Yuusuke(koinec) |
Fixed a problem that guw_division global variable was mistakenly defined in two sources (0.8.2->0.8.3)
@@ -1,5 +1,5 @@ | ||
1 | 1 | playumidi - play standard midi-file format 0/1 for FreeBSD USB-MIDI device |
2 | - Version 0.8.2 | |
2 | + Version 0.8.3 | |
3 | 3 | |
4 | 4 | |
5 | 5 | [Introduction]-------------------------------------------------------------- |
@@ -164,6 +164,9 @@ playumidi - play standard midi-file format 0/1 for FreeBSD USB-MIDI device | ||
164 | 164 | |
165 | 165 | [CHANGELOG]-------------------------------------------------------------- |
166 | 166 | |
167 | + Version 0.8.3 - 2020/08/23 | |
168 | + * Since a global variable with the same name was defined in midievent.c | |
169 | + and play_event.c, a fix for a build error occurred. | |
167 | 170 | Version 0.8.2 - 2019/08/11 |
168 | 171 | * Minor Correction for support FreeBSD ports. (Makefile) |
169 | 172 | Version 0.8.1 - 2015/12/23 |
@@ -165,6 +165,9 @@ playumidi - play standard midi-file format 0/1 for FreeBSD USB-MIDI device | ||
165 | 165 | |
166 | 166 | [変更履歴]--------------------------------------------------------------- |
167 | 167 | |
168 | + Version 0.8.3 - 2020/08/23 | |
169 | + * midievent.c および play_event.cで誤って同一のグローバル変数を定義 | |
170 | + していたバグを修正。 | |
168 | 171 | Version 0.8.2 - 2019/08/11 |
169 | 172 | * ports作成に伴うMakefile修正 |
170 | 173 | Version 0.8.1 - 2015/12/23 |
@@ -3,7 +3,7 @@ | ||
3 | 3 | # P L A Y U M I D I |
4 | 4 | # (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | # |
6 | -# Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | +# Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | # |
8 | 8 | # Redistribution and use in source and binary forms, with or without |
9 | 9 | # modification, are permitted provided that the following conditions are met: |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -39,7 +39,7 @@ MIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDI*/ | ||
39 | 39 | MidiEventInfo *gp_event = NULL; |
40 | 40 | Byte *gpb_vardata = NULL; |
41 | 41 | |
42 | -Word guw_division; | |
42 | +Word guw_midi_division; | |
43 | 43 | DWord gdw_max_events; |
44 | 44 | DWord gdw_max_metasize; |
45 | 45 |
@@ -49,7 +49,7 @@ EXTERN_FUNC_MIDIEVENT int | ||
49 | 49 | MidiEvent_GetMidiInfo( |
50 | 50 | MidiInfo *p_midi ) { |
51 | 51 | |
52 | - p_midi->uw_division = guw_division; | |
52 | + p_midi->uw_division = guw_midi_division; | |
53 | 53 | p_midi->dw_max_events = gdw_max_events; |
54 | 54 | p_midi->dw_max_metasize = gdw_max_metasize; |
55 | 55 | p_midi->p_event = gp_event; |
@@ -64,7 +64,7 @@ EXTERN_FUNC_MIDIEVENT void | ||
64 | 64 | MidiEvent_SetMidiDivision( |
65 | 65 | Word uw_division ) { |
66 | 66 | |
67 | - guw_division = uw_division; | |
67 | + guw_midi_division = uw_division; | |
68 | 68 | |
69 | 69 | return; |
70 | 70 | } |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -35,7 +35,7 @@ MIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDIMIDI*/ | ||
35 | 35 | #include"config.h" |
36 | 36 | #include"smf.h" |
37 | 37 | |
38 | -#define STRING_VERSION "Version 0.8.2 (2019/08/11)" | |
38 | +#define STRING_VERSION "Version 0.8.3 (2020/08/23)" | |
39 | 39 | |
40 | 40 | |
41 | 41 | typedef unsigned char Byte; |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |
@@ -3,7 +3,7 @@ | ||
3 | 3 | P L A Y U M I D I |
4 | 4 | (/dev/umixiX.Y Direct MIDI Player) |
5 | 5 | |
6 | - Copyright(C) 2014-2019 Koine Yuusuke(koinec). All rights reserved. | |
6 | + Copyright(C) 2014-2020 Koine Yuusuke(koinec). All rights reserved. | |
7 | 7 | |
8 | 8 | Redistribution and use in source and binary forms, with or without |
9 | 9 | modification, are permitted provided that the following conditions are met: |