avcodec/hw_base_encode: Simplify EOF check

Found while reviewing CID1608712 Explicit null dereferenced

Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2024-07-05 02:21:47 +02:00
parent b2aaeb81f6
commit 1e888fb006

View File

@ -546,11 +546,10 @@ start:
}
err = ff_encode_get_frame(avctx, frame);
if (err < 0 && err != AVERROR_EOF)
return err;
if (err == AVERROR_EOF)
if (err == AVERROR_EOF) {
frame = NULL;
} else if (err < 0)
return err;
err = hw_base_encode_send_frame(avctx, ctx, frame);
if (err < 0)