aboutsummaryrefslogtreecommitdiff
path: root/utils/vlc_codec
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2025-03-29 23:11:07 +0300
committerWohlstand <admin@wohlnet.ru>2025-03-29 23:11:56 +0300
commita37298e7bed28752e8dcbe8e37e355fe47bf5e99 (patch)
treed97e76f8c1acfd43626f8d1a0496090c32ca4fd6 /utils/vlc_codec
parente92a4d7285197ab2868aa36f975d73ceee915bea (diff)
downloadlibADLMIDI-a37298e7bed28752e8dcbe8e37e355fe47bf5e99.tar.gz
libADLMIDI-a37298e7bed28752e8dcbe8e37e355fe47bf5e99.tar.bz2
libADLMIDI-a37298e7bed28752e8dcbe8e37e355fe47bf5e99.zip
Added support for LLE OPL2 and OPL3 emulators
Kept disabled by default because they are extremely heavy for ordinary processors.
Diffstat (limited to 'utils/vlc_codec')
-rw-r--r--utils/vlc_codec/libadlmidi.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/utils/vlc_codec/libadlmidi.c b/utils/vlc_codec/libadlmidi.c
index 8946880..49082c7 100644
--- a/utils/vlc_codec/libadlmidi.c
+++ b/utils/vlc_codec/libadlmidi.c
@@ -187,6 +187,14 @@ static const int emulator_type_values[] =
(int)ADLMIDI_EMU_YMFM_OPL2,
(int)ADLMIDI_EMU_YMFM_OPL3,
#endif
+
+#ifdef ADLMIDI_ENABLE_OPL2_LLE_EMULATOR
+ (int)ADLMIDI_EMU_NUKED_OPL2_LLE,
+#endif
+
+#ifdef ADLMIDI_ENABLE_OPL3_LLE_EMULATOR
+ (int)ADLMIDI_EMU_NUKED_OPL3_LLE,
+#endif
};
static const char * const emulator_type_descriptions[] =
{
@@ -219,6 +227,15 @@ static const char * const emulator_type_descriptions[] =
N_("YMFM OPL2"),
N_("YMFM OPL3"),
#endif
+
+#ifdef ADLMIDI_ENABLE_OPL2_LLE_EMULATOR
+ N_("Nuked OPL2-LLE [!EXTRA HEAVY!]"),
+#endif
+
+#ifdef ADLMIDI_ENABLE_OPL3_LLE_EMULATOR
+ N_("Nuked OPL3-LLE [!EXTRA HEAVY!]"),
+#endif
+
NULL
};