From d3239b6be62319bfa1e45524363cdec21c12bb50 Mon Sep 17 00:00:00 2001 From: Alice Date: Fri, 30 Sep 2016 00:25:12 -0400 Subject: [PATCH] Audio: minor correction of documentation for ALAW and MULAW. --- src/Magnum/Audio/Buffer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Magnum/Audio/Buffer.h b/src/Magnum/Audio/Buffer.h index 7adc651c6..fa0ddf3fe 100644 --- a/src/Magnum/Audio/Buffer.h +++ b/src/Magnum/Audio/Buffer.h @@ -58,28 +58,28 @@ class Buffer { Stereo16 = AL_FORMAT_STEREO16, /**< 16-bit interleaved signed stereo */ /** - * @brief 8-bit unsigned mono [A-Law Compressed Sound Format](https://en.wikipedia.org/wiki/A-law_algorithm) + * @brief 8-bit mono [A-Law Compressed Sound Format](https://en.wikipedia.org/wiki/A-law_algorithm) * * @requires_al_extension Extension @al_extension{EXT,ALAW} */ MonoALaw = AL_FORMAT_MONO_ALAW_EXT, /** - * @brief 16-bit signed stereo [A-Law Compressed Sound Format](https://en.wikipedia.org/wiki/A-law_algorithm) + * @brief 8-bit interleaved stereo [A-Law Compressed Sound Format](https://en.wikipedia.org/wiki/A-law_algorithm) * * @requires_al_extension Extension @al_extension{EXT,ALAW} */ StereoALaw = AL_FORMAT_STEREO_ALAW_EXT, /** - * @brief 8-bit unsigned mono [μ-Law Compressed Sound Format](https://en.wikipedia.org/wiki/Μ-law_algorithm) + * @brief 8-bit mono [μ-Law Compressed Sound Format](https://en.wikipedia.org/wiki/Μ-law_algorithm) * * @requires_al_extension Extension @al_extension{EXT,MULAW} */ MonoMuLaw = AL_FORMAT_MONO_MULAW_EXT, /** - * @brief 16-bit signed [μ-Law Compressed Sound Format](https://en.wikipedia.org/wiki/Μ-law_algorithm) + * @brief 8-bit interleaved [μ-Law Compressed Sound Format](https://en.wikipedia.org/wiki/Μ-law_algorithm) * * @requires_al_extension Extension @al_extension{EXT,MULAW} */