Go to the source code of this file.
|
static void | filter_line_c (void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode) |
|
static void | filter_edges (void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode) |
|
static void | filter_line_c_16bit (void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode) |
|
static void | filter_edges_16bit (void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode) |
|
static int | filter_slice (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
|
static void | filter (AVFilterContext *ctx, AVFrame *dstpic, int parity, int tff) |
|
static av_cold void | uninit (AVFilterContext *ctx) |
|
static int | query_formats (AVFilterContext *ctx) |
|
static int | config_props (AVFilterLink *link) |
|
◆ CHECK
Value: {
int score =
FFABS(cur[mrefs - 1 + (j)] - cur[prefs - 1 - (j)])\
+
FFABS(cur[mrefs +(j)] - cur[prefs -(j)])\
+
FFABS(cur[mrefs + 1 + (j)] - cur[prefs + 1 - (j)]);\
if (score < spatial_score) {\
spatial_score= score;\
spatial_pred= (cur[mrefs +(j)] + cur[prefs -(j)])>>1;\
Definition at line 41 of file vf_yadif.c.
◆ FILTER
#define FILTER |
( |
|
start, |
|
|
|
end, |
|
|
|
is_not_edge |
|
) |
| |
◆ MAX_ALIGN
◆ filter_line_c()
static void filter_line_c |
( |
void * |
dst1, |
|
|
void * |
prev1, |
|
|
void * |
cur1, |
|
|
void * |
next1, |
|
|
int |
w, |
|
|
int |
prefs, |
|
|
int |
mrefs, |
|
|
int |
parity, |
|
|
int |
mode |
|
) |
| |
|
static |
◆ filter_edges()
static void filter_edges |
( |
void * |
dst1, |
|
|
void * |
prev1, |
|
|
void * |
cur1, |
|
|
void * |
next1, |
|
|
int |
w, |
|
|
int |
prefs, |
|
|
int |
mrefs, |
|
|
int |
parity, |
|
|
int |
mode |
|
) |
| |
|
static |
◆ filter_line_c_16bit()
static void filter_line_c_16bit |
( |
void * |
dst1, |
|
|
void * |
prev1, |
|
|
void * |
cur1, |
|
|
void * |
next1, |
|
|
int |
w, |
|
|
int |
prefs, |
|
|
int |
mrefs, |
|
|
int |
parity, |
|
|
int |
mode |
|
) |
| |
|
static |
◆ filter_edges_16bit()
static void filter_edges_16bit |
( |
void * |
dst1, |
|
|
void * |
prev1, |
|
|
void * |
cur1, |
|
|
void * |
next1, |
|
|
int |
w, |
|
|
int |
prefs, |
|
|
int |
mrefs, |
|
|
int |
parity, |
|
|
int |
mode |
|
) |
| |
|
static |
◆ filter_slice()
◆ filter()
◆ uninit()
◆ query_formats()
◆ config_props()
◆ yadif_class
Initial value:= {
.class_name = "yadif",
}
Definition at line 354 of file vf_yadif.c.
◆ avfilter_vf_yadif_inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 362 of file vf_yadif.c.
◆ avfilter_vf_yadif_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 371 of file vf_yadif.c.
◆ ff_vf_yadif