FFmpeg
|
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 "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | InterlaceContext |
Macros | |
#define | OFFSET(x) offsetof(InterlaceContext, x) |
#define | V AV_OPT_FLAG_VIDEO_PARAM |
Enumerations | |
enum | ScanMode { MODE_TFF = 0, MODE_BFF = 1 } |
enum | FieldType { FIELD_TYPE_TOP = 0, FIELD_TYPE_BOTTOM, FIELD_UPPER = 0, FIELD_LOWER = 1 } |
Functions | |
AVFILTER_DEFINE_CLASS (interlace) | |
static int | query_formats (AVFilterContext *ctx) |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | config_out_props (AVFilterLink *outlink) |
static void | copy_picture_field (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 56 of file vf_interlace.c.
#define V AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 57 of file vf_interlace.c.
enum ScanMode |
Definition at line 39 of file vf_interlace.c.
enum FieldType |
Definition at line 44 of file vf_interlace.c.
AVFILTER_DEFINE_CLASS | ( | interlace | ) |
|
static |
Definition at line 79 of file vf_interlace.c.
|
static |
Definition at line 85 of file vf_interlace.c.
|
static |
Definition at line 93 of file vf_interlace.c.
|
static |
Definition at line 124 of file vf_interlace.c.
Referenced by filter_frame().
|
static |
Definition at line 172 of file vf_interlace.c.
|
static |
Definition at line 58 of file vf_interlace.c.
|
static |
|
static |
Definition at line 222 of file vf_interlace.c.
|
static |
Definition at line 231 of file vf_interlace.c.
AVFilter ff_vf_interlace |
Definition at line 240 of file vf_interlace.c.