|
FFmpeg
|
#include "libavutil/common.h"#include "libavutil/intfloat.h"#include "avfilter.h"#include "video.h"#include "blend.h"Go to the source code of this file.
Macros | |
| #define | PIXEL uint16_t |
| #define | MAX ((1 << DEPTH) - 1) |
| #define | HALF (1 << (DEPTH - 1)) |
| #define | CLIP(x) |
| #define | MULTIPLY(x, a, b) |
| #define | SCREEN(x, a, b) |
| #define | BURN(a, b) |
| #define | DODGE(a, b) |
| #define | GEOMETRIC(a, b) |
| #define | INT2FLOAT(x) |
| #define | FLOAT2INT(x) |
| #define | MDIV (0.125f * (1 << DEPTH)) |
| #define | LRINTF(x) |
| #define | A top[j] |
| #define | B bottom[j] |
| #define | fn2(a, b) |
| #define | fn1(name, depth) |
| #define | fn0(name) |
| #define | fn(NAME, EXPR) |
| #define PIXEL uint16_t |
Definition at line 45 of file blend_modes.c.
| #define MAX ((1 << DEPTH) - 1) |
Definition at line 46 of file blend_modes.c.
Referenced by checkasm_check_sw_ops().
| #define HALF (1 << (DEPTH - 1)) |
Definition at line 47 of file blend_modes.c.
| #define CLIP | ( | x | ) |
Definition at line 48 of file blend_modes.c.
Definition at line 65 of file blend_modes.c.
Definition at line 69 of file blend_modes.c.
| #define INT2FLOAT | ( | x | ) |
Definition at line 70 of file blend_modes.c.
| #define FLOAT2INT | ( | x | ) |
Definition at line 71 of file blend_modes.c.
Definition at line 72 of file blend_modes.c.
| #define LRINTF | ( | x | ) |
Definition at line 73 of file blend_modes.c.
| #define A top[j] |
Definition at line 86 of file blend_modes.c.
| #define B bottom[j] |
Definition at line 87 of file blend_modes.c.
Definition at line 89 of file blend_modes.c.
| #define fn1 | ( | name, | |
| depth ) |
| #define fn0 | ( | name | ) |
Definition at line 91 of file blend_modes.c.
| #define fn | ( | NAME, | |
| EXPR ) |
Definition at line 93 of file blend_modes.c.