diff options
author | Wohlstand <admin@wohlnet.ru> | 2020-09-01 15:59:03 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2020-09-01 22:35:42 +0300 |
commit | efdf769050aaf344ddac660386009b58fa156ad2 (patch) | |
tree | 0bfebce7d277566086186282166c66adc6a2c308 /utils/vlc_codec | |
parent | 884ac1205079f391e124e33e0f5e827873688aae (diff) | |
download | libADLMIDI-efdf769050aaf344ddac660386009b58fa156ad2.tar.gz libADLMIDI-efdf769050aaf344ddac660386009b58fa156ad2.tar.bz2 libADLMIDI-efdf769050aaf344ddac660386009b58fa156ad2.zip |
Added AIL volume model
Diffstat (limited to 'utils/vlc_codec')
-rw-r--r-- | utils/vlc_codec/libadlmidi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/vlc_codec/libadlmidi.c b/utils/vlc_codec/libadlmidi.c index db20c31..18e7d31 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 }; +static const int volume_models_values[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; static const char * const volume_models_descriptions[] = { N_("Auto (defined by bank)"), @@ -92,6 +92,7 @@ static const char * const volume_models_descriptions[] = N_("Win9x driver"), N_("DMX (Fixed AM)"), N_("Apogee Sound System (Fixed AM)"), + N_("Audio Interfaces Library (AIL)"), NULL }; |