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 | MAX_ALIGN 8 |
#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 MAX_ALIGN 8 |
Definition at line 43 of file vf_yadif.c.
Referenced by filter_edges(), filter_edges_16bit(), and filter_slice().
#define CHECK | ( | j | ) |
Definition at line 45 of file vf_yadif.c.
#define FILTER | ( | start, | |
end, | |||
is_not_edge | |||
) |
Definition at line 56 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 490 of file vf_yadif.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 491 of file vf_yadif.c.
|
static |
Definition at line 98 of file vf_yadif.c.
Referenced by config_props().
|
static |
Definition at line 117 of file vf_yadif.c.
Referenced by config_props().
|
static |
Definition at line 146 of file vf_yadif.c.
Referenced by config_props().
|
static |
Definition at line 164 of file vf_yadif.c.
Referenced by config_props().
|
static |
Definition at line 193 of file vf_yadif.c.
Referenced by filter().
|
static |
Definition at line 233 of file vf_yadif.c.
Referenced by return_frame().
|
static |
Definition at line 260 of file vf_yadif.c.
|
static |
Definition at line 278 of file vf_yadif.c.
Referenced by filter_frame(), and request_frame().
|
static |
Definition at line 318 of file vf_yadif.c.
Referenced by request_frame().
|
static |
Definition at line 363 of file vf_yadif.c.
|
static |
Definition at line 399 of file vf_yadif.c.
|
static |
Definition at line 427 of file vf_yadif.c.
|
static |
Definition at line 436 of file vf_yadif.c.
|
static |
Definition at line 466 of file vf_yadif.c.
|
static |
Definition at line 492 of file vf_yadif.c.
|
static |
Definition at line 502 of file vf_yadif.c.
|
static |
Definition at line 509 of file vf_yadif.c.
|
static |
Definition at line 519 of file vf_yadif.c.
AVFilter ff_vf_yadif |
Definition at line 530 of file vf_yadif.c.