FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
vf_yadif.c File Reference
#include "libavutil/avassert.h"
#include "libavutil/cpu.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/imgutils.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
#include "yadif.h"

Go to the source code of this file.

Data Structures

struct  ThreadData
 

Macros

#define CHECK(j)
 
#define FILTER(start, end, is_not_edge)
 
#define MAX_ALIGN   8
 
#define OFFSET(x)   offsetof(YADIFContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
#define CONST(name, help, val, unit)   { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, INT_MIN, INT_MAX, FLAGS, unit }
 

Functions

static void filter_line_c (void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode)
 
static void filter_edges (void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode)
 
static void filter_line_c_16bit (void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode)
 
static void filter_edges_16bit (void *dst1, void *prev1, void *cur1, void *next1, int w, int prefs, int mrefs, int parity, int mode)
 
static int filter_slice (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 
static void filter (AVFilterContext *ctx, AVFrame *dstpic, int parity, int tff)
 
static int return_frame (AVFilterContext *ctx, int is_second)
 
static int checkstride (YADIFContext *yadif, const AVFrame *a, const AVFrame *b)
 
static void fixstride (AVFilterLink *link, AVFrame *f)
 
static int filter_frame (AVFilterLink *link, AVFrame *frame)
 
static int request_frame (AVFilterLink *link)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
static int config_props (AVFilterLink *link)
 
 AVFILTER_DEFINE_CLASS (yadif)
 

Variables

static const AVOption yadif_options []
 
static const AVFilterPad avfilter_vf_yadif_inputs []
 
static const AVFilterPad avfilter_vf_yadif_outputs []
 
AVFilter ff_vf_yadif
 

Macro Definition Documentation

#define CHECK (   j)
Value:
{ int score = FFABS(cur[mrefs - 1 + (j)] - cur[prefs - 1 - (j)])\
+ FFABS(cur[mrefs +(j)] - cur[prefs -(j)])\
+ FFABS(cur[mrefs + 1 + (j)] - cur[prefs + 1 - (j)]);\
if (score < spatial_score) {\
spatial_pred= (cur[mrefs +(j)] + cur[prefs -(j)])>>1;\
if()
Definition: avfilter.c:975
else int spatial_score
Definition: vf_mcdeint.c:248
#define FFABS(a)
Definition: common.h:61

Definition at line 40 of file vf_yadif.c.

#define FILTER (   start,
  end,
  is_not_edge 
)

Definition at line 51 of file vf_yadif.c.

Referenced by filter_edges(), filter_edges_16bit(), filter_line_c(), and filter_line_c_16bit().

#define MAX_ALIGN   8

Definition at line 112 of file vf_yadif.c.

Referenced by filter_edges(), filter_edges_16bit(), and filter_slice().

#define OFFSET (   x)    offsetof(YADIFContext, x)

Definition at line 504 of file vf_yadif.c.

Definition at line 505 of file vf_yadif.c.

#define CONST (   name,
  help,
  val,
  unit 
)    { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, INT_MIN, INT_MAX, FLAGS, unit }

Definition at line 507 of file vf_yadif.c.

Function Documentation

static void filter_line_c ( void dst1,
void prev1,
void cur1,
void next1,
int  w,
int  prefs,
int  mrefs,
int  parity,
int  mode 
)
static

Definition at line 93 of file vf_yadif.c.

static void filter_edges ( void dst1,
void prev1,
void cur1,
void next1,
int  w,
int  prefs,
int  mrefs,
int  parity,
int  mode 
)
static

Definition at line 113 of file vf_yadif.c.

static void filter_line_c_16bit ( void dst1,
void prev1,
void cur1,
void next1,
int  w,
int  prefs,
int  mrefs,
int  parity,
int  mode 
)
static

Definition at line 140 of file vf_yadif.c.

static void filter_edges_16bit ( void dst1,
void prev1,
void cur1,
void next1,
int  w,
int  prefs,
int  mrefs,
int  parity,
int  mode 
)
static

Definition at line 158 of file vf_yadif.c.

static int filter_slice ( AVFilterContext ctx,
void arg,
int  jobnr,
int  nb_jobs 
)
static

Definition at line 184 of file vf_yadif.c.

Referenced by filter().

static void filter ( AVFilterContext ctx,
AVFrame dstpic,
int  parity,
int  tff 
)
static

Definition at line 222 of file vf_yadif.c.

Referenced by return_frame().

static int return_frame ( AVFilterContext ctx,
int  is_second 
)
static

Definition at line 249 of file vf_yadif.c.

Referenced by filter_frame(), and request_frame().

static int checkstride ( YADIFContext yadif,
const AVFrame a,
const AVFrame b 
)
static

Definition at line 289 of file vf_yadif.c.

Referenced by filter_frame().

static void fixstride ( AVFilterLink link,
AVFrame f 
)
static

Definition at line 298 of file vf_yadif.c.

Referenced by filter_frame().

static int filter_frame ( AVFilterLink link,
AVFrame frame 
)
static

Definition at line 312 of file vf_yadif.c.

Referenced by request_frame().

static int request_frame ( AVFilterLink link)
static

Definition at line 376 of file vf_yadif.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 412 of file vf_yadif.c.

static int query_formats ( AVFilterContext ctx)
static

Definition at line 421 of file vf_yadif.c.

static int config_props ( AVFilterLink link)
static

Definition at line 470 of file vf_yadif.c.

AVFILTER_DEFINE_CLASS ( yadif  )

Variable Documentation

const AVOption yadif_options[]
static
Initial value:
= {
{ "mode", "specify the interlacing mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64=YADIF_MODE_SEND_FRAME}, 0, 3, FLAGS, "mode"},
CONST("send_frame", "send one frame for each frame", YADIF_MODE_SEND_FRAME, "mode"),
CONST("send_field", "send one frame for each field", YADIF_MODE_SEND_FIELD, "mode"),
CONST("send_frame_nospatial", "send one frame for each frame, but skip spatial interlacing check", YADIF_MODE_SEND_FRAME_NOSPATIAL, "mode"),
CONST("send_field_nospatial", "send one frame for each field, but skip spatial interlacing check", YADIF_MODE_SEND_FIELD_NOSPATIAL, "mode"),
{ "parity", "specify the assumed picture field parity", OFFSET(parity), AV_OPT_TYPE_INT, {.i64=YADIF_PARITY_AUTO}, -1, 1, FLAGS, "parity" },
CONST("tff", "assume top field first", YADIF_PARITY_TFF, "parity"),
CONST("bff", "assume bottom field first", YADIF_PARITY_BFF, "parity"),
CONST("auto", "auto detect parity", YADIF_PARITY_AUTO, "parity"),
{ "deint", "specify which frames to deinterlace", OFFSET(deint), AV_OPT_TYPE_INT, {.i64=YADIF_DEINT_ALL}, 0, 1, FLAGS, "deint" },
CONST("all", "deinterlace all frames", YADIF_DEINT_ALL, "deint"),
CONST("interlaced", "only deinterlace frames marked as interlaced", YADIF_DEINT_INTERLACED, "deint"),
{ NULL }
}
#define NULL
Definition: coverity.c:32
send 1 frame for each frame but skips spatial interlacing check
Definition: yadif.h:28
mode
Definition: f_perms.c:27
bottom field first
Definition: yadif.h:34
send 1 frame for each field
Definition: yadif.h:27
auto detection
Definition: yadif.h:35
#define OFFSET(x)
Definition: vf_yadif.c:504
mcdeint parity
Definition: vf_mcdeint.c:275
send 1 frame for each field but skips spatial interlacing check
Definition: yadif.h:29
#define FLAGS
Definition: vf_yadif.c:505
deinterlace all frames
Definition: yadif.h:39
send 1 frame for each frame
Definition: yadif.h:26
#define CONST(name, help, val, unit)
Definition: vf_yadif.c:507
only deinterlace frames marked as interlaced
Definition: yadif.h:40
top field first
Definition: yadif.h:33

Definition at line 509 of file vf_yadif.c.

const AVFilterPad avfilter_vf_yadif_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int filter_frame(AVFilterLink *link, AVFrame *frame)
Definition: vf_yadif.c:312

Definition at line 530 of file vf_yadif.c.

const AVFilterPad avfilter_vf_yadif_outputs[]
static
Initial value:
= {
{
.name = "default",
.request_frame = request_frame,
.config_props = config_props,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int request_frame(AVFilterLink *link)
Definition: vf_yadif.c:376
static int config_props(AVFilterLink *link)
Definition: vf_yadif.c:470

Definition at line 539 of file vf_yadif.c.

AVFilter ff_vf_yadif
Initial value:
= {
.name = "yadif",
.description = NULL_IF_CONFIG_SMALL("Deinterlace the input image."),
.priv_size = sizeof(YADIFContext),
.priv_class = &yadif_class,
}
static const AVFilterPad avfilter_vf_yadif_inputs[]
Definition: vf_yadif.c:530
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:248
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:442
static int query_formats(AVFilterContext *ctx)
Definition: vf_yadif.c:421
static const AVFilterPad avfilter_vf_yadif_outputs[]
Definition: vf_yadif.c:539
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:239
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
Definition: avfilter.h:459
static int flags
Definition: cpu.c:47
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_yadif.c:412

Definition at line 549 of file vf_yadif.c.