Add S-expression based video effects pipeline with modular effect definitions, constructs, and recipe files. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
6 lines
146 B
Common Lisp
6 lines
146 B
Common Lisp
;; Invert effect - inverts all colors
|
|
;; Uses vectorized invert-img primitive for fast processing
|
|
|
|
(define-effect invert ()
|
|
(invert-img frame))
|