问题 I am using libswresample to resample from any PCM format to 44.1kHz, 16bit int, stereo. I was playing around with some audio volume analyzing of the resulting audio stream and I figured out that in case I have 44.1kHz, 16bit int mono as the source, I have roughly the formular: leftSample = sourceSample / sqrt(2); rightSample = sourceSample / sqrt(2); But I was expecting: leftSample = sourceSample; rightSample = sourceSample; (In case the source is stereo, I simply have leftSample =