FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/timestamp.h"
#include "avfilter.h"
#include "filters.h"
#include "scene_sad.h"
Go to the source code of this file.
Data Structures | |
struct | FreezeDetectContext |
Macros | |
#define | OFFSET(x) offsetof(FreezeDetectContext, x) |
#define | V AV_OPT_FLAG_VIDEO_PARAM |
#define | F AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
AVFILTER_DEFINE_CLASS (freezedetect) | |
static int | query_formats (AVFilterContext *ctx) |
static int | config_input (AVFilterLink *inlink) |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | is_frozen (FreezeDetectContext *s, AVFrame *reference, AVFrame *frame) |
static int | set_meta (FreezeDetectContext *s, AVFrame *frame, const char *key, const char *value) |
static int | activate (AVFilterContext *ctx) |
Variables | |
static const AVOption | freezedetect_options [] |
static const AVFilterPad | freezedetect_inputs [] |
static const AVFilterPad | freezedetect_outputs [] |
AVFilter | ff_vf_freezedetect |
video freeze detection filter
Definition in file vf_freezedetect.c.
#define OFFSET | ( | x | ) | offsetof(FreezeDetectContext, x) |
Definition at line 50 of file vf_freezedetect.c.
#define V AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 51 of file vf_freezedetect.c.
#define F AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 52 of file vf_freezedetect.c.
AVFILTER_DEFINE_CLASS | ( | freezedetect | ) |
|
static |
Definition at line 65 of file vf_freezedetect.c.
|
static |
Definition at line 100 of file vf_freezedetect.c.
|
static |
Definition at line 121 of file vf_freezedetect.c.
|
static |
Definition at line 127 of file vf_freezedetect.c.
Referenced by activate().
|
static |
Definition at line 147 of file vf_freezedetect.c.
Referenced by activate().
|
static |
Definition at line 153 of file vf_freezedetect.c.
|
static |
Definition at line 54 of file vf_freezedetect.c.
|
static |
Definition at line 208 of file vf_freezedetect.c.
|
static |
Definition at line 217 of file vf_freezedetect.c.
AVFilter ff_vf_freezedetect |
Definition at line 225 of file vf_freezedetect.c.