diff --git a/3rdparty/cubeb/src/cubeb_wasapi.cpp b/3rdparty/cubeb/src/cubeb_wasapi.cpp index 7767b3a249..6bbaab5cff 100644 --- a/3rdparty/cubeb/src/cubeb_wasapi.cpp +++ b/3rdparty/cubeb/src/cubeb_wasapi.cpp @@ -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; }