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.
|
|
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.
|
|
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) |
|
static int | request_frame (AVFilterLink *outlink) |
|
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 103 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)",
{ NULL }
}
Definition at line 57 of file vf_mpdecimate.c.
Initial value:= {
{
.name = "default",
},
{ NULL }
}
Definition at line 220 of file vf_mpdecimate.c.
Initial value:= {
{
.name = "default",
},
{ NULL }
}
Definition at line 230 of file vf_mpdecimate.c.
Initial value:= {
.name = "mpdecimate",
.priv_class = &mpdecimate_class,
}
Definition at line 239 of file vf_mpdecimate.c.