Go to the source code of this file.
|
| AVFILTER_DEFINE_CLASS (decimate) |
|
static int | diff_planes (AVFilterContext *ctx, uint8_t *cur, uint8_t *ref, int linesize, int w, int h) |
| Return 1 if the two planes are different, 0 otherwise.
|
|
static int | decimate_frame (AVFilterContext *ctx, AVFilterBufferRef *cur, AVFilterBufferRef *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, const char *args) |
|
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, AVFilterBufferRef *cur) |
|
static int | request_frame (AVFilterLink *outlink) |
|
AVFILTER_DEFINE_CLASS |
( |
decimate |
| ) |
|
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 107 of file vf_decimate.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 58 of file vf_decimate.c.
Initial value:= {
{
.name = "default",
},
}
Definition at line 234 of file vf_decimate.c.
Initial value:= {
{
.name = "default",
},
}
Definition at line 246 of file vf_decimate.c.
Initial value:= {
.name = "decimate",
.priv_class = &decimate_class,
}
Definition at line 255 of file vf_decimate.c.