mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2024-12-22 19:05:37 +00:00
Merge pull request #101 from ruurdadema/master
Fixed issue with CoreAudio stereo stream being mono
This commit is contained in:
commit
8583897d72
|
@ -1169,7 +1169,7 @@ static OSStatus read_callback_ca(void *userdata, AudioUnitRenderActionFlags *io_
|
|||
assert(audio_buffer->mNumberChannels == instream->layout.channel_count);
|
||||
assert(audio_buffer->mDataByteSize == in_number_frames * instream->bytes_per_frame);
|
||||
for (int ch = 0; ch < instream->layout.channel_count; ch += 1) {
|
||||
isca->areas[ch].ptr = ((char*)audio_buffer->mData) + instream->bytes_per_sample;
|
||||
isca->areas[ch].ptr = ((char*)audio_buffer->mData) + (instream->bytes_per_sample * ch);
|
||||
isca->areas[ch].step = instream->bytes_per_frame;
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue