FFmpeg
|
temporal field interlace filter, ported from MPlayer/libmpcodecs More...
#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "libavutil/avassert.h"
#include "avfilter.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | TInterlaceContext |
Macros | |
#define | OFFSET(x) offsetof(TInterlaceContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
#define | TINTERLACE_FLAG_VLPF 01 |
#define | FULL_SCALE_YUVJ_FORMATS AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P |
#define | FIELD_UPPER 0 |
#define | FIELD_LOWER 1 |
#define | FIELD_UPPER_AND_LOWER 2 |
Enumerations | |
enum | TInterlaceMode { MODE_MERGE = 0, MODE_DROP_EVEN, MODE_DROP_ODD, MODE_PAD, MODE_INTERLEAVE_TOP, MODE_INTERLEAVE_BOTTOM, MODE_INTERLACEX2, MODE_NB } |
Functions | |
AVFILTER_DEFINE_CLASS (tinterlace) | |
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 (uint8_t *dst[4], int dst_linesize[4], const uint8_t *src[4], int src_linesize[4], enum AVPixelFormat format, int w, int src_h, int src_field, int interleave, int dst_field, int flags) |
Copy picture field from src to dst. | |
static int | filter_frame (AVFilterLink *inlink, AVFrame *picref) |
Variables | |
static const AVOption | tinterlace_options [] |
static enum AVPixelFormat | full_scale_yuvj_pix_fmts [] |
static const AVFilterPad | tinterlace_inputs [] |
static const AVFilterPad | tinterlace_outputs [] |
AVFilter | ff_vf_tinterlace |
temporal field interlace filter, ported from MPlayer/libmpcodecs
Definition in file vf_tinterlace.c.
#define OFFSET | ( | x | ) | offsetof(TInterlaceContext, x) |
Definition at line 57 of file vf_tinterlace.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 58 of file vf_tinterlace.c.
#define TINTERLACE_FLAG_VLPF 01 |
Definition at line 59 of file vf_tinterlace.c.
Referenced by config_out_props(), and copy_picture_field().
#define FULL_SCALE_YUVJ_FORMATS AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P |
Definition at line 80 of file vf_tinterlace.c.
Referenced by query_formats().
#define FIELD_UPPER 0 |
Definition at line 161 of file vf_tinterlace.c.
Referenced by copy_picture_field(), and filter_frame().
#define FIELD_LOWER 1 |
Definition at line 162 of file vf_tinterlace.c.
Referenced by copy_picture_field(), and filter_frame().
#define FIELD_UPPER_AND_LOWER 2 |
Definition at line 163 of file vf_tinterlace.c.
Referenced by copy_picture_field(), and filter_frame().
enum TInterlaceMode |
MODE_MERGE | |
MODE_DROP_EVEN | |
MODE_DROP_ODD | |
MODE_PAD | |
MODE_INTERLEAVE_TOP | |
MODE_INTERLEAVE_BOTTOM | |
MODE_INTERLACEX2 | |
MODE_NB |
Definition at line 34 of file vf_tinterlace.c.
AVFILTER_DEFINE_CLASS | ( | tinterlace | ) |
|
static |
Definition at line 87 of file vf_tinterlace.c.
|
static |
Definition at line 102 of file vf_tinterlace.c.
|
static |
Definition at line 111 of file vf_tinterlace.c.
|
inlinestatic |
Copy picture field from src to dst.
src_field | copy from upper, lower field or both |
interleave | leave a padding line between each copied line |
dst_field | copy to upper or lower field, only meaningful when interleave is selected |
flags | context flags |
Definition at line 175 of file vf_tinterlace.c.
Referenced by filter_frame().
|
static |
Definition at line 227 of file vf_tinterlace.c.
|
static |
Definition at line 61 of file vf_tinterlace.c.
|
static |
Definition at line 83 of file vf_tinterlace.c.
Referenced by config_out_props().
|
static |
Definition at line 371 of file vf_tinterlace.c.
|
static |
Definition at line 380 of file vf_tinterlace.c.
AVFilter ff_vf_tinterlace |
Definition at line 389 of file vf_tinterlace.c.