ao_alsa: make partial writes an error message

And I think "partial write" is easier to understand than "short write".
This commit is contained in:
wm4 2020-09-03 22:40:20 +02:00
parent 1643cb865f
commit cf19a0d3cc
1 changed files with 2 additions and 2 deletions

View File

@ -1086,8 +1086,8 @@ static bool audio_write(struct ao *ao, void **data, int samples)
CHECK_ALSA_ERROR("pcm write error");
if (err >= 0 && err != samples) {
MP_WARN(ao, "unexpected short write (%d of %d frames), dropping audio\n",
(int)err, samples);
MP_ERR(ao, "unexpected partial write (%d of %d frames), dropping audio\n",
(int)err, samples);
}
return true;