FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/imgutils.h"
#include "libavutil/pixdesc.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | PhaseContext |
Macros | |
#define | OFFSET(x) offsetof(PhaseContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
#define | CONST(name, help, val, unit) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
#define | DIFF(a, as, b, bs) ((t) = ((*(a) - (b)[bs]) << 2) + (a)[(as) << 1] - (b)[-(bs)], (t) * (t)) |
Enumerations | |
enum | PhaseMode { PROGRESSIVE, TOP_FIRST, BOTTOM_FIRST, TOP_FIRST_ANALYZE, BOTTOM_FIRST_ANALYZE, ANALYZE, FULL_ANALYZE, AUTO, AUTO_ANALYZE } |
Functions | |
AVFILTER_DEFINE_CLASS (phase) | |
static int | query_formats (AVFilterContext *ctx) |
static int | config_input (AVFilterLink *inlink) |
static enum PhaseMode | analyze_plane (void *ctx, enum PhaseMode mode, AVFrame *old, AVFrame *new) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
static const AVOption | phase_options [] |
static const AVFilterPad | phase_inputs [] |
static const AVFilterPad | phase_outputs [] |
AVFilter | ff_vf_phase |
#define OFFSET | ( | x | ) | offsetof(PhaseContext, x) |
Definition at line 51 of file vf_phase.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 52 of file vf_phase.c.
#define CONST | ( | name, | |
help, | |||
val, | |||
unit | |||
) | { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit } |
Definition at line 53 of file vf_phase.c.
#define DIFF | ( | a, | |
as, | |||
b, | |||
bs | |||
) | ((t) = ((*(a) - (b)[bs]) << 2) + (a)[(as) << 1] - (b)[-(bs)], (t) * (t)) |
Definition at line 109 of file vf_phase.c.
Referenced by analyze_plane().
enum PhaseMode |
PROGRESSIVE | |
TOP_FIRST | |
BOTTOM_FIRST | |
TOP_FIRST_ANALYZE | |
BOTTOM_FIRST_ANALYZE | |
ANALYZE | |
FULL_ANALYZE | |
AUTO | |
AUTO_ANALYZE |
Definition at line 30 of file vf_phase.c.
AVFILTER_DEFINE_CLASS | ( | phase | ) |
|
static |
Definition at line 71 of file vf_phase.c.
|
static |
Definition at line 84 of file vf_phase.c.
|
static |
Definition at line 115 of file vf_phase.c.
Referenced by filter_frame().
|
static |
Definition at line 242 of file vf_phase.c.
|
static |
Definition at line 294 of file vf_phase.c.
|
static |
Definition at line 55 of file vf_phase.c.
|
static |
Definition at line 301 of file vf_phase.c.
|
static |
Definition at line 311 of file vf_phase.c.
AVFilter ff_vf_phase |
Definition at line 319 of file vf_phase.c.