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"
#include "phase_template.c"
Go to the source code of this file.
Data Structures | |
struct | PhaseContext |
Macros | |
#define | DEPTH 8 |
#define | DEPTH 9 |
#define | DEPTH 10 |
#define | DEPTH 12 |
#define | DEPTH 14 |
#define | DEPTH 16 |
#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 } |
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 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 DEPTH 8 |
Definition at line 62 of file vf_phase.c.
#define DEPTH 9 |
Definition at line 62 of file vf_phase.c.
#define DEPTH 10 |
Definition at line 62 of file vf_phase.c.
#define DEPTH 12 |
Definition at line 62 of file vf_phase.c.
#define DEPTH 14 |
Definition at line 62 of file vf_phase.c.
#define DEPTH 16 |
Definition at line 62 of file vf_phase.c.
#define OFFSET | ( | x | ) | offsetof(PhaseContext, x) |
Definition at line 76 of file vf_phase.c.
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 77 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 78 of file vf_phase.c.
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.
AVFILTER_DEFINE_CLASS | ( | phase | ) |
|
static |
Definition at line 96 of file vf_phase.c.
|
static |
Definition at line 134 of file vf_phase.c.
|
static |
Definition at line 161 of file vf_phase.c.
|
static |
Definition at line 213 of file vf_phase.c.
|
static |
Definition at line 80 of file vf_phase.c.
|
static |
Definition at line 220 of file vf_phase.c.
|
static |
Definition at line 230 of file vf_phase.c.
AVFilter ff_vf_phase |
Definition at line 238 of file vf_phase.c.