Fix voice message recording with FFmpeg 4.2.

This commit is contained in:
John Preston 2021-05-26 09:59:19 +04:00
parent 479b604c0e
commit e39f9bef1f
1 changed files with 2 additions and 1 deletions

View File

@ -709,8 +709,9 @@ bool Instance::Inner::writeFrame(AVFrame *frame) {
if (frame && packetsWritten == AVERROR_EOF) {
LOG(("Audio Error: EOF in packets received when EAGAIN was got in avcodec_send_frame()"));
fail();
return false;
}
return false;
return true;
} else if (!packetsWritten) {
LOG(("Audio Error: No packets received when EAGAIN was got in avcodec_send_frame()"));
fail();