diff options
author | Wohlstand <admin@wohlnet.ru> | 2020-09-16 23:59:00 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2020-09-16 23:59:00 +0300 |
commit | 9e0f96beebb9f752cbd2278a487af1c7fdf84188 (patch) | |
tree | 180caa7b341457b4bd91d58de135ae472fa5c11e | |
parent | ace610fe613d6eb7633aec98632966d09540dd46 (diff) | |
download | libADLMIDI-9e0f96beebb9f752cbd2278a487af1c7fdf84188.tar.gz libADLMIDI-9e0f96beebb9f752cbd2278a487af1c7fdf84188.tar.bz2 libADLMIDI-9e0f96beebb9f752cbd2278a487af1c7fdf84188.zip |
VLC Plugin: Added missing HMI volume models into the list
-rw-r--r-- | utils/vlc_codec/libadlmidi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/vlc_codec/libadlmidi.c b/utils/vlc_codec/libadlmidi.c index e59826c..d247d30 100644 --- a/utils/vlc_codec/libadlmidi.c +++ b/utils/vlc_codec/libadlmidi.c @@ -81,7 +81,7 @@ #define FULL_RANGE_CC74_LONGTEXT N_( \ "Scale range of CC-74 \"Brightness\" with full 0~127 range. By default is only 0~64 affects the sounding.") -static const int volume_models_values[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; +static const int volume_models_values[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }; static const char * const volume_models_descriptions[] = { N_("Auto (defined by bank)"), @@ -94,6 +94,8 @@ static const char * const volume_models_descriptions[] = N_("Apogee Sound System (Fixed AM)"), N_("Audio Interfaces Library (AIL)"), N_("Win9x Generic FM driver"), + N_("HMI Sound Operating System"), + N_("HMI Sound Operating System (Old)"), NULL }; |