FFmpeg
|
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | KerndeintContext |
Macros | |
#define | OFFSET(x) offsetof(KerndeintContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
AVFILTER_DEFINE_CLASS (kerndeint) | |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | config_props (AVFilterLink *inlink) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *inpic) |
Variables | |
static const AVOption | kerndeint_options [] |
static enum AVPixelFormat | pix_fmts [] |
static const AVFilterPad | kerndeint_inputs [] |
static const AVFilterPad | kerndeint_outputs [] |
const AVFilter | ff_vf_kerndeint |
Kernel Deinterlacer Ported from MPlayer libmpcodecs/vf_kerndeint.c.
Definition in file vf_kerndeint.c.
#define OFFSET | ( | x | ) | offsetof(KerndeintContext, x) |
Definition at line 49 of file vf_kerndeint.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 50 of file vf_kerndeint.c.
AVFILTER_DEFINE_CLASS | ( | kerndeint | ) |
|
static |
Definition at line 62 of file vf_kerndeint.c.
|
static |
Definition at line 79 of file vf_kerndeint.c.
|
static |
< Previous field's pixel line number n
< Previous field's pixel line number (n - 1)
< Previous field's pixel line number (n + 1)
< Previous field's pixel line number (n - 2)
< Previous field's pixel line number (n + 2)
< Previous field's pixel line number (n - 4)
< Previous field's pixel line number (n + 4)
< Current field's pixel line number n
< Current field's pixel line number (n - 1)
< Current field's pixel line number (n + 1)
< Current field's pixel line number (n - 2)
< Current field's pixel line number (n + 2)
< Current field's pixel line number (n - 3)
< Current field's pixel line number (n + 3)
< Current field's pixel line number (n - 4)
< Current field's pixel line number (n + 4)
Definition at line 100 of file vf_kerndeint.c.
|
static |
Definition at line 51 of file vf_kerndeint.c.
|
static |
Definition at line 69 of file vf_kerndeint.c.
|
static |
Definition at line 283 of file vf_kerndeint.c.
|
static |
Definition at line 292 of file vf_kerndeint.c.
const AVFilter ff_vf_kerndeint |
Definition at line 300 of file vf_kerndeint.c.