1
0
mirror of https://git.ffmpeg.org/ffmpeg.git synced 2025-01-06 07:10:21 +00:00

tests/swscale: allow nonzero positive return codes from sws_scale_frame()

See previous commit.

Signed-off-by: Niklas Haas <git@haasn.dev>
Sponsored-by: Sovereign Tech Fund
This commit is contained in:
Niklas Haas 2024-12-17 13:59:54 +01:00
parent e05a1bb879
commit b38f6f9990

View File

@ -135,7 +135,7 @@ static int scale_legacy(AVFrame *dst, const AVFrame *src, struct mode mode,
if ((ret = sws_init_context(sws_legacy, NULL, NULL)) < 0)
goto error;
for (int i = 0; !ret && i < opts.iters; i++)
for (int i = 0; ret >= 0 && i < opts.iters; i++)
ret = sws_scale_frame(sws_legacy, dst, src);
error: