diff options
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mixeng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mixeng.c b/audio/mixeng.c index b57fad8..725b529 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++; } } |