This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 3a2c5050c6eb5dd2ffdf74b0af735c4d76ee9013 Author: Niklas Haas <[email protected]> AuthorDate: Fri Jun 19 13:30:08 2026 +0200 Commit: Niklas Haas <[email protected]> CommitDate: Sat Jun 20 03:05:08 2026 +0200 swscale: fix format equality check I can't say I remember why this logic was written this way, but I can't think of any good reason why we should exclude comparing the image dimensions here - the intent is obviously to allow passthrough / noop. Signed-off-by: Niklas Haas <[email protected]> --- libswscale/swscale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/swscale.c b/libswscale/swscale.c index c0cdd17b78..508967a13c 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -1512,7 +1512,7 @@ int sws_frame_setup(SwsContext *ctx, const AVFrame *dst, const AVFrame *src) src_ok = ff_test_fmt(backends, &src_fmt, 0); dst_ok = ff_test_fmt(backends, &dst_fmt, 1); - if ((!src_ok || !dst_ok) && !ff_props_equal(&src_fmt, &dst_fmt)) { + if ((!src_ok || !dst_ok) && !ff_fmt_equal(&src_fmt, &dst_fmt)) { err_msg = src_ok ? "Unsupported output" : "Unsupported input"; ret = AVERROR(ENOTSUP); goto fail; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
