diff options
author | Wohlstand <admin@wohlnet.ru> | 2020-08-31 10:31:00 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2020-08-31 10:31:00 +0300 |
commit | 81f7365e0090b58f627268983534ce6babdaa318 (patch) | |
tree | 4a162aa59bff9c6291ae6e2669023c494c1d6f1c | |
parent | 6d052ad0f8c6371c61d3f7dd370a58cdececf362 (diff) | |
download | libADLMIDI-81f7365e0090b58f627268983534ce6babdaa318.tar.gz libADLMIDI-81f7365e0090b58f627268983534ce6babdaa318.tar.bz2 libADLMIDI-81f7365e0090b58f627268983534ce6babdaa318.zip |
VLC Plugin: List new volume models
-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 8de3d34..db20c31 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 }; +static const int volume_models_values[] = { 0, 1, 2, 3, 4, 5, 6, 7 }; static const char * const volume_models_descriptions[] = { N_("Auto (defined by bank)"), @@ -90,6 +90,8 @@ static const char * const volume_models_descriptions[] = N_("DMX"), N_("Apogee Sound System"), N_("Win9x driver"), + N_("DMX (Fixed AM)"), + N_("Apogee Sound System (Fixed AM)"), NULL }; |