|
FFmpeg
|
Kernel Deinterlacer Ported from MPlayer libmpcodecs/vf_kerndeint.c. More...
#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 int | init (AVFilterContext *ctx, const char *args) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_props (AVFilterLink *inlink) |
| static int | filter_frame (AVFilterLink *inlink, AVFilterBufferRef *inpic) |
Variables | |
| static const AVOption | kerndeint_options [] |
| static const AVFilterPad | kerndeint_inputs [] |
| static const AVFilterPad | kerndeint_outputs [] |
| AVFilter | avfilter_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 47 of file vf_kerndeint.c.
| #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 48 of file vf_kerndeint.c.
| AVFILTER_DEFINE_CLASS | ( | kerndeint | ) |
|
static |
Definition at line 60 of file vf_kerndeint.c.
|
static |
Definition at line 71 of file vf_kerndeint.c.
|
static |
Definition at line 79 of file vf_kerndeint.c.
|
static |
Definition at line 96 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 112 of file vf_kerndeint.c.
|
static |
Definition at line 49 of file vf_kerndeint.c.
|
static |
Definition at line 295 of file vf_kerndeint.c.
|
static |
Definition at line 306 of file vf_kerndeint.c.
| AVFilter avfilter_vf_kerndeint |
Definition at line 314 of file vf_kerndeint.c.
1.8.2