|
FFmpeg
4.4.8
|
#include "libavutil/common.h"#include "libavutil/imgutils.h"#include "libavutil/opt.h"#include "libavutil/pixdesc.h"#include "avfilter.h"#include "filters.h"#include "formats.h"#include "internal.h"#include "video.h"Go to the source code of this file.
Data Structures | |
| struct | ESTDIFContext |
| struct | ThreadData |
| Used for passing data between threads. More... | |
Macros | |
| #define | MAX_R 15 |
| #define | S (MAX_R * 2 + 1) |
| #define | OFFSET(x) offsetof(ESTDIFContext, x) |
| #define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
| #define | CONST(name, help, val, unit) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
| #define | MIDL(type, ss) |
| #define | MID2(type, ss) |
| #define | MID4(type, ss) |
| #define | MID6(type, ss) |
| #define | DIFF(type, ss) |
| #define | COST(type, ss) |
| #define | INTERPOLATE(type, atype, max, ss) |
Functions | |
| AVFILTER_DEFINE_CLASS (estdif) | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_output (AVFilterLink *outlink) |
| static int | deinterlace_slice (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
| static int | filter (AVFilterContext *ctx, int is_second, AVFrame *in) |
| static int | config_input (AVFilterLink *inlink) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| static int | request_frame (AVFilterLink *link) |
| static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
| static const AVOption | estdif_options [] |
| static const AVFilterPad | estdif_inputs [] |
| static const AVFilterPad | estdif_outputs [] |
| AVFilter | ff_vf_estdif |
| #define MAX_R 15 |
Definition at line 76 of file vf_estdif.c.
| #define S (MAX_R * 2 + 1) |
Definition at line 77 of file vf_estdif.c.
| #define OFFSET | ( | x | ) | offsetof(ESTDIFContext, x) |
Definition at line 79 of file vf_estdif.c.
Definition at line 80 of file vf_estdif.c.
| #define CONST | ( | name, | |
| help, | |||
| val, | |||
| unit | |||
| ) | { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
Definition at line 81 of file vf_estdif.c.
Definition at line 156 of file vf_estdif.c.
Definition at line 168 of file vf_estdif.c.
Definition at line 184 of file vf_estdif.c.
Definition at line 204 of file vf_estdif.c.
Definition at line 226 of file vf_estdif.c.
Definition at line 253 of file vf_estdif.c.
| AVFILTER_DEFINE_CLASS | ( | estdif | ) |
|
static |
Definition at line 105 of file vf_estdif.c.
|
static |
Definition at line 139 of file vf_estdif.c.
|
static |
Definition at line 337 of file vf_estdif.c.
Referenced by filter().
|
static |
Definition at line 435 of file vf_estdif.c.
Referenced by filter_frame().
|
static |
Definition at line 459 of file vf_estdif.c.
|
static |
Definition at line 493 of file vf_estdif.c.
Referenced by request_frame().
|
static |
Definition at line 526 of file vf_estdif.c.
|
static |
Definition at line 554 of file vf_estdif.c.
|
static |
Definition at line 83 of file vf_estdif.c.
|
static |
Definition at line 561 of file vf_estdif.c.
|
static |
Definition at line 571 of file vf_estdif.c.
| AVFilter ff_vf_estdif |
Definition at line 581 of file vf_estdif.c.