Go to the source code of this file.
|
| AVFILTER_DEFINE_CLASS (mpdecimate) |
|
static int | diff_planes (AVFilterContext *ctx, uint8_t *cur, int cur_linesize, uint8_t *ref, int ref_linesize, int w, int h) |
| Return 1 if the two planes are different, 0 otherwise. More...
|
|
static int | decimate_frame (AVFilterContext *ctx, AVFrame *cur, AVFrame *ref) |
| Tell if the frame should be decimated, for example if it is no much different with respect to the reference frame ref. More...
|
|
static av_cold int | init (AVFilterContext *ctx) |
|
static av_cold void | uninit (AVFilterContext *ctx) |
|
static int | query_formats (AVFilterContext *ctx) |
|
static int | config_input (AVFilterLink *inlink) |
|
static int | filter_frame (AVFilterLink *inlink, AVFrame *cur) |
|
AVFILTER_DEFINE_CLASS |
( |
mpdecimate |
| ) |
|
Tell if the frame should be decimated, for example if it is no much different with respect to the reference frame ref.
Definition at line 109 of file vf_mpdecimate.c.
Referenced by filter_frame().
Initial value:= {
{ "max", "set the maximum number of consecutive dropped frames (positive), or the minimum interval between dropped frames (negative)",
}
Definition at line 57 of file vf_mpdecimate.c.
Initial value:= {
{
.name = "default",
},
}
static int filter_frame(AVFilterLink *inlink, AVFrame *cur)
static int config_input(AVFilterLink *inlink)
Definition at line 227 of file vf_mpdecimate.c.
Initial value:= {
{
.name = "default",
},
}
Definition at line 237 of file vf_mpdecimate.c.
Initial value:= {
.name = "mpdecimate",
.priv_class = &mpdecimate_class,
}
static const AVFilterPad mpdecimate_inputs[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
static av_cold void uninit(AVFilterContext *ctx)
static int query_formats(AVFilterContext *ctx)
static const AVFilterPad mpdecimate_outputs[]
static av_cold int init(AVFilterContext *ctx)
Definition at line 245 of file vf_mpdecimate.c.