This file contains hidden or 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
diff --git a/freeverb3/Makefile b/freeverb3/Makefile | |
index 9477246..2ce8e1e 100644 | |
--- a/freeverb3/Makefile | |
+++ b/freeverb3/Makefile | |
@@ -1,12 +1,6 @@ | |
include Makefile.mk | |
OBJS_FV3 = \ | |
- samplerate.c.o \ | |
- samplerate_common.c.o \ |
This file contains hidden or 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
/* | |
** Construction | |
gcc -g -o dlopen dlopen.c -ldl | |
** Utilisation | |
./dlopen /chemin/fichier.so | |
*/ | |
#include <dlfcn.h> | |
#include <stdio.h> |
This file contains hidden or 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
#include "smf.h" | |
#include <stdio.h> | |
int main(int argc, char *argv[]) | |
{ | |
if (argc != 2) | |
return 1; | |
smf_t *smf = smf_load(argv[1]); | |
if (!smf) { |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
const MidiProgram xg_set[] = | |
{ | |
{'M', 0, 1, 0, "XG #001 Key Scale Panning", "GrndPnoK"}, | |
{'M', 0, 1, 1, "XG #001 Key Scale Panning", "BritPnoK"}, | |
{'M', 0, 1, 2, "XG #001 Key Scale Panning", "ElGrPnoK"}, | |
{'M', 0, 1, 3, "XG #001 Key Scale Panning", "HnkyTnkK"}, | |
{'M', 0, 1, 4, "XG #001 Key Scale Panning", "El.Pno1K"}, | |
{'M', 0, 1, 5, "XG #001 Key Scale Panning", "El.Pno2K"}, | |
{'M', 0, 1, 6, "XG #001 Key Scale Panning", "Harpsi.K"}, | |
{'M', 0, 1, 7, "XG #001 Key Scale Panning", "Clavi.K"}, |
This file contains hidden or 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
- Audio wanted (samples=3528,rate=44100,channels=2); | |
- Audio obtained (samples=1764,rate=44100,channels=2) | |
==== Arpeggio situation 000 ==================================================== | |
CC 01 : 1 : + | |
CC 02 : 1 : + Hold:1 | |
CC 03 : 1 : + Hold:1 | |
CC 04 : 1 : + Hold:1 | |
CC 05 : 1 : + Hold:1 | |
CC 06 : 1 : + Hold:1 |
This file contains hidden or 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
==== Arpeggio situation 3212 ==================================================== | |
CC 01 : 1 : + Hold:1 (S04:56) | |
CC 02 : 1 : + Hold:1 (S04:58) | |
CC 03 : 1 : + Hold:1 (S04:51) | |
CC 04 : 1 : + (01:72) | |
CC 05 : 1 : + Hold:1 (S04:63) | |
CC 06 : 1 : + Hold:1 (S04:58) | |
CC 07 : 1 : + Hold:1 (S04:58) | |
CC 08 : 1 : + Hold:1 (S04:58) | |
CC 09 : 0 : |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<string name="app_name">Lecteur ADLMIDI</string> | |
<!-- For OPNMIDI --> | |
<!-- <string name="app_name">Lecteur OPN2 MIDI</string> --> | |
<string name="adlibdrums">Mode percussions AdLib</string> | |
<string name="bankNo">Banque de timbres</string> | |
<string name="htremolo">Trémolo augmenté</string> |
This file contains hidden or 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
------------------------------------------------------------ | |
Title: | |
------------------------------------------------------------ | |
OPNMIDI Player | |
------------------------------------------------------------ | |
Short description: | |
------------------------------------------------------------ | |
A simple OPN2 and OPNA Synth based MIDI Player with use of libOPNMIDI |
This file contains hidden or 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
------------------------------------------------------------ | |
Title: | |
------------------------------------------------------------ | |
ADLMIDI Player | |
------------------------------------------------------------ | |
Short description: | |
------------------------------------------------------------ | |
A simple OPL3 Synth based MIDI Player with use of libADLMIDI |
This file contains hidden or 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
--- src/chips/opal/opal.cpp.orig 2019-02-23 20:32:00.477658789 +0100 | |
+++ src/chips/opal/opal.cpp 2019-02-23 20:31:38.685179092 +0100 | |
@@ -13,6 +13,7 @@ | |
- Percussion mode | |
*/ | |
+#define OPAL_HAVE_SOFT_PANNING 1 /* libADLMIDI */ | |