This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 1980d8ba8a9a79d31f86281e2f11e98629a65949 Author: Ramiro Polla <[email protected]> AuthorDate: Mon Mar 9 20:50:45 2026 +0100 Commit: Ramiro Polla <[email protected]> CommitDate: Sat Mar 14 06:13:19 2026 +0000 swscale/tests/swscale: remove duplicate printing of parameters on error Sponsored-by: Sovereign Tech Fund Signed-off-by: Ramiro Polla <[email protected]> --- libswscale/tests/swscale.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libswscale/tests/swscale.c b/libswscale/tests/swscale.c index 6fd00e6562..f04f771287 100644 --- a/libswscale/tests/swscale.c +++ b/libswscale/tests/swscale.c @@ -333,10 +333,6 @@ static void print_results(const AVFrame *ref, const AVFrame *src, const AVFrame if (r->loss - expected_loss > 1e-4 && dst_w >= ref->width && dst_h >= ref->height) { const int bad = r->loss - expected_loss > 1e-2; const int level = bad ? AV_LOG_ERROR : AV_LOG_WARNING; - av_log(NULL, level, "%s %dx%d -> %s %3dx%3d, flags=0x%x dither=%u\n", - av_get_pix_fmt_name(src->format), src->width, src->height, - av_get_pix_fmt_name(dst->format), dst->width, dst->height, - mode->flags, mode->dither); av_log(NULL, level, " loss %e is %s by %e, expected loss %e\n", r->loss, bad ? "WORSE" : "worse", r->loss - expected_loss, expected_loss); } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
