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);
|
long got = refill(stm, nullptr, 0, output_buffer, output_frames);
|
||||||
|
|
||||||
ALOGV("Output callback: output frames requested: %Iu, got %ld", output_frames,
|
if (got != output_frames) {
|
||||||
got);
|
ALOGV("Output callback: output frames requested: %Iu, got %ld", output_frames,
|
||||||
|
got);
|
||||||
|
}
|
||||||
if (got < 0) {
|
if (got < 0) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue