Commit 49287bbf authored by Paul B Mahol's avatar Paul B Mahol

doc/filters: add few more examples for blend filter

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 045214e3
...@@ -2412,6 +2412,24 @@ Apply 1x1 checkerboard effect: ...@@ -2412,6 +2412,24 @@ Apply 1x1 checkerboard effect:
@example @example
blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)' blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
@end example @end example
@item
Apply uncover left effect:
@example
blend=all_expr='if(gte(N*SW+X,W),A,B)'
@end example
@item
Apply uncover down effect:
@example
blend=all_expr='if(gte(Y-N*SH,0),A,B)'
@end example
@item
Apply uncover up-left effect:
@example
blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
@end example
@end itemize @end itemize
@section boxblur @section boxblur
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment