FFmpeg
|
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "filters.h"
#include "video.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 [] |
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 50 of file vf_kerndeint.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 51 of file vf_kerndeint.c.
AVFILTER_DEFINE_CLASS | ( | kerndeint | ) |
|
static |
Definition at line 63 of file vf_kerndeint.c.
|
static |
Definition at line 80 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 101 of file vf_kerndeint.c.
|
static |
Definition at line 52 of file vf_kerndeint.c.
|
static |
Definition at line 70 of file vf_kerndeint.c.
|
static |
Definition at line 289 of file vf_kerndeint.c.
const AVFilter ff_vf_kerndeint |
Definition at line 299 of file vf_kerndeint.c.