FFmpeg
|
#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 | W3FDIFContext |
Macros | |
#define | OFFSET(x) offsetof(W3FDIFContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
#define | CONST(name, help, val, unit) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
Functions | |
AVFILTER_DEFINE_CLASS (w3fdif) | |
static int | query_formats (AVFilterContext *ctx) |
static int | config_input (AVFilterLink *inlink) |
static int | config_output (AVFilterLink *outlink) |
static void | deinterlace_plane (AVFilterContext *ctx, AVFrame *out, const AVFrame *cur, const AVFrame *adj, const int filter, const int plane) |
static int | filter (AVFilterContext *ctx, int is_second) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *frame) |
static int | request_frame (AVFilterLink *outlink) |
static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
static const AVOption | w3fdif_options [] |
static const int8_t | n_coef_lf [2] = { 2, 4 } |
static const int32_t | coef_lf [2][4] |
static const int8_t | n_coef_hf [2] = { 3, 5 } |
static const int32_t | coef_hf [2][5] |
static const AVFilterPad | w3fdif_inputs [] |
static const AVFilterPad | w3fdif_outputs [] |
AVFilter | ff_vf_w3fdif |
#define OFFSET | ( | x | ) | offsetof(W3FDIFContext, x) |
Definition at line 46 of file vf_w3fdif.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 47 of file vf_w3fdif.c.
#define CONST | ( | name, | |
help, | |||
val, | |||
unit | |||
) | { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
Definition at line 48 of file vf_w3fdif.c.
AVFILTER_DEFINE_CLASS | ( | w3fdif | ) |
|
static |
Definition at line 62 of file vf_w3fdif.c.
|
static |
Definition at line 82 of file vf_w3fdif.c.
|
static |
Definition at line 102 of file vf_w3fdif.c.
|
static |
Definition at line 130 of file vf_w3fdif.c.
Referenced by filter().
|
static |
Definition at line 252 of file vf_w3fdif.c.
Referenced by deinterlace_plane(), and filter_frame().
|
static |
Definition at line 288 of file vf_w3fdif.c.
Referenced by request_frame().
|
static |
Definition at line 326 of file vf_w3fdif.c.
|
static |
Definition at line 354 of file vf_w3fdif.c.
|
static |
Definition at line 50 of file vf_w3fdif.c.
|
static |
Definition at line 123 of file vf_w3fdif.c.
Referenced by deinterlace_plane().
|
static |
Definition at line 124 of file vf_w3fdif.c.
Referenced by deinterlace_plane().
|
static |
Definition at line 126 of file vf_w3fdif.c.
Referenced by deinterlace_plane().
|
static |
Definition at line 127 of file vf_w3fdif.c.
Referenced by deinterlace_plane().
|
static |
Definition at line 364 of file vf_w3fdif.c.
|
static |
Definition at line 374 of file vf_w3fdif.c.
AVFilter ff_vf_w3fdif |
Definition at line 384 of file vf_w3fdif.c.