[FFmpeg-cvslog] checkasm: bench each vf_blend mode once

James Almer git at videolan.org
Mon Feb 22 17:55:16 CET 2016


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sat Feb 20 16:02:30 2016 -0300| [26034929d574b6ce051677be5fe9ddba70f68a4b] | committer: James Almer

checkasm: bench each vf_blend mode once

Also bench a smaller buffer. This drastically reduces --bench runtime
and reports smaller, more readable numbers.

Reviewed-by: Michael Niedermayer <michael at niedermayer.cc>
Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=26034929d574b6ce051677be5fe9ddba70f68a4b
---

 tests/checkasm/vf_blend.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/checkasm/vf_blend.c b/tests/checkasm/vf_blend.c
index cfc389b..aa568c0 100644
--- a/tests/checkasm/vf_blend.c
+++ b/tests/checkasm/vf_blend.c
@@ -79,9 +79,9 @@
                      dst2 + dst_offset, WIDTH, WIDTH, HEIGHT, &param, NULL);               \
             if (memcmp(top1, top2, BUF_SIZE) || memcmp(bot1, bot2, BUF_SIZE) || memcmp(dst1, dst2, BUF_SIZE)) \
                 fail();                                                                    \
-            bench_new(top2 + src_offset, WIDTH, bot2 + src_offset, WIDTH,                  \
-                      dst2, WIDTH, WIDTH, HEIGHT, &param, NULL);                           \
         }                                                                                  \
+        bench_new(top2, WIDTH / 4, bot2, WIDTH / 4, dst2, WIDTH / 4,                       \
+                  WIDTH / 4, HEIGHT / 4, &param, NULL);                                    \
     } while (0)
 
 void checkasm_check_blend(void)



More information about the ffmpeg-cvslog mailing list