avcodec/mediacodecenc: Fix return empty packet when bsf is used

Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
(cherry picked from commit a5a3788f56)
This commit is contained in:
Zhao Zhili 2024-04-17 12:37:38 +08:00
parent 2d3ee7c069
commit 13e93ffbfd
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ static int mediacodec_encode(AVCodecContext *avctx, AVPacket *pkt)
return 0;
}
if (ret != AVERROR(EAGAIN))
if (ret < 0 && ret != AVERROR(EAGAIN))
return ret;
if (!s->frame->buf[0]) {