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

libpostproc filter, ported from MPlayer. More...

#include "libavutil/avassert.h"
#include "libavutil/opt.h"
#include "internal.h"
#include "libpostproc/postprocess.h"

Classes

struct  PPFilterContext
 

Macros

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

Typedefs

typedef struct PPFilterContext PPFilterContext
 

Functions

 AVFILTER_DEFINE_CLASS (pp)
 

Variables

AVFilter ff_vf_pp
 

Detailed Description

libpostproc filter, ported from MPlayer.

Variable Documentation

§ ff_vf_pp

AVFilter ff_vf_pp
Initial value:
= {
.name = "pp",
.description = NULL_IF_CONFIG_SMALL("Filter video using libpostproc."),
.priv_size = sizeof(PPFilterContext),
.init = pp_init,
.uninit = pp_uninit,
.query_formats = pp_query_formats,
.inputs = pp_inputs,
.outputs = pp_outputs,
.process_command = pp_process_command,
.priv_class = &pp_class,
}
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:125
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: vf_pp.c:33