FFmpeg
Data Structures | Macros | Functions | Variables
vf_elbg.c File Reference
#include "libavcodec/elbg.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "libavutil/random_seed.h"
#include "avfilter.h"
#include "drawutils.h"
#include "internal.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  ELBGContext
 

Macros

#define OFFSET(x)   offsetof(ELBGContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
#define NB_COMPONENTS   3
 
#define R   0
 
#define G   1
 
#define B   2
 

Functions

 AVFILTER_DEFINE_CLASS (elbg)
 
static av_cold int init (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
static int config_input (AVFilterLink *inlink)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *frame)
 
static av_cold void uninit (AVFilterContext *ctx)
 

Variables

static const AVOption elbg_options []
 
static const AVFilterPad elbg_inputs []
 
static const AVFilterPad elbg_outputs []
 
AVFilter ff_vf_elbg
 

Detailed Description

video quantizer filter based on ELBG

Definition in file vf_elbg.c.

Macro Definition Documentation

◆ OFFSET

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

Definition at line 51 of file vf_elbg.c.

◆ FLAGS

Definition at line 52 of file vf_elbg.c.

◆ NB_COMPONENTS

#define NB_COMPONENTS   3

Definition at line 110 of file vf_elbg.c.

◆ R

#define R   0

Definition at line 140 of file vf_elbg.c.

◆ G

#define G   1

Definition at line 141 of file vf_elbg.c.

◆ B

#define B   2

Definition at line 142 of file vf_elbg.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( elbg  )

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 67 of file vf_elbg.c.

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 83 of file vf_elbg.c.

◆ config_input()

static int config_input ( AVFilterLink inlink)
static

Definition at line 112 of file vf_elbg.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame frame 
)
static

Definition at line 144 of file vf_elbg.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 226 of file vf_elbg.c.

Variable Documentation

◆ elbg_options

const AVOption elbg_options[]
static
Initial value:
= {
{ "codebook_length", "set codebook length", OFFSET(codebook_length), AV_OPT_TYPE_INT, { .i64 = 256 }, 1, INT_MAX, FLAGS },
{ "l", "set codebook length", OFFSET(codebook_length), AV_OPT_TYPE_INT, { .i64 = 256 }, 1, INT_MAX, FLAGS },
{ "nb_steps", "set max number of steps used to compute the mapping", OFFSET(max_steps_nb), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, INT_MAX, FLAGS },
{ "n", "set max number of steps used to compute the mapping", OFFSET(max_steps_nb), AV_OPT_TYPE_INT, { .i64 = 1 }, 1, INT_MAX, FLAGS },
{ "seed", "set the random seed", OFFSET(lfg_seed), AV_OPT_TYPE_INT, {.i64 = -1}, -1, UINT32_MAX, FLAGS },
{ "s", "set the random seed", OFFSET(lfg_seed), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, UINT32_MAX, FLAGS },
{ "pal8", "set the pal8 output", OFFSET(pal8), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, FLAGS },
{ NULL }
}

Definition at line 54 of file vf_elbg.c.

◆ elbg_inputs

const AVFilterPad elbg_inputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_input,
.filter_frame = filter_frame,
.needs_writable = 1,
},
{ NULL }
}

Definition at line 235 of file vf_elbg.c.

◆ elbg_outputs

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

Definition at line 246 of file vf_elbg.c.

◆ ff_vf_elbg

AVFilter ff_vf_elbg
Initial value:
= {
.name = "elbg",
.description = NULL_IF_CONFIG_SMALL("Apply posterize effect, using the ELBG algorithm."),
.priv_size = sizeof(ELBGContext),
.priv_class = &elbg_class,
.init = init,
}

Definition at line 254 of file vf_elbg.c.

OFFSET
#define OFFSET(x)
Definition: vf_elbg.c:51
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_elbg.c:83
elbg_inputs
static const AVFilterPad elbg_inputs[]
Definition: vf_elbg.c:235
elbg_outputs
static const AVFilterPad elbg_outputs[]
Definition: vf_elbg.c:246
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
init
static av_cold int init(AVFilterContext *ctx)
Definition: vf_elbg.c:67
NULL
#define NULL
Definition: coverity.c:32
inputs
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: filter_design.txt:243
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: vf_elbg.c:144
ELBGContext
Definition: vf_elbg.c:36
FLAGS
#define FLAGS
Definition: vf_elbg.c:52
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_elbg.c:226
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_elbg.c:112
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:240