Change the scope to be input when querying input buffer size

This commit is contained in:
Paul Adenot 2016-07-19 12:26:47 +02:00
Родитель 5c24a2bd30
Коммит 04787b65bf
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -992,7 +992,7 @@ audiounit_stream_init(cubeb * context,
}
} else {
if (AudioUnitGetProperty(stm->input_unit, kAudioDevicePropertyBufferFrameSize,
kAudioUnitScope_Output, 0, &default_frame_count, &size) != 0) {
kAudioUnitScope_Input, 0, &default_frame_count, &size) != 0) {
audiounit_stream_destroy(stm);
return CUBEB_ERROR;
}