FFmpeg
4.4.4
|
#include "libavutil/common.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.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 75 of file vf_estdif.c.
#define S (MAX_R * 2 + 1) |
Definition at line 76 of file vf_estdif.c.
#define OFFSET | ( | x | ) | offsetof(ESTDIFContext, x) |
Definition at line 78 of file vf_estdif.c.
Definition at line 79 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 80 of file vf_estdif.c.
Definition at line 155 of file vf_estdif.c.
Definition at line 167 of file vf_estdif.c.
Definition at line 183 of file vf_estdif.c.
Definition at line 203 of file vf_estdif.c.
Definition at line 225 of file vf_estdif.c.
Definition at line 252 of file vf_estdif.c.
AVFILTER_DEFINE_CLASS | ( | estdif | ) |
|
static |
Definition at line 104 of file vf_estdif.c.
|
static |
Definition at line 138 of file vf_estdif.c.
|
static |
Definition at line 336 of file vf_estdif.c.
Referenced by filter().
|
static |
Definition at line 434 of file vf_estdif.c.
Referenced by filter_frame().
|
static |
Definition at line 458 of file vf_estdif.c.
|
static |
Definition at line 492 of file vf_estdif.c.
Referenced by request_frame().
|
static |
Definition at line 525 of file vf_estdif.c.
|
static |
Definition at line 553 of file vf_estdif.c.
|
static |
Definition at line 82 of file vf_estdif.c.
|
static |
Definition at line 560 of file vf_estdif.c.
|
static |
Definition at line 570 of file vf_estdif.c.
AVFilter ff_vf_estdif |
Definition at line 580 of file vf_estdif.c.