mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08:39 +09:00
Fix warnings about unreachable code in cubeb
This commit is contained in:
parent
f922e8ae0e
commit
888d5e5395
2 changed files with 2 additions and 2 deletions
|
|
@ -562,7 +562,7 @@ int cubeb_set_log_callback(cubeb_log_level log_level,
|
|||
void
|
||||
cubeb_crash()
|
||||
{
|
||||
abort();
|
||||
*((volatile int *) NULL) = 0;
|
||||
abort();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1443,12 +1443,12 @@ audiounit_set_buffer_size(cubeb_stream * stm, uint32_t new_size_frames, set_buff
|
|||
buffer_size_changed_callback,
|
||||
stm);
|
||||
if (r != noErr) {
|
||||
return CUBEB_ERROR;
|
||||
if (set_side == INPUT) {
|
||||
PRINT_ERROR_CODE("AudioUnitAddPropertyListener/input/kAudioDevicePropertyBufferFrameSize", r);
|
||||
} else {
|
||||
PRINT_ERROR_CODE("AudioUnitAddPropertyListener/output/kAudioDevicePropertyBufferFrameSize", r);
|
||||
}
|
||||
return CUBEB_ERROR;
|
||||
}
|
||||
|
||||
if (!stm->buffer_size_change_state && count >= 30) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue