]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_lut.c
fate: add anequalizer test
[ffmpeg] / libavfilter / vf_lut.c
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * Compute a look-up table for binding the input value to the output
24  * value, and apply it to input video.
25  */
26
27 #include "libavutil/attributes.h"
28 #include "libavutil/bswap.h"
29 #include "libavutil/common.h"
30 #include "libavutil/eval.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/pixdesc.h"
33 #include "avfilter.h"
34 #include "drawutils.h"
35 #include "formats.h"
36 #include "internal.h"
37 #include "video.h"
38
39 static const char *const var_names[] = {
40     "w",        ///< width of the input video
41     "h",        ///< height of the input video
42     "val",      ///< input value for the pixel
43     "maxval",   ///< max value for the pixel
44     "minval",   ///< min value for the pixel
45     "negval",   ///< negated value
46     "clipval",
47     NULL
48 };
49
50 enum var_name {
51     VAR_W,
52     VAR_H,
53     VAR_VAL,
54     VAR_MAXVAL,
55     VAR_MINVAL,
56     VAR_NEGVAL,
57     VAR_CLIPVAL,
58     VAR_VARS_NB
59 };
60
61 typedef struct LutContext {
62     const AVClass *class;
63     uint16_t lut[4][256 * 256];  ///< lookup table for each component
64     char   *comp_expr_str[4];
65     AVExpr *comp_expr[4];
66     int hsub, vsub;
67     double var_values[VAR_VARS_NB];
68     int is_rgb, is_yuv;
69     int is_16bit;
70     int step;
71     int negate_alpha; /* only used by negate */
72 } LutContext;
73
74 #define Y 0
75 #define U 1
76 #define V 2
77 #define R 0
78 #define G 1
79 #define B 2
80 #define A 3
81
82 #define OFFSET(x) offsetof(LutContext, x)
83 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
84
85 static const AVOption options[] = {
86     { "c0", "set component #0 expression", OFFSET(comp_expr_str[0]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
87     { "c1", "set component #1 expression", OFFSET(comp_expr_str[1]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
88     { "c2", "set component #2 expression", OFFSET(comp_expr_str[2]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
89     { "c3", "set component #3 expression", OFFSET(comp_expr_str[3]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
90     { "y",  "set Y expression",            OFFSET(comp_expr_str[Y]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
91     { "u",  "set U expression",            OFFSET(comp_expr_str[U]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
92     { "v",  "set V expression",            OFFSET(comp_expr_str[V]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
93     { "r",  "set R expression",            OFFSET(comp_expr_str[R]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
94     { "g",  "set G expression",            OFFSET(comp_expr_str[G]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
95     { "b",  "set B expression",            OFFSET(comp_expr_str[B]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
96     { "a",  "set A expression",            OFFSET(comp_expr_str[A]),  AV_OPT_TYPE_STRING, { .str = "val" }, .flags = FLAGS },
97     { NULL }
98 };
99
100 static av_cold void uninit(AVFilterContext *ctx)
101 {
102     LutContext *s = ctx->priv;
103     int i;
104
105     for (i = 0; i < 4; i++) {
106         av_expr_free(s->comp_expr[i]);
107         s->comp_expr[i] = NULL;
108         av_freep(&s->comp_expr_str[i]);
109     }
110 }
111
112 #define YUV_FORMATS                                         \
113     AV_PIX_FMT_YUV444P,  AV_PIX_FMT_YUV422P,  AV_PIX_FMT_YUV420P,    \
114     AV_PIX_FMT_YUV411P,  AV_PIX_FMT_YUV410P,  AV_PIX_FMT_YUV440P,    \
115     AV_PIX_FMT_YUVA420P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA444P,   \
116     AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P,   \
117     AV_PIX_FMT_YUVJ440P,                                             \
118     AV_PIX_FMT_YUV444P9LE, AV_PIX_FMT_YUV422P9LE, AV_PIX_FMT_YUV420P9LE, \
119     AV_PIX_FMT_YUV444P10LE, AV_PIX_FMT_YUV422P10LE, AV_PIX_FMT_YUV420P10LE, AV_PIX_FMT_YUV440P10LE, \
120     AV_PIX_FMT_YUV444P12LE, AV_PIX_FMT_YUV422P12LE, AV_PIX_FMT_YUV420P12LE, AV_PIX_FMT_YUV440P12LE, \
121     AV_PIX_FMT_YUV444P14LE, AV_PIX_FMT_YUV422P14LE, AV_PIX_FMT_YUV420P14LE, \
122     AV_PIX_FMT_YUV444P16LE, AV_PIX_FMT_YUV422P16LE, AV_PIX_FMT_YUV420P16LE, \
123     AV_PIX_FMT_YUVA444P16LE, AV_PIX_FMT_YUVA422P16LE, AV_PIX_FMT_YUVA420P16LE
124
125 #define RGB_FORMATS                             \
126     AV_PIX_FMT_ARGB,         AV_PIX_FMT_RGBA,         \
127     AV_PIX_FMT_ABGR,         AV_PIX_FMT_BGRA,         \
128     AV_PIX_FMT_RGB24,        AV_PIX_FMT_BGR24,        \
129     AV_PIX_FMT_RGB48LE,      AV_PIX_FMT_RGBA64LE
130
131 static const enum AVPixelFormat yuv_pix_fmts[] = { YUV_FORMATS, AV_PIX_FMT_NONE };
132 static const enum AVPixelFormat rgb_pix_fmts[] = { RGB_FORMATS, AV_PIX_FMT_NONE };
133 static const enum AVPixelFormat all_pix_fmts[] = { RGB_FORMATS, YUV_FORMATS, AV_PIX_FMT_NONE };
134
135 static int query_formats(AVFilterContext *ctx)
136 {
137     LutContext *s = ctx->priv;
138
139     const enum AVPixelFormat *pix_fmts = s->is_rgb ? rgb_pix_fmts :
140                                                      s->is_yuv ? yuv_pix_fmts :
141                                                                  all_pix_fmts;
142     AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
143     if (!fmts_list)
144         return AVERROR(ENOMEM);
145     return ff_set_common_formats(ctx, fmts_list);
146 }
147
148 /**
149  * Clip value val in the minval - maxval range.
150  */
151 static double clip(void *opaque, double val)
152 {
153     LutContext *s = opaque;
154     double minval = s->var_values[VAR_MINVAL];
155     double maxval = s->var_values[VAR_MAXVAL];
156
157     return av_clip(val, minval, maxval);
158 }
159
160 /**
161  * Compute gamma correction for value val, assuming the minval-maxval
162  * range, val is clipped to a value contained in the same interval.
163  */
164 static double compute_gammaval(void *opaque, double gamma)
165 {
166     LutContext *s = opaque;
167     double val    = s->var_values[VAR_CLIPVAL];
168     double minval = s->var_values[VAR_MINVAL];
169     double maxval = s->var_values[VAR_MAXVAL];
170
171     return pow((val-minval)/(maxval-minval), gamma) * (maxval-minval)+minval;
172 }
173
174 /**
175  * Compute ITU Rec.709 gamma correction of value val.
176  */
177 static double compute_gammaval709(void *opaque, double gamma)
178 {
179     LutContext *s = opaque;
180     double val    = s->var_values[VAR_CLIPVAL];
181     double minval = s->var_values[VAR_MINVAL];
182     double maxval = s->var_values[VAR_MAXVAL];
183     double level = (val - minval) / (maxval - minval);
184     level = level < 0.018 ? 4.5 * level
185                           : 1.099 * pow(level, 1.0 / gamma) - 0.099;
186     return level * (maxval - minval) + minval;
187 }
188
189 static double (* const funcs1[])(void *, double) = {
190     clip,
191     compute_gammaval,
192     compute_gammaval709,
193     NULL
194 };
195
196 static const char * const funcs1_names[] = {
197     "clip",
198     "gammaval",
199     "gammaval709",
200     NULL
201 };
202
203 static int config_props(AVFilterLink *inlink)
204 {
205     AVFilterContext *ctx = inlink->dst;
206     LutContext *s = ctx->priv;
207     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
208     uint8_t rgba_map[4]; /* component index -> RGBA color index map */
209     int min[4], max[4];
210     int val, color, ret;
211
212     s->hsub = desc->log2_chroma_w;
213     s->vsub = desc->log2_chroma_h;
214
215     s->var_values[VAR_W] = inlink->w;
216     s->var_values[VAR_H] = inlink->h;
217     s->is_16bit = desc->comp[0].depth > 8;
218
219     switch (inlink->format) {
220     case AV_PIX_FMT_YUV410P:
221     case AV_PIX_FMT_YUV411P:
222     case AV_PIX_FMT_YUV420P:
223     case AV_PIX_FMT_YUV422P:
224     case AV_PIX_FMT_YUV440P:
225     case AV_PIX_FMT_YUV444P:
226     case AV_PIX_FMT_YUVA420P:
227     case AV_PIX_FMT_YUVA422P:
228     case AV_PIX_FMT_YUVA444P:
229     case AV_PIX_FMT_YUV420P9LE:
230     case AV_PIX_FMT_YUV422P9LE:
231     case AV_PIX_FMT_YUV444P9LE:
232     case AV_PIX_FMT_YUVA420P9LE:
233     case AV_PIX_FMT_YUVA422P9LE:
234     case AV_PIX_FMT_YUVA444P9LE:
235     case AV_PIX_FMT_YUV420P10LE:
236     case AV_PIX_FMT_YUV422P10LE:
237     case AV_PIX_FMT_YUV440P10LE:
238     case AV_PIX_FMT_YUV444P10LE:
239     case AV_PIX_FMT_YUVA420P10LE:
240     case AV_PIX_FMT_YUVA422P10LE:
241     case AV_PIX_FMT_YUVA444P10LE:
242     case AV_PIX_FMT_YUV420P12LE:
243     case AV_PIX_FMT_YUV422P12LE:
244     case AV_PIX_FMT_YUV440P12LE:
245     case AV_PIX_FMT_YUV444P12LE:
246     case AV_PIX_FMT_YUV420P14LE:
247     case AV_PIX_FMT_YUV422P14LE:
248     case AV_PIX_FMT_YUV444P14LE:
249     case AV_PIX_FMT_YUV420P16LE:
250     case AV_PIX_FMT_YUV422P16LE:
251     case AV_PIX_FMT_YUV444P16LE:
252     case AV_PIX_FMT_YUVA420P16LE:
253     case AV_PIX_FMT_YUVA422P16LE:
254     case AV_PIX_FMT_YUVA444P16LE:
255         min[Y] = 16 * (1 << (desc->comp[0].depth - 8));
256         min[U] = 16 * (1 << (desc->comp[1].depth - 8));
257         min[V] = 16 * (1 << (desc->comp[2].depth - 8));
258         min[A] = 0;
259         max[Y] = 235 * (1 << (desc->comp[0].depth - 8));
260         max[U] = 240 * (1 << (desc->comp[1].depth - 8));
261         max[V] = 240 * (1 << (desc->comp[2].depth - 8));
262         max[A] = (1 << desc->comp[3].depth) - 1;
263         break;
264     case AV_PIX_FMT_RGB48LE:
265     case AV_PIX_FMT_RGBA64LE:
266         min[0] = min[1] = min[2] = min[3] = 0;
267         max[0] = max[1] = max[2] = max[3] = 65535;
268         break;
269     default:
270         min[0] = min[1] = min[2] = min[3] = 0;
271         max[0] = max[1] = max[2] = max[3] = 255;
272     }
273
274     s->is_yuv = s->is_rgb = 0;
275     if      (ff_fmt_is_in(inlink->format, yuv_pix_fmts)) s->is_yuv = 1;
276     else if (ff_fmt_is_in(inlink->format, rgb_pix_fmts)) s->is_rgb = 1;
277
278     if (s->is_rgb) {
279         ff_fill_rgba_map(rgba_map, inlink->format);
280         s->step = av_get_bits_per_pixel(desc) >> 3;
281         if (s->is_16bit) {
282             s->step = s->step >> 1;
283         }
284     }
285
286     for (color = 0; color < desc->nb_components; color++) {
287         double res;
288         int comp = s->is_rgb ? rgba_map[color] : color;
289
290         /* create the parsed expression */
291         av_expr_free(s->comp_expr[color]);
292         s->comp_expr[color] = NULL;
293         ret = av_expr_parse(&s->comp_expr[color], s->comp_expr_str[color],
294                             var_names, funcs1_names, funcs1, NULL, NULL, 0, ctx);
295         if (ret < 0) {
296             av_log(ctx, AV_LOG_ERROR,
297                    "Error when parsing the expression '%s' for the component %d and color %d.\n",
298                    s->comp_expr_str[comp], comp, color);
299             return AVERROR(EINVAL);
300         }
301
302         /* compute the lut */
303         s->var_values[VAR_MAXVAL] = max[color];
304         s->var_values[VAR_MINVAL] = min[color];
305
306         for (val = 0; val < (1 << desc->comp[0].depth); val++) {
307             s->var_values[VAR_VAL] = val;
308             s->var_values[VAR_CLIPVAL] = av_clip(val, min[color], max[color]);
309             s->var_values[VAR_NEGVAL] =
310                 av_clip(min[color] + max[color] - s->var_values[VAR_VAL],
311                         min[color], max[color]);
312
313             res = av_expr_eval(s->comp_expr[color], s->var_values, s);
314             if (isnan(res)) {
315                 av_log(ctx, AV_LOG_ERROR,
316                        "Error when evaluating the expression '%s' for the value %d for the component %d.\n",
317                        s->comp_expr_str[color], val, comp);
318                 return AVERROR(EINVAL);
319             }
320             s->lut[comp][val] = av_clip((int)res, min[color], max[color]);
321             av_log(ctx, AV_LOG_DEBUG, "val[%d][%d] = %d\n", comp, val, s->lut[comp][val]);
322         }
323     }
324
325     return 0;
326 }
327
328 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
329 {
330     AVFilterContext *ctx = inlink->dst;
331     LutContext *s = ctx->priv;
332     AVFilterLink *outlink = ctx->outputs[0];
333     AVFrame *out;
334     int i, j, plane, direct = 0;
335
336     if (av_frame_is_writable(in)) {
337         direct = 1;
338         out = in;
339     } else {
340         out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
341         if (!out) {
342             av_frame_free(&in);
343             return AVERROR(ENOMEM);
344         }
345         av_frame_copy_props(out, in);
346     }
347
348     if (s->is_rgb && s->is_16bit) {
349         /* packed, 16-bit */
350         uint16_t *inrow, *outrow, *inrow0, *outrow0;
351         const int w = inlink->w;
352         const int h = in->height;
353         const uint16_t (*tab)[256*256] = (const uint16_t (*)[256*256])s->lut;
354         const int in_linesize  =  in->linesize[0] / 2;
355         const int out_linesize = out->linesize[0] / 2;
356         const int step = s->step;
357
358         inrow0  = (uint16_t*) in ->data[0];
359         outrow0 = (uint16_t*) out->data[0];
360
361         for (i = 0; i < h; i ++) {
362             inrow  = inrow0;
363             outrow = outrow0;
364             for (j = 0; j < w; j++) {
365
366                 switch (step) {
367 #if HAVE_BIGENDIAN
368                 case 4:  outrow[3] = av_bswap16(tab[3][av_bswap16(inrow[3])]); // Fall-through
369                 case 3:  outrow[2] = av_bswap16(tab[2][av_bswap16(inrow[2])]); // Fall-through
370                 case 2:  outrow[1] = av_bswap16(tab[1][av_bswap16(inrow[1])]); // Fall-through
371                 default: outrow[0] = av_bswap16(tab[0][av_bswap16(inrow[0])]);
372 #else
373                 case 4:  outrow[3] = tab[3][inrow[3]]; // Fall-through
374                 case 3:  outrow[2] = tab[2][inrow[2]]; // Fall-through
375                 case 2:  outrow[1] = tab[1][inrow[1]]; // Fall-through
376                 default: outrow[0] = tab[0][inrow[0]];
377 #endif
378                 }
379                 outrow += step;
380                 inrow  += step;
381             }
382             inrow0  += in_linesize;
383             outrow0 += out_linesize;
384         }
385     } else if (s->is_rgb) {
386         /* packed */
387         uint8_t *inrow, *outrow, *inrow0, *outrow0;
388         const int w = inlink->w;
389         const int h = in->height;
390         const uint16_t (*tab)[256*256] = (const uint16_t (*)[256*256])s->lut;
391         const int in_linesize  =  in->linesize[0];
392         const int out_linesize = out->linesize[0];
393         const int step = s->step;
394
395         inrow0  = in ->data[0];
396         outrow0 = out->data[0];
397
398         for (i = 0; i < h; i ++) {
399             inrow  = inrow0;
400             outrow = outrow0;
401             for (j = 0; j < w; j++) {
402                 switch (step) {
403                 case 4:  outrow[3] = tab[3][inrow[3]]; // Fall-through
404                 case 3:  outrow[2] = tab[2][inrow[2]]; // Fall-through
405                 case 2:  outrow[1] = tab[1][inrow[1]]; // Fall-through
406                 default: outrow[0] = tab[0][inrow[0]];
407                 }
408                 outrow += step;
409                 inrow  += step;
410             }
411             inrow0  += in_linesize;
412             outrow0 += out_linesize;
413         }
414     } else if (s->is_16bit) {
415         // planar yuv >8 bit depth
416         uint16_t *inrow, *outrow;
417
418         for (plane = 0; plane < 4 && in->data[plane] && in->linesize[plane]; plane++) {
419             int vsub = plane == 1 || plane == 2 ? s->vsub : 0;
420             int hsub = plane == 1 || plane == 2 ? s->hsub : 0;
421             int h = AV_CEIL_RSHIFT(inlink->h, vsub);
422             int w = AV_CEIL_RSHIFT(inlink->w, hsub);
423             const uint16_t *tab = s->lut[plane];
424             const int in_linesize  =  in->linesize[plane] / 2;
425             const int out_linesize = out->linesize[plane] / 2;
426
427             inrow  = (uint16_t *)in ->data[plane];
428             outrow = (uint16_t *)out->data[plane];
429
430             for (i = 0; i < h; i++) {
431                 for (j = 0; j < w; j++) {
432 #if HAVE_BIGENDIAN
433                     outrow[j] = av_bswap16(tab[av_bswap16(inrow[j])]);
434 #else
435                     outrow[j] = tab[inrow[j]];
436 #endif
437                 }
438                 inrow  += in_linesize;
439                 outrow += out_linesize;
440             }
441         }
442     } else {
443         /* planar 8bit depth */
444         uint8_t *inrow, *outrow;
445
446         for (plane = 0; plane < 4 && in->data[plane] && in->linesize[plane]; plane++) {
447             int vsub = plane == 1 || plane == 2 ? s->vsub : 0;
448             int hsub = plane == 1 || plane == 2 ? s->hsub : 0;
449             int h = AV_CEIL_RSHIFT(inlink->h, vsub);
450             int w = AV_CEIL_RSHIFT(inlink->w, hsub);
451             const uint16_t *tab = s->lut[plane];
452             const int in_linesize  =  in->linesize[plane];
453             const int out_linesize = out->linesize[plane];
454
455             inrow  = in ->data[plane];
456             outrow = out->data[plane];
457
458             for (i = 0; i < h; i++) {
459                 for (j = 0; j < w; j++)
460                     outrow[j] = tab[inrow[j]];
461                 inrow  += in_linesize;
462                 outrow += out_linesize;
463             }
464         }
465     }
466
467     if (!direct)
468         av_frame_free(&in);
469
470     return ff_filter_frame(outlink, out);
471 }
472
473 static const AVFilterPad inputs[] = {
474     { .name         = "default",
475       .type         = AVMEDIA_TYPE_VIDEO,
476       .filter_frame = filter_frame,
477       .config_props = config_props,
478     },
479     { NULL }
480 };
481 static const AVFilterPad outputs[] = {
482     { .name = "default",
483       .type = AVMEDIA_TYPE_VIDEO,
484     },
485     { NULL }
486 };
487
488 #define DEFINE_LUT_FILTER(name_, description_)                          \
489     AVFilter ff_vf_##name_ = {                                          \
490         .name          = #name_,                                        \
491         .description   = NULL_IF_CONFIG_SMALL(description_),            \
492         .priv_size     = sizeof(LutContext),                            \
493         .priv_class    = &name_ ## _class,                              \
494         .init          = name_##_init,                                  \
495         .uninit        = uninit,                                        \
496         .query_formats = query_formats,                                 \
497         .inputs        = inputs,                                        \
498         .outputs       = outputs,                                       \
499         .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,        \
500     }
501
502 #if CONFIG_LUT_FILTER
503
504 #define lut_options options
505 AVFILTER_DEFINE_CLASS(lut);
506
507 static int lut_init(AVFilterContext *ctx)
508 {
509     return 0;
510 }
511
512 DEFINE_LUT_FILTER(lut, "Compute and apply a lookup table to the RGB/YUV input video.");
513 #endif
514
515 #if CONFIG_LUTYUV_FILTER
516
517 #define lutyuv_options options
518 AVFILTER_DEFINE_CLASS(lutyuv);
519
520 static av_cold int lutyuv_init(AVFilterContext *ctx)
521 {
522     LutContext *s = ctx->priv;
523
524     s->is_yuv = 1;
525
526     return 0;
527 }
528
529 DEFINE_LUT_FILTER(lutyuv, "Compute and apply a lookup table to the YUV input video.");
530 #endif
531
532 #if CONFIG_LUTRGB_FILTER
533
534 #define lutrgb_options options
535 AVFILTER_DEFINE_CLASS(lutrgb);
536
537 static av_cold int lutrgb_init(AVFilterContext *ctx)
538 {
539     LutContext *s = ctx->priv;
540
541     s->is_rgb = 1;
542
543     return 0;
544 }
545
546 DEFINE_LUT_FILTER(lutrgb, "Compute and apply a lookup table to the RGB input video.");
547 #endif
548
549 #if CONFIG_NEGATE_FILTER
550
551 static const AVOption negate_options[] = {
552     { "negate_alpha", NULL, OFFSET(negate_alpha), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, FLAGS },
553     { NULL }
554 };
555
556 AVFILTER_DEFINE_CLASS(negate);
557
558 static av_cold int negate_init(AVFilterContext *ctx)
559 {
560     LutContext *s = ctx->priv;
561     int i;
562
563     av_log(ctx, AV_LOG_DEBUG, "negate_alpha:%d\n", s->negate_alpha);
564
565     for (i = 0; i < 4; i++) {
566         s->comp_expr_str[i] = av_strdup((i == 3 && !s->negate_alpha) ?
567                                           "val" : "negval");
568         if (!s->comp_expr_str[i]) {
569             uninit(ctx);
570             return AVERROR(ENOMEM);
571         }
572     }
573
574     return 0;
575 }
576
577 DEFINE_LUT_FILTER(negate, "Negate input video.");
578
579 #endif