Mixing 16 bit linear PCM streams and avoiding clipping/overflow

前端 未结 6 546
逝去的感伤
逝去的感伤 2021-01-31 12:45

I\'ve trying to mix together 2 16bit linear PCM audio streams and I can\'t seem to overcome the noise issues. I think they are coming from overflow when mixing samples together.

6条回答
  •  悲哀的现实
    2021-01-31 13:18

    Since you are in time domain the frequency info is in the difference between successive samples, when you divide by two you damage that information. That's why adding and clipping works better. Clipping will of course add very high frequency noise which is probably filtered out.

提交回复
热议问题