mirror of https://github.com/PCSX2/pcsx2.git
3rdparty/cubeb: Silence wasapi output frames logging unless mismatch
This commit is contained in:
parent
3695ae07d5
commit
1aa734cb83
|
@ -1310,8 +1310,10 @@ refill_callback_output(cubeb_stream * stm)
|
|||
|
||||
long got = refill(stm, nullptr, 0, output_buffer, output_frames);
|
||||
|
||||
ALOGV("Output callback: output frames requested: %Iu, got %ld", output_frames,
|
||||
got);
|
||||
if (got != output_frames) {
|
||||
ALOGV("Output callback: output frames requested: %Iu, got %ld", output_frames,
|
||||
got);
|
||||
}
|
||||
if (got < 0) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue