Browse Source

checkasm/vf_blend: use the correct depth parameters to initialize the blend modes

This effectively enables the tests that until now were just running
the C version alone.

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.4
James Almer 5 years ago
parent
commit
55e1bc39cb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/checkasm/vf_blend.c

+ 1
- 1
tests/checkasm/vf_blend.c View File

@@ -99,7 +99,7 @@ void checkasm_check_blend(void)

#define check_and_report(name, val, depth) \
param.mode = val; \
ff_blend_init(&param, depth - 1); \
ff_blend_init(&param, depth * 8); \
if (check_func(param.blend, #name)) \
check_blend_func(depth);



Loading…
Cancel
Save