FFmpeg
Classes | Macros | Typedefs | Functions | Variables
vf_dejudder.c File Reference

remove judder in video stream More...

#include "libavutil/opt.h"
#include "libavutil/mathematics.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"

Classes

struct  DejudderContext
 

Macros

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

Typedefs

typedef struct DejudderContext DejudderContext
 

Functions

 AVFILTER_DEFINE_CLASS (dejudder)
 

Variables

AVFilter ff_vf_dejudder
 

Detailed Description

remove judder in video stream

Algorithm:

Variable Documentation

§ ff_vf_dejudder

AVFilter ff_vf_dejudder
Initial value:
= {
.name = "dejudder",
.description = NULL_IF_CONFIG_SMALL("Remove judder produced by pullup."),
.priv_size = sizeof(DejudderContext),
.priv_class = &dejudder_class,
.inputs = dejudder_inputs,
.outputs = dejudder_outputs,
.init = dejudder_init,
.uninit = dejudder_uninit,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: vf_dejudder.c:58