lavc/vaapi_decode: Reject decoding of frames with no slices

Matches other hwaccels.
release/7.1
David Rosca 8 months ago committed by Haihao Xiang
parent 45d31614bc
commit f7a1453f27
  1. 5
      libavcodec/vaapi_decode.c

@ -156,6 +156,11 @@ int ff_vaapi_decode_issue(AVCodecContext *avctx,
VAStatus vas;
int err;
if (pic->nb_slices <= 0) {
err = AVERROR(EINVAL);
goto fail;
}
av_log(avctx, AV_LOG_DEBUG, "Decode to surface %#x.\n",
pic->output_surface);

Loading…
Cancel
Save