FFmpeg
4.0
|
progressive to interlaced content filter, inspired by heavy debugging of tinterlace filter More...
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "libavutil/avassert.h"
#include "formats.h"
#include "avfilter.h"
#include "interlace.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Macros | |
#define | OFFSET(x) offsetof(InterlaceContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Functions | |
AVFILTER_DEFINE_CLASS (interlace) | |
static void | lowpass_line_c (uint8_t *dstp, ptrdiff_t linesize, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max) |
static void | lowpass_line_c_16 (uint8_t *dst8, ptrdiff_t linesize, const uint8_t *src8, ptrdiff_t mref, ptrdiff_t pref, int clip_max) |
static void | lowpass_line_complex_c (uint8_t *dstp, ptrdiff_t linesize, const uint8_t *srcp, ptrdiff_t mref, ptrdiff_t pref, int clip_max) |
static void | lowpass_line_complex_c_16 (uint8_t *dst8, ptrdiff_t linesize, const uint8_t *src8, ptrdiff_t mref, ptrdiff_t pref, int clip_max) |
static int | query_formats (AVFilterContext *ctx) |
static av_cold void | uninit (AVFilterContext *ctx) |
void | ff_interlace_init (InterlaceContext *s, int depth) |
static int | config_out_props (AVFilterLink *outlink) |
static void | copy_picture_field (InterlaceContext *s, AVFrame *src_frame, AVFrame *dst_frame, AVFilterLink *inlink, enum FieldType field_type, int lowpass) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *buf) |
Variables | |
static const AVOption | interlace_options [] |
static enum AVPixelFormat | formats_supported [] |
static const AVFilterPad | inputs [] |
static const AVFilterPad | outputs [] |
AVFilter | ff_vf_interlace |
progressive to interlaced content filter, inspired by heavy debugging of tinterlace filter
Definition in file vf_interlace.c.
#define OFFSET | ( | x | ) | offsetof(InterlaceContext, x) |
Definition at line 41 of file vf_interlace.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 42 of file vf_interlace.c.
AVFILTER_DEFINE_CLASS | ( | interlace | ) |
|
static |
Definition at line 63 of file vf_interlace.c.
Referenced by ff_interlace_init().
|
static |
Definition at line 78 of file vf_interlace.c.
Referenced by ff_interlace_init().
|
static |
Definition at line 97 of file vf_interlace.c.
Referenced by ff_interlace_init().
|
static |
Definition at line 125 of file vf_interlace.c.
Referenced by ff_interlace_init().
|
static |
Definition at line 172 of file vf_interlace.c.
|
static |
Definition at line 180 of file vf_interlace.c.
void ff_interlace_init | ( | InterlaceContext * | s, |
int | depth | ||
) |
Definition at line 188 of file vf_interlace.c.
Referenced by config_out_props().
|
static |
Definition at line 207 of file vf_interlace.c.
|
static |
Definition at line 240 of file vf_interlace.c.
Referenced by filter_frame().
|
static |
Definition at line 289 of file vf_interlace.c.
|
static |
Definition at line 43 of file vf_interlace.c.
|
static |
Definition at line 161 of file vf_interlace.c.
Referenced by query_formats().
|
static |
Definition at line 339 of file vf_interlace.c.
|
static |
Definition at line 348 of file vf_interlace.c.
AVFilter ff_vf_interlace |
Definition at line 357 of file vf_interlace.c.