FFmpeg
4.0
|
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | DebandContext |
struct | ThreadData |
Macros | |
#define | OFFSET(x) offsetof(DebandContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Functions | |
AVFILTER_DEFINE_CLASS (deband) | |
static int | query_formats (AVFilterContext *ctx) |
static float | frand (int x, int y) |
static int | get_avg (int ref0, int ref1, int ref2, int ref3) |
static int | deband_8_c (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | deband_8_coupling_c (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | deband_16_coupling_c (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | deband_16_c (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
static int | config_input (AVFilterLink *inlink) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
static const AVOption | deband_options [] |
static const AVFilterPad | avfilter_vf_deband_inputs [] |
static const AVFilterPad | avfilter_vf_deband_outputs [] |
AVFilter | ff_vf_deband |
#define OFFSET | ( | x | ) | offsetof(DebandContext, x) |
Definition at line 51 of file vf_deband.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 52 of file vf_deband.c.
AVFILTER_DEFINE_CLASS | ( | deband | ) |
|
static |
Definition at line 72 of file vf_deband.c.
Definition at line 117 of file vf_deband.c.
Referenced by config_input().
Definition at line 124 of file vf_deband.c.
Referenced by deband_16_c(), deband_16_coupling_c(), deband_8_c(), and deband_8_coupling_c().
|
static |
Definition at line 133 of file vf_deband.c.
Referenced by config_input().
|
static |
Definition at line 182 of file vf_deband.c.
Referenced by config_input().
|
static |
Definition at line 247 of file vf_deband.c.
Referenced by config_input().
|
static |
Definition at line 314 of file vf_deband.c.
Referenced by config_input().
|
static |
Definition at line 363 of file vf_deband.c.
|
static |
Definition at line 410 of file vf_deband.c.
|
static |
Definition at line 434 of file vf_deband.c.
|
static |
Definition at line 54 of file vf_deband.c.
|
static |
Definition at line 442 of file vf_deband.c.
|
static |
Definition at line 452 of file vf_deband.c.
AVFilter ff_vf_deband |
Definition at line 460 of file vf_deband.c.