You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02: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:
@@ -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:
|
||||
|
Reference in New Issue
Block a user