SDL_mixer: opus: change audio stream src_format from AUDIO_S16 to AUDIO_S16SYS

From cbb79ee4f42be4060c7bfe8e8f11b6bba61d9084 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Fri, 26 Mar 2021 17:02:56 +0300
Subject: [PATCH] opus: change audio stream src_format from AUDIO_S16 to
 AUDIO_S16SYS

---
 src/codecs/music_opus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/codecs/music_opus.c b/src/codecs/music_opus.c
index e695147..e792f3c 100644
--- a/src/codecs/music_opus.c
+++ b/src/codecs/music_opus.c
@@ -195,7 +195,7 @@ static int OPUS_UpdateSection(OPUS_music *music)
         music->stream = NULL;
     }
 
-    music->stream = SDL_NewAudioStream(AUDIO_S16, (Uint8)op_info->channel_count, 48000,
+    music->stream = SDL_NewAudioStream(AUDIO_S16SYS, (Uint8)op_info->channel_count, 48000,
                                        music_spec.format, music_spec.channels, music_spec.freq);
     if (!music->stream) {
         return -1;