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

Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
release/7.1
Zhao Zhili 7 months ago
parent 32fa20c0c9
commit a5a3788f56
  1. 2
      libavcodec/mediacodecenc.c

@ -534,7 +534,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]) {

Loading…
Cancel
Save