FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
vf_decimate.c File Reference
#include "libavutil/pixdesc.h"
#include "libavutil/timestamp.h"
#include "libavcodec/dsputil.h"
#include "avfilter.h"
#include "internal.h"
#include "formats.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  DecimateContext
 

Functions

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)
 

Variables

static const AVFilterPad decimate_inputs []
 
static const AVFilterPad decimate_outputs []
 
AVFilter avfilter_vf_decimate
 

Function Documentation

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 56 of file vf_decimate.c.

Referenced by decimate_frame().

static int decimate_frame ( AVFilterContext ctx,
AVFilterBufferRef cur,
AVFilterBufferRef 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 91 of file vf_decimate.c.

Referenced by filter_frame().

static av_cold int init ( AVFilterContext ctx,
const char *  args 
)
static

Definition at line 116 of file vf_decimate.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 154 of file vf_decimate.c.

static int query_formats ( AVFilterContext ctx)
static

Definition at line 162 of file vf_decimate.c.

static int config_input ( AVFilterLink inlink)
static

Definition at line 179 of file vf_decimate.c.

static int filter_frame ( AVFilterLink inlink,
AVFilterBufferRef cur 
)
static

Definition at line 190 of file vf_decimate.c.

static int request_frame ( AVFilterLink outlink)
static

Definition at line 219 of file vf_decimate.c.

Variable Documentation

const AVFilterPad decimate_inputs[]
static
Initial value:
= {
{
.name = "default",
.get_video_buffer = ff_null_get_video_buffer,
.config_props = config_input,
.filter_frame = filter_frame,
},
{ NULL }
}

Definition at line 232 of file vf_decimate.c.

const AVFilterPad decimate_outputs[]
static
Initial value:
= {
{
.name = "default",
.request_frame = request_frame,
},
{ NULL }
}

Definition at line 244 of file vf_decimate.c.

AVFilter avfilter_vf_decimate
Initial value:
= {
.name = "decimate",
.description = NULL_IF_CONFIG_SMALL("Remove near-duplicate frames."),
.init = init,
.uninit = uninit,
.priv_size = sizeof(DecimateContext),
}

Definition at line 253 of file vf_decimate.c.