3rdparty/cubeb: Silence wasapi output frames logging unless mismatch

This commit is contained in:
Connor McLaughlin 2022-09-29 22:52:42 +10:00 committed by refractionpcsx2
parent 3695ae07d5
commit 1aa734cb83
1 changed files with 4 additions and 2 deletions

View File

@ -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;
}