FFmpeg
Macros | Functions | Variables
vf_eq.c File Reference
#include "libavfilter/internal.h"
#include "libavutil/common.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "vf_eq.h"

Go to the source code of this file.

Macros

#define SET_PARAM(param_name, set_fn_name)   if (!strcmp(cmd, #param_name)) return set_param(&eq->param_name##_pexpr, args, cmd, set_##set_fn_name, ctx);
 
#define OFFSET(x)   offsetof(EQContext, x)
 
#define FLAGS   AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 
#define TFLAGS   AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
 

Functions

static void create_lut (EQParameters *param)
 
static void apply_lut (EQParameters *param, uint8_t *dst, int dst_stride, const uint8_t *src, int src_stride, int w, int h)
 
static void process_c (EQParameters *param, uint8_t *dst, int dst_stride, const uint8_t *src, int src_stride, int w, int h)
 
static void check_values (EQParameters *param, EQContext *eq)
 
static void set_contrast (EQContext *eq)
 
static void set_brightness (EQContext *eq)
 
static void set_gamma (EQContext *eq)
 
static void set_saturation (EQContext *eq)
 
static int set_expr (AVExpr **pexpr, const char *expr, const char *option, void *log_ctx)
 
void ff_eq_init (EQContext *eq)
 
static int initialize (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int config_props (AVFilterLink *inlink)
 
static int query_formats (AVFilterContext *ctx)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *in)
 
static int set_param (AVExpr **pexpr, const char *args, const char *cmd, void(*set_fn)(EQContext *eq), AVFilterContext *ctx)
 
static int process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
 
 AVFILTER_DEFINE_CLASS (eq)
 

Variables

static const AVFilterPad eq_inputs []
 
static const AVFilterPad eq_outputs []
 
static const AVOption eq_options []
 
AVFilter ff_vf_eq
 

Detailed Description

very simple video equalizer

Definition in file vf_eq.c.

Macro Definition Documentation

◆ SET_PARAM

#define SET_PARAM (   param_name,
  set_fn_name 
)    if (!strcmp(cmd, #param_name)) return set_param(&eq->param_name##_pexpr, args, cmd, set_##set_fn_name, ctx);

◆ OFFSET

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

Definition at line 352 of file vf_eq.c.

◆ FLAGS

Definition at line 353 of file vf_eq.c.

◆ TFLAGS

Definition at line 354 of file vf_eq.c.

Function Documentation

◆ create_lut()

static void create_lut ( EQParameters param)
static

Definition at line 37 of file vf_eq.c.

Referenced by apply_lut().

◆ apply_lut()

static void apply_lut ( EQParameters param,
uint8_t dst,
int  dst_stride,
const uint8_t src,
int  src_stride,
int  w,
int  h 
)
static

Definition at line 62 of file vf_eq.c.

Referenced by check_values().

◆ process_c()

static void process_c ( EQParameters param,
uint8_t dst,
int  dst_stride,
const uint8_t src,
int  src_stride,
int  w,
int  h 
)
static

Definition at line 77 of file vf_eq.c.

Referenced by ff_eq_init().

◆ check_values()

static void check_values ( EQParameters param,
EQContext eq 
)
static

Definition at line 97 of file vf_eq.c.

Referenced by set_brightness(), set_contrast(), set_gamma(), and set_saturation().

◆ set_contrast()

static void set_contrast ( EQContext eq)
static

Definition at line 107 of file vf_eq.c.

Referenced by filter_frame(), and initialize().

◆ set_brightness()

static void set_brightness ( EQContext eq)
static

Definition at line 115 of file vf_eq.c.

Referenced by filter_frame(), and initialize().

◆ set_gamma()

static void set_gamma ( EQContext eq)
static

Definition at line 123 of file vf_eq.c.

Referenced by filter_frame(), and initialize().

◆ set_saturation()

static void set_saturation ( EQContext eq)
static

Definition at line 144 of file vf_eq.c.

Referenced by filter_frame(), and initialize().

◆ set_expr()

static int set_expr ( AVExpr **  pexpr,
const char *  expr,
const char *  option,
void *  log_ctx 
)
static

Definition at line 157 of file vf_eq.c.

Referenced by initialize(), and set_param().

◆ ff_eq_init()

void ff_eq_init ( EQContext eq)

Definition at line 177 of file vf_eq.c.

Referenced by check_eq(), and initialize().

◆ initialize()

static int initialize ( AVFilterContext ctx)
static

Definition at line 184 of file vf_eq.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 210 of file vf_eq.c.

◆ config_props()

static int config_props ( AVFilterLink inlink)
static

Definition at line 224 of file vf_eq.c.

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 235 of file vf_eq.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame in 
)
static

Definition at line 252 of file vf_eq.c.

◆ set_param()

static int set_param ( AVExpr **  pexpr,
const char *  args,
const char *  cmd,
void(*)(EQContext *eq set_fn,
AVFilterContext ctx 
)
inlinestatic

Definition at line 303 of file vf_eq.c.

◆ process_command()

static int process_command ( AVFilterContext ctx,
const char *  cmd,
const char *  args,
char *  res,
int  res_len,
int  flags 
)
static

Definition at line 315 of file vf_eq.c.

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( eq  )

Variable Documentation

◆ eq_inputs

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

Definition at line 334 of file vf_eq.c.

◆ eq_outputs

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

Definition at line 344 of file vf_eq.c.

◆ eq_options

const AVOption eq_options[]
static
Initial value:
= {
{ "contrast", "set the contrast adjustment, negative values give a negative image",
OFFSET(contrast_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
{ "brightness", "set the brightness adjustment",
OFFSET(brightness_expr), AV_OPT_TYPE_STRING, {.str = "0.0"}, 0, 0, TFLAGS },
{ "saturation", "set the saturation adjustment",
OFFSET(saturation_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
{ "gamma", "set the initial gamma value",
OFFSET(gamma_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
{ "gamma_r", "gamma value for red",
OFFSET(gamma_r_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
{ "gamma_g", "gamma value for green",
OFFSET(gamma_g_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
{ "gamma_b", "gamma value for blue",
OFFSET(gamma_b_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
{ "gamma_weight", "set the gamma weight which reduces the effect of gamma on bright areas",
OFFSET(gamma_weight_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
{ "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
{ "init", "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT}, .flags = FLAGS, .unit = "eval" },
{ "frame", "eval expressions per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
{ NULL }
}

Definition at line 355 of file vf_eq.c.

◆ ff_vf_eq

AVFilter ff_vf_eq
Initial value:
= {
.name = "eq",
.description = NULL_IF_CONFIG_SMALL("Adjust brightness, contrast, gamma, and saturation."),
.priv_size = sizeof(EQContext),
.priv_class = &eq_class,
}

Definition at line 380 of file vf_eq.c.

init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:31
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_eq.c:235
initialize
static int initialize(AVFilterContext *ctx)
Definition: vf_eq.c:184
eq_inputs
static const AVFilterPad eq_inputs[]
Definition: vf_eq.c:334
eq_outputs
static const AVFilterPad eq_outputs[]
Definition: vf_eq.c:344
OFFSET
#define OFFSET(x)
Definition: vf_eq.c:352
config_props
static int config_props(AVFilterLink *inlink)
Definition: vf_eq.c:224
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
FLAGS
#define FLAGS
Definition: vf_eq.c:353
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: vf_eq.c:315
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:117
EQContext
Definition: vf_eq.h:58
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#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:126
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_eq.c:252
TFLAGS
#define TFLAGS
Definition: vf_eq.c:354
EVAL_MODE_NB
@ EVAL_MODE_NB
Definition: af_volume.h:42
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_eq.c:210
EVAL_MODE_FRAME
@ EVAL_MODE_FRAME
Definition: af_volume.h:41
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:225
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
EVAL_MODE_INIT
@ EVAL_MODE_INIT
Definition: vf_fftfilt.c:38
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:229
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:234