vf_mpdecimate.c File Reference
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/timestamp.h"
#include "libavcodec/dsputil.h"
#include "avfilter.h"
#include "internal.h"
#include "formats.h"
#include "video.h"
Include dependency graph for vf_mpdecimate.c:

Go to the source code of this file.

Data Structures

struct  DecimateContext
 

Macros

#define OFFSET(x)   offsetof(DecimateContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 

Functions

 AVFILTER_DEFINE_CLASS (mpdecimate)
 
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. 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)
 
static int request_frame (AVFilterLink *outlink)
 

Variables

static const AVOption mpdecimate_options []
 
static const AVFilterPad mpdecimate_inputs []
 
static const AVFilterPad mpdecimate_outputs []
 
AVFilter avfilter_vf_mpdecimate
 

Macro Definition Documentation

Definition at line 56 of file vf_mpdecimate.c.

#define OFFSET (   x)    offsetof(DecimateContext, x)

Definition at line 55 of file vf_mpdecimate.c.

Function Documentation

AVFILTER_DEFINE_CLASS ( mpdecimate  )
static int config_input ( AVFilterLink inlink)
static

Definition at line 174 of file vf_mpdecimate.c.

static int decimate_frame ( AVFilterContext ctx,
AVFrame cur,
AVFrame ref 
)
static

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_mpdecimate.c.

Referenced by filter_frame().

static int diff_planes ( AVFilterContext ctx,
uint8_t cur,
uint8_t ref,
int  linesize,
int  w,
int  h 
)
static

Return 1 if the two planes are different, 0 otherwise.

Definition at line 72 of file vf_mpdecimate.c.

Referenced by decimate_frame().

static int filter_frame ( AVFilterLink inlink,
AVFrame cur 
)
static

Definition at line 185 of file vf_mpdecimate.c.

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 132 of file vf_mpdecimate.c.

static int query_formats ( AVFilterContext ctx)
static

Definition at line 157 of file vf_mpdecimate.c.

static int request_frame ( AVFilterLink outlink)
static

Definition at line 214 of file vf_mpdecimate.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 147 of file vf_mpdecimate.c.

Variable Documentation

AVFilter avfilter_vf_mpdecimate
Initial value:
= {
.name = "mpdecimate",
.description = NULL_IF_CONFIG_SMALL("Remove near-duplicate frames."),
.init = init,
.uninit = uninit,
.priv_size = sizeof(DecimateContext),
.priv_class = &mpdecimate_class,
}
static const AVFilterPad mpdecimate_inputs[]
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
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)
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs

Definition at line 247 of file vf_mpdecimate.c.

const AVFilterPad mpdecimate_inputs[]
static
Initial value:
= {
{
.name = "default",
.get_video_buffer = ff_null_get_video_buffer,
.config_props = config_input,
.filter_frame = filter_frame,
},
{ NULL }
}
static int filter_frame(AVFilterLink *inlink, AVFrame *cur)
AVFrame * ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
Definition: video.c:35
NULL
Definition: eval.c:55
static int config_input(AVFilterLink *inlink)

Definition at line 227 of file vf_mpdecimate.c.

const AVOption mpdecimate_options[]
static
Initial value:
= {
{ "max", "set the maximum number of consecutive dropped frames (positive), or the minimum interval between dropped frames (negative)",
OFFSET(max_drop_count), AV_OPT_TYPE_INT, {.i64=0}, INT_MIN, INT_MAX, FLAGS },
{ "hi", "set high dropping threshold", OFFSET(hi), AV_OPT_TYPE_INT, {.i64=64*12}, INT_MIN, INT_MAX, FLAGS },
{ "lo", "set low dropping threshold", OFFSET(lo), AV_OPT_TYPE_INT, {.i64=64*5}, INT_MIN, INT_MAX, FLAGS },
{ "frac", "set fraction dropping threshold", OFFSET(frac), AV_OPT_TYPE_FLOAT, {.dbl=0.33}, 0, 1, FLAGS },
{ NULL }
}
#define OFFSET(x)
Definition: vf_mpdecimate.c:55
NULL
Definition: eval.c:55
#define FLAGS
Definition: vf_mpdecimate.c:56

Definition at line 58 of file vf_mpdecimate.c.

const AVFilterPad mpdecimate_outputs[]
static
Initial value:
= {
{
.name = "default",
.request_frame = request_frame,
},
{ NULL }
}
NULL
Definition: eval.c:55
static int request_frame(AVFilterLink *outlink)

Definition at line 238 of file vf_mpdecimate.c.