lavc/vaapi_decode: Reject decoding of frames with no slices

Matches other hwaccels.
This commit is contained in:
David Rosca 2024-05-13 09:38:49 +02:00 committed by Haihao Xiang
parent 45d31614bc
commit f7a1453f27

View File

@ -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);