FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/imgutils.h"
#include "filters.h"
#include "video.h"
#include "yadif.h"
Go to the source code of this file.
Macros | |
#define | OFFSET(x) offsetof(YADIFContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
#define | CONST(name, help, val, u) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, INT_MIN, INT_MAX, FLAGS, .unit = u } |
Functions | |
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) |
int | ff_yadif_filter_frame (AVFilterLink *link, AVFrame *frame) |
int | ff_yadif_request_frame (AVFilterLink *link) |
int | ff_yadif_config_output_common (AVFilterLink *outlink) |
void | ff_yadif_uninit (AVFilterContext *ctx) |
Variables | |
const AVOption | ff_yadif_options [] |
#define OFFSET | ( | x | ) | offsetof(YADIFContext, x) |
Definition at line 268 of file yadif_common.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 269 of file yadif_common.c.
#define CONST | ( | name, | |
help, | |||
val, | |||
u | |||
) | { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, INT_MIN, INT_MAX, FLAGS, .unit = u } |
Definition at line 271 of file yadif_common.c.
|
static |
Definition at line 28 of file yadif_common.c.
Referenced by ff_yadif_filter_frame(), and ff_yadif_request_frame().
|
static |
Definition at line 81 of file yadif_common.c.
Referenced by ff_yadif_filter_frame().
|
static |
Definition at line 90 of file yadif_common.c.
Referenced by ff_yadif_filter_frame().
int ff_yadif_filter_frame | ( | AVFilterLink * | link, |
AVFrame * | frame | ||
) |
Definition at line 104 of file yadif_common.c.
Referenced by ff_yadif_request_frame().
int ff_yadif_request_frame | ( | AVFilterLink * | link | ) |
Definition at line 184 of file yadif_common.c.
int ff_yadif_config_output_common | ( | AVFilterLink * | outlink | ) |
Definition at line 218 of file yadif_common.c.
Referenced by bwdif_vulkan_config_output(), config_output(), and config_props().
void ff_yadif_uninit | ( | AVFilterContext * | ctx | ) |
Definition at line 258 of file yadif_common.c.
Referenced by bwdif_vulkan_uninit(), and deint_cuda_uninit().
const AVOption ff_yadif_options[] |
Definition at line 273 of file yadif_common.c.