From 9a291c1e590936fec6a24da954d5ec022c968e08 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <slouken@libsdl.org>
Date: Fri, 20 Oct 2017 14:51:22 -0700
Subject: [PATCH] Added a note about adjusting channel weights when converting
 to fewer channels

---
 src/audio/SDL_audiocvt.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/audio/SDL_audiocvt.c b/src/audio/SDL_audiocvt.c
index 9dba98088..a3cb4c73d 100644
--- a/src/audio/SDL_audiocvt.c
+++ b/src/audio/SDL_audiocvt.c
@@ -22,6 +22,9 @@
 
 /* Functions for audio drivers to perform runtime conversion of audio format */
 
+/* FIXME: Channel weights when converting from more channels to fewer may need to be adjusted, see https://msdn.microsoft.com/en-us/library/windows/desktop/ff819070(v=vs.85).aspx
+*/
+
 #include "SDL.h"
 #include "SDL_audio.h"
 #include "SDL_audio_c.h"