#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.
|
#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) |
|
#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) |
Enumerator |
---|
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 |
| ) |
|
Initial value:= {
{ NULL }
}
in the bitstream is reported as 00b
#define CONST(name, help, val, unit)
Definition at line 55 of file vf_phase.c.
Initial value:= {
{
.name = "default",
},
{ NULL }
}
static int config_input(AVFilterLink *inlink)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition at line 293 of file vf_phase.c.
Initial value:= {
{
.name = "default",
},
{ NULL }
}
Definition at line 303 of file vf_phase.c.
Initial value:= {
.name = "phase",
.priv_class = &phase_class,
}
static const AVFilterPad outputs[]
static int query_formats(AVFilterContext *ctx)
static const AVFilterPad phase_inputs[]
static const AVFilterPad phase_outputs[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const AVFilterPad inputs[]
static av_cold void uninit(AVFilterContext *ctx)
Definition at line 311 of file vf_phase.c.