FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Enumerations | Functions | Variables
vf_phase.c File Reference
#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
 

Macro Definition Documentation

#define OFFSET (   x)    offsetof(PhaseContext, x)

Definition at line 51 of file vf_phase.c.

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().

Enumeration Type Documentation

enum PhaseMode
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.

Function Documentation

AVFILTER_DEFINE_CLASS ( phase  )
static int query_formats ( AVFilterContext ctx)
static

Definition at line 71 of file vf_phase.c.

static int config_input ( AVFilterLink inlink)
static

Definition at line 84 of file vf_phase.c.

static enum PhaseMode analyze_plane ( void ctx,
enum PhaseMode  mode,
AVFrame old,
AVFrame new 
)
static

Definition at line 115 of file vf_phase.c.

Referenced by filter_frame().

static int filter_frame ( AVFilterLink inlink,
AVFrame in 
)
static

Definition at line 242 of file vf_phase.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 294 of file vf_phase.c.

Variable Documentation

const AVOption phase_options[]
static
Initial value:
= {
{ "mode", "set phase mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64=AUTO_ANALYZE}, PROGRESSIVE, AUTO_ANALYZE, FLAGS, "mode" },
CONST("p", "progressive", PROGRESSIVE, "mode"),
CONST("t", "top first", TOP_FIRST, "mode"),
CONST("b", "bottom first", BOTTOM_FIRST, "mode"),
CONST("T", "top first analyze", TOP_FIRST_ANALYZE, "mode"),
CONST("B", "bottom first analyze", BOTTOM_FIRST_ANALYZE, "mode"),
CONST("u", "analyze", ANALYZE, "mode"),
CONST("U", "full analyze", FULL_ANALYZE, "mode"),
CONST("a", "auto", AUTO, "mode"),
CONST("A", "auto analyze", AUTO_ANALYZE, "mode"),
{ NULL }
}

Definition at line 55 of file vf_phase.c.

const AVFilterPad phase_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
.config_props = config_input,
},
{ NULL }
}

Definition at line 301 of file vf_phase.c.

const AVFilterPad phase_outputs[]
static
Initial value:
= {
{
.name = "default",
},
{ NULL }
}

Definition at line 311 of file vf_phase.c.

AVFilter ff_vf_phase
Initial value:
= {
.name = "phase",
.description = NULL_IF_CONFIG_SMALL("Phase shift fields."),
.priv_size = sizeof(PhaseContext),
.priv_class = &phase_class,
}

Definition at line 319 of file vf_phase.c.