1 /*
2 * Original MPlayer filters by Richard Felker, Hampa Hug, Daniel Moreno,
3 * and Michael Niedermeyer.
4 *
5 * Copyright (c) 2014 James Darnley <james.darnley@gmail.com>
6 * Copyright (c) 2015 Arwa Arif <arwaarif1994@gmail.com>
7 *
8 * This file is part of FFmpeg.
9 *
10 * FFmpeg is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * FFmpeg is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 */
24
25 /**
26 * @file
27 * very simple video equalizer
28 */
29
30 #include "libavfilter/internal.h"
31 #include "libavutil/common.h"
32 #include "libavutil/imgutils.h"
33 #include "libavutil/opt.h"
34 #include "libavutil/pixdesc.h"
35 #include "vf_eq.h"
36
create_lut(EQParameters * param)37 static void create_lut(EQParameters *param)
38 {
39 int i;
40 double g = 1.0 / param->gamma;
41 double lw = 1.0 - param->gamma_weight;
42
43 for (i = 0; i < 256; i++) {
44 double v = i / 255.0;
45 v = param->contrast * (v - 0.5) + 0.5 + param->brightness;
46
47 if (v <= 0.0) {
48 param->lut[i] = 0;
49 } else {
50 v = v * lw + pow(v, g) * param->gamma_weight;
51
52 if (v >= 1.0)
53 param->lut[i] = 255;
54 else
55 param->lut[i] = 256.0 * v;
56 }
57 }
58
59 param->lut_clean = 1;
60 }
61
apply_lut(EQParameters * param,uint8_t * dst,int dst_stride,const uint8_t * src,int src_stride,int w,int h)62 static void apply_lut(EQParameters *param, uint8_t *dst, int dst_stride,
63 const uint8_t *src, int src_stride, int w, int h)
64 {
65 int x, y;
66
67 if (!param->lut_clean)
68 create_lut(param);
69
70 for (y = 0; y < h; y++) {
71 for (x = 0; x < w; x++) {
72 dst[y * dst_stride + x] = param->lut[src[y * src_stride + x]];
73 }
74 }
75 }
76
process_c(EQParameters * param,uint8_t * dst,int dst_stride,const uint8_t * src,int src_stride,int w,int h)77 static void process_c(EQParameters *param, uint8_t *dst, int dst_stride,
78 const uint8_t *src, int src_stride, int w, int h)
79 {
80 int x, y, pel;
81
82 int contrast = (int) (param->contrast * 256 * 16);
83 int brightness = ((int) (100.0 * param->brightness + 100.0) * 511) / 200 - 128 - contrast / 32;
84
85 for (y = 0; y < h; y++) {
86 for (x = 0; x < w; x++) {
87 pel = ((src[y * src_stride + x] * contrast) >> 12) + brightness;
88
89 if (pel & ~255)
90 pel = (-pel) >> 31;
91
92 dst[y * dst_stride + x] = pel;
93 }
94 }
95 }
96
check_values(EQParameters * param,EQContext * eq)97 static void check_values(EQParameters *param, EQContext *eq)
98 {
99 if (param->contrast == 1.0 && param->brightness == 0.0 && param->gamma == 1.0)
100 param->adjust = NULL;
101 else if (param->gamma == 1.0 && fabs(param->contrast) < 7.9)
102 param->adjust = eq->process;
103 else
104 param->adjust = apply_lut;
105 }
106
set_contrast(EQContext * eq)107 static void set_contrast(EQContext *eq)
108 {
109 eq->contrast = av_clipf(av_expr_eval(eq->contrast_pexpr, eq->var_values, eq), -1000.0, 1000.0);
110 eq->param[0].contrast = eq->contrast;
111 eq->param[0].lut_clean = 0;
112 check_values(&eq->param[0], eq);
113 }
114
set_brightness(EQContext * eq)115 static void set_brightness(EQContext *eq)
116 {
117 eq->brightness = av_clipf(av_expr_eval(eq->brightness_pexpr, eq->var_values, eq), -1.0, 1.0);
118 eq->param[0].brightness = eq->brightness;
119 eq->param[0].lut_clean = 0;
120 check_values(&eq->param[0], eq);
121 }
122
set_gamma(EQContext * eq)123 static void set_gamma(EQContext *eq)
124 {
125 int i;
126
127 eq->gamma = av_clipf(av_expr_eval(eq->gamma_pexpr, eq->var_values, eq), 0.1, 10.0);
128 eq->gamma_r = av_clipf(av_expr_eval(eq->gamma_r_pexpr, eq->var_values, eq), 0.1, 10.0);
129 eq->gamma_g = av_clipf(av_expr_eval(eq->gamma_g_pexpr, eq->var_values, eq), 0.1, 10.0);
130 eq->gamma_b = av_clipf(av_expr_eval(eq->gamma_b_pexpr, eq->var_values, eq), 0.1, 10.0);
131 eq->gamma_weight = av_clipf(av_expr_eval(eq->gamma_weight_pexpr, eq->var_values, eq), 0.0, 1.0);
132
133 eq->param[0].gamma = eq->gamma * eq->gamma_g;
134 eq->param[1].gamma = sqrt(eq->gamma_b / eq->gamma_g);
135 eq->param[2].gamma = sqrt(eq->gamma_r / eq->gamma_g);
136
137 for (i = 0; i < 3; i++) {
138 eq->param[i].gamma_weight = eq->gamma_weight;
139 eq->param[i].lut_clean = 0;
140 check_values(&eq->param[i], eq);
141 }
142 }
143
set_saturation(EQContext * eq)144 static void set_saturation(EQContext *eq)
145 {
146 int i;
147
148 eq->saturation = av_clipf(av_expr_eval(eq->saturation_pexpr, eq->var_values, eq), 0.0, 3.0);
149
150 for (i = 1; i < 3; i++) {
151 eq->param[i].contrast = eq->saturation;
152 eq->param[i].lut_clean = 0;
153 check_values(&eq->param[i], eq);
154 }
155 }
156
set_expr(AVExpr ** pexpr,const char * expr,const char * option,void * log_ctx)157 static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *log_ctx)
158 {
159 int ret;
160 AVExpr *old = NULL;
161
162 if (*pexpr)
163 old = *pexpr;
164 ret = av_expr_parse(pexpr, expr, var_names, NULL, NULL, NULL, NULL, 0, log_ctx);
165 if (ret < 0) {
166 av_log(log_ctx, AV_LOG_ERROR,
167 "Error when parsing the expression '%s' for %s\n",
168 expr, option);
169 *pexpr = old;
170 return ret;
171 }
172
173 av_expr_free(old);
174 return 0;
175 }
176
ff_eq_init(EQContext * eq)177 void ff_eq_init(EQContext *eq)
178 {
179 eq->process = process_c;
180 if (ARCH_X86)
181 ff_eq_init_x86(eq);
182 }
183
initialize(AVFilterContext * ctx)184 static int initialize(AVFilterContext *ctx)
185 {
186 EQContext *eq = ctx->priv;
187 int ret;
188 ff_eq_init(eq);
189
190 if ((ret = set_expr(&eq->contrast_pexpr, eq->contrast_expr, "contrast", ctx)) < 0 ||
191 (ret = set_expr(&eq->brightness_pexpr, eq->brightness_expr, "brightness", ctx)) < 0 ||
192 (ret = set_expr(&eq->saturation_pexpr, eq->saturation_expr, "saturation", ctx)) < 0 ||
193 (ret = set_expr(&eq->gamma_pexpr, eq->gamma_expr, "gamma", ctx)) < 0 ||
194 (ret = set_expr(&eq->gamma_r_pexpr, eq->gamma_r_expr, "gamma_r", ctx)) < 0 ||
195 (ret = set_expr(&eq->gamma_g_pexpr, eq->gamma_g_expr, "gamma_g", ctx)) < 0 ||
196 (ret = set_expr(&eq->gamma_b_pexpr, eq->gamma_b_expr, "gamma_b", ctx)) < 0 ||
197 (ret = set_expr(&eq->gamma_weight_pexpr, eq->gamma_weight_expr, "gamma_weight", ctx)) < 0 )
198 return ret;
199
200 if (eq->eval_mode == EVAL_MODE_INIT) {
201 set_gamma(eq);
202 set_contrast(eq);
203 set_brightness(eq);
204 set_saturation(eq);
205 }
206
207 return 0;
208 }
209
uninit(AVFilterContext * ctx)210 static av_cold void uninit(AVFilterContext *ctx)
211 {
212 EQContext *eq = ctx->priv;
213
214 av_expr_free(eq->contrast_pexpr); eq->contrast_pexpr = NULL;
215 av_expr_free(eq->brightness_pexpr); eq->brightness_pexpr = NULL;
216 av_expr_free(eq->saturation_pexpr); eq->saturation_pexpr = NULL;
217 av_expr_free(eq->gamma_pexpr); eq->gamma_pexpr = NULL;
218 av_expr_free(eq->gamma_weight_pexpr); eq->gamma_weight_pexpr = NULL;
219 av_expr_free(eq->gamma_r_pexpr); eq->gamma_r_pexpr = NULL;
220 av_expr_free(eq->gamma_g_pexpr); eq->gamma_g_pexpr = NULL;
221 av_expr_free(eq->gamma_b_pexpr); eq->gamma_b_pexpr = NULL;
222 }
223
config_props(AVFilterLink * inlink)224 static int config_props(AVFilterLink *inlink)
225 {
226 EQContext *eq = inlink->dst->priv;
227
228 eq->var_values[VAR_N] = 0;
229 eq->var_values[VAR_R] = inlink->frame_rate.num == 0 || inlink->frame_rate.den == 0 ?
230 NAN : av_q2d(inlink->frame_rate);
231
232 return 0;
233 }
234
query_formats(AVFilterContext * ctx)235 static int query_formats(AVFilterContext *ctx)
236 {
237 static const enum AVPixelFormat pixel_fmts_eq[] = {
238 AV_PIX_FMT_GRAY8,
239 AV_PIX_FMT_YUV410P,
240 AV_PIX_FMT_YUV411P,
241 AV_PIX_FMT_YUV420P,
242 AV_PIX_FMT_YUV422P,
243 AV_PIX_FMT_YUV444P,
244 AV_PIX_FMT_NONE
245 };
246 AVFilterFormats *fmts_list = ff_make_format_list(pixel_fmts_eq);
247 if (!fmts_list)
248 return AVERROR(ENOMEM);
249 return ff_set_common_formats(ctx, fmts_list);
250 }
251
252 #define TS2T(ts, tb) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts) * av_q2d(tb))
253
filter_frame(AVFilterLink * inlink,AVFrame * in)254 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
255 {
256 AVFilterContext *ctx = inlink->dst;
257 AVFilterLink *outlink = inlink->dst->outputs[0];
258 EQContext *eq = ctx->priv;
259 AVFrame *out;
260 int64_t pos = in->pkt_pos;
261 const AVPixFmtDescriptor *desc;
262 int i;
263
264 out = ff_get_video_buffer(outlink, inlink->w, inlink->h);
265 if (!out) {
266 av_frame_free(&in);
267 return AVERROR(ENOMEM);
268 }
269
270 av_frame_copy_props(out, in);
271 desc = av_pix_fmt_desc_get(inlink->format);
272
273 eq->var_values[VAR_N] = inlink->frame_count_out;
274 eq->var_values[VAR_POS] = pos == -1 ? NAN : pos;
275 eq->var_values[VAR_T] = TS2T(in->pts, inlink->time_base);
276
277 if (eq->eval_mode == EVAL_MODE_FRAME) {
278 set_gamma(eq);
279 set_contrast(eq);
280 set_brightness(eq);
281 set_saturation(eq);
282 }
283
284 for (i = 0; i < desc->nb_components; i++) {
285 int w = inlink->w;
286 int h = inlink->h;
287
288 if (i == 1 || i == 2) {
289 w = AV_CEIL_RSHIFT(w, desc->log2_chroma_w);
290 h = AV_CEIL_RSHIFT(h, desc->log2_chroma_h);
291 }
292
293 if (eq->param[i].adjust)
294 eq->param[i].adjust(&eq->param[i], out->data[i], out->linesize[i],
295 in->data[i], in->linesize[i], w, h);
296 else
297 av_image_copy_plane(out->data[i], out->linesize[i],
298 in->data[i], in->linesize[i], w, h);
299 }
300
301 av_frame_free(&in);
302 return ff_filter_frame(outlink, out);
303 }
304
set_param(AVExpr ** pexpr,const char * args,const char * cmd,void (* set_fn)(EQContext * eq),AVFilterContext * ctx)305 static inline int set_param(AVExpr **pexpr, const char *args, const char *cmd,
306 void (*set_fn)(EQContext *eq), AVFilterContext *ctx)
307 {
308 EQContext *eq = ctx->priv;
309 int ret;
310 if ((ret = set_expr(pexpr, args, cmd, ctx)) < 0)
311 return ret;
312 if (eq->eval_mode == EVAL_MODE_INIT)
313 set_fn(eq);
314 return 0;
315 }
316
process_command(AVFilterContext * ctx,const char * cmd,const char * args,char * res,int res_len,int flags)317 static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
318 char *res, int res_len, int flags)
319 {
320 EQContext *eq = ctx->priv;
321
322 #define SET_PARAM(param_name, set_fn_name) \
323 if (!strcmp(cmd, #param_name)) return set_param(&eq->param_name##_pexpr, args, cmd, set_##set_fn_name, ctx);
324
325 SET_PARAM(contrast, contrast)
326 else SET_PARAM(brightness, brightness)
327 else SET_PARAM(saturation, saturation)
328 else SET_PARAM(gamma, gamma)
329 else SET_PARAM(gamma_r, gamma)
330 else SET_PARAM(gamma_g, gamma)
331 else SET_PARAM(gamma_b, gamma)
332 else SET_PARAM(gamma_weight, gamma)
333 else return AVERROR(ENOSYS);
334 }
335
336 static const AVFilterPad eq_inputs[] = {
337 {
338 .name = "default",
339 .type = AVMEDIA_TYPE_VIDEO,
340 .filter_frame = filter_frame,
341 .config_props = config_props,
342 },
343 { NULL }
344 };
345
346 static const AVFilterPad eq_outputs[] = {
347 {
348 .name = "default",
349 .type = AVMEDIA_TYPE_VIDEO,
350 },
351 { NULL }
352 };
353
354 #define OFFSET(x) offsetof(EQContext, x)
355 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
356 #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
357 static const AVOption eq_options[] = {
358 { "contrast", "set the contrast adjustment, negative values give a negative image",
359 OFFSET(contrast_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
360 { "brightness", "set the brightness adjustment",
361 OFFSET(brightness_expr), AV_OPT_TYPE_STRING, {.str = "0.0"}, 0, 0, TFLAGS },
362 { "saturation", "set the saturation adjustment",
363 OFFSET(saturation_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
364 { "gamma", "set the initial gamma value",
365 OFFSET(gamma_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
366 { "gamma_r", "gamma value for red",
367 OFFSET(gamma_r_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
368 { "gamma_g", "gamma value for green",
369 OFFSET(gamma_g_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
370 { "gamma_b", "gamma value for blue",
371 OFFSET(gamma_b_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
372 { "gamma_weight", "set the gamma weight which reduces the effect of gamma on bright areas",
373 OFFSET(gamma_weight_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
374 { "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
375 { "init", "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT}, .flags = FLAGS, .unit = "eval" },
376 { "frame", "eval expressions per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
377 { NULL }
378 };
379
380 AVFILTER_DEFINE_CLASS(eq);
381
382 AVFilter ff_vf_eq = {
383 .name = "eq",
384 .description = NULL_IF_CONFIG_SMALL("Adjust brightness, contrast, gamma, and saturation."),
385 .priv_size = sizeof(EQContext),
386 .priv_class = &eq_class,
387 .inputs = eq_inputs,
388 .outputs = eq_outputs,
389 .process_command = process_command,
390 .query_formats = query_formats,
391 .init = initialize,
392 .uninit = uninit,
393 .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
394 };
395