mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Corrected universal 32-bit mixing routine
This commit is contained in:
parent
bc28eccdcd
commit
6235dab516
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,7 @@ static void mix_areas2(unsigned int size,
|
|||
sample = -0x800000;
|
||||
else
|
||||
sample = old_sample;
|
||||
*dst = sample;
|
||||
*dst = sample << 8;
|
||||
} while (*sum != old_sample);
|
||||
((char *)src) += src_step;
|
||||
((char *)dst) += dst_step;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue