Libav
|
#include "libavutil/cpu.h"
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
#include "yadif.h"
#include <assert.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 | OFFSET(x) offsetof(YADIFContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM |
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 AVFrame * | get_video_buffer (AVFilterLink *link, int w, int h) |
static int | return_frame (AVFilterContext *ctx, int is_second) |
static int | filter_frame (AVFilterLink *link, AVFrame *frame) |
static int | request_frame (AVFilterLink *link) |
static int | poll_frame (AVFilterLink *link) |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | query_formats (AVFilterContext *ctx) |
static int | config_props (AVFilterLink *link) |
Variables | |
static const AVOption | options [] |
static const AVClass | yadif_class |
static const AVFilterPad | avfilter_vf_yadif_inputs [] |
static const AVFilterPad | avfilter_vf_yadif_outputs [] |
AVFilter | ff_vf_yadif |
#define CHECK | ( | j) |
Definition at line 43 of file vf_yadif.c.
#define FILTER | ( | start, | |
end, | |||
is_not_edge | |||
) |
Definition at line 54 of file vf_yadif.c.
Referenced by filter_edges(), filter_edges_16bit(), filter_line_c(), and filter_line_c_16bit().
#define OFFSET | ( | x) | offsetof(YADIFContext, x) |
Definition at line 480 of file vf_yadif.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 481 of file vf_yadif.c.
|
static |
Definition at line 96 of file vf_yadif.c.
Referenced by config_props().
|
static |
Definition at line 115 of file vf_yadif.c.
Referenced by config_props().
|
static |
Definition at line 141 of file vf_yadif.c.
Referenced by config_props().
|
static |
Definition at line 159 of file vf_yadif.c.
Referenced by config_props().
|
static |
Definition at line 184 of file vf_yadif.c.
Referenced by filter().
|
static |
Definition at line 223 of file vf_yadif.c.
Referenced by return_frame().
|
static |
Definition at line 250 of file vf_yadif.c.
|
static |
Definition at line 268 of file vf_yadif.c.
Referenced by filter_frame(), and request_frame().
|
static |
Definition at line 308 of file vf_yadif.c.
Referenced by request_frame().
|
static |
Definition at line 353 of file vf_yadif.c.
|
static |
Definition at line 389 of file vf_yadif.c.
|
static |
Definition at line 417 of file vf_yadif.c.
|
static |
Definition at line 426 of file vf_yadif.c.
|
static |
Definition at line 456 of file vf_yadif.c.
|
static |
Definition at line 482 of file vf_yadif.c.
|
static |
Definition at line 492 of file vf_yadif.c.
|
static |
Definition at line 499 of file vf_yadif.c.
|
static |
Definition at line 509 of file vf_yadif.c.
AVFilter ff_vf_yadif |
Definition at line 520 of file vf_yadif.c.