summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorVolker RĂ¼melin <vr_qemu@t-online.de>2020-03-08 20:33:18 +0100
committerGerd Hoffmann <kraxel@redhat.com>2020-03-16 10:18:07 +0100
commit33a93baeae4ca8f03a84b194c55f6e5ee09c33f8 (patch)
treec199342139b0f60cf22531e483ecd87de2eb6aea
parentdd381319a39d90e3fddd7afbedf5293a49d6f1d6 (diff)
downloadfocaccia-qemu-33a93baeae4ca8f03a84b194c55f6e5ee09c33f8.tar.gz
focaccia-qemu-33a93baeae4ca8f03a84b194c55f6e5ee09c33f8.zip
audio: consistency changes
Change the clip_natural_float_from_mono() function in
audio/mixeng.c to be consistent with the clip_*_from_mono()
functions in audio/mixeng_template.h.

Signed-off-by: Volker RĂ¼melin <vr_qemu@t-online.de>
Message-id: 20200308193321.20668-3-vr_qemu@t-online.de
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r--audio/mixeng.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mixeng.c b/audio/mixeng.c
index b57fad83bf..725b529be7 100644
--- a/audio/mixeng.c
+++ b/audio/mixeng.c
@@ -316,7 +316,7 @@ static void clip_natural_float_from_mono(void *dst, const struct st_sample *src,
     float *out = (float *)dst;
 
     while (samples--) {
-        *out++ = CLIP_NATURAL_FLOAT(src->l) + CLIP_NATURAL_FLOAT(src->r);
+        *out++ = CLIP_NATURAL_FLOAT(src->l + src->r);
         src++;
     }
 }