diff options
author | Chris Robinson <[email protected]> | 2017-08-27 10:47:04 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-08-27 10:47:04 -0700 |
commit | fde02abc359d81f7c25d6d24ac747613537efb1f (patch) | |
tree | b39c8d8f031e2b031cd4b9b75d588f8970b7ee28 | |
parent | fdce192aabb6f4e3f78f4f2bf9af936745a53178 (diff) |
Rename resampler labels
-rw-r--r-- | OpenAL32/alState.c | 6 | ||||
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/OpenAL32/alState.c b/OpenAL32/alState.c index f71f0eac..48c3498a 100644 --- a/OpenAL32/alState.c +++ b/OpenAL32/alState.c @@ -50,9 +50,9 @@ static const ALchar alErrOutOfMemory[] = "Out of Memory"; /* Resampler strings */ static const ALchar alPointResampler[] = "Nearest"; static const ALchar alLinearResampler[] = "Linear"; -static const ALchar alSinc4Resampler[] = "4-Point Sinc"; -static const ALchar alBSinc12Resampler[] = "Band-limited Sinc (12/24)"; -static const ALchar alBSinc24Resampler[] = "Band-limited Sinc (24/48)"; +static const ALchar alSinc4Resampler[] = "3rd order Sinc"; +static const ALchar alBSinc12Resampler[] = "11th order Sinc"; +static const ALchar alBSinc24Resampler[] = "23rd order Sinc"; AL_API ALvoid AL_APIENTRY alEnable(ALenum capability) { diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index 5649e7de..31419479 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -100,9 +100,9 @@ static const struct NameValuePair { { "Point", "point" }, { "Linear", "linear" }, { "Default (Linear)", "" }, - { "4-Point Sinc", "sinc4" }, - { "Band-limited Sinc (12/24)", "bsinc12" }, - { "Band-limited Sinc (24/48)", "bsinc24" }, + { "3rd order Sinc", "sinc4" }, + { "11th order Sinc", "bsinc12" }, + { "23rd order Sinc", "bsinc24" }, { "", "" } }, stereoModeList[] = { |