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) |
|
◆ OFFSET
◆ FLAGS
◆ AVFILTER_DEFINE_CLASS()
AVFILTER_DEFINE_CLASS |
( |
mpdecimate |
| ) |
|
◆ diff_planes()
◆ decimate_frame()
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().
◆ init()
◆ uninit()
◆ query_formats()
◆ config_input()
◆ filter_frame()
◆ mpdecimate_options
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.
◆ mpdecimate_inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 227 of file vf_mpdecimate.c.
◆ mpdecimate_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 237 of file vf_mpdecimate.c.
◆ ff_vf_mpdecimate
Initial value:= {
.name = "mpdecimate",
.priv_class = &mpdecimate_class,
}
Definition at line 245 of file vf_mpdecimate.c.