libavfilter/vf_curves.c
65fc80f0
 /*
  * Copyright (c) 2013 Clément Bœsch
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include "libavutil/opt.h"
1cb02d4f
 #include "libavutil/bprint.h"
65fc80f0
 #include "libavutil/eval.h"
1cb02d4f
 #include "libavutil/file.h"
 #include "libavutil/intreadwrite.h"
65fc80f0
 #include "libavutil/avassert.h"
09250e34
 #include "libavutil/pixdesc.h"
65fc80f0
 #include "avfilter.h"
09250e34
 #include "drawutils.h"
65fc80f0
 #include "formats.h"
 #include "internal.h"
 #include "video.h"
 
09250e34
 #define R 0
 #define G 1
 #define B 2
 #define A 3
 
65fc80f0
 struct keypoint {
     double x, y;
     struct keypoint *next;
 };
 
 #define NB_COMP 3
 
6278bc8a
 enum preset {
     PRESET_NONE,
     PRESET_COLOR_NEGATIVE,
     PRESET_CROSS_PROCESS,
     PRESET_DARKER,
     PRESET_INCREASE_CONTRAST,
     PRESET_LIGHTER,
     PRESET_LINEAR_CONTRAST,
     PRESET_MEDIUM_CONTRAST,
     PRESET_NEGATIVE,
     PRESET_STRONG_CONTRAST,
     PRESET_VINTAGE,
     NB_PRESETS,
 };
 
ed93ed5e
 typedef struct CurvesContext {
65fc80f0
     const AVClass *class;
08880c1f
     int preset;
99dac393
     char *comp_points_str[NB_COMP + 1];
9280fc7d
     char *comp_points_str_all;
e30cdac1
     uint16_t *graph[NB_COMP + 1];
     int lut_size;
1cb02d4f
     char *psfile;
09250e34
     uint8_t rgba_map[4];
     int step;
4a8f5f1f
     char *plot_filename;
e30cdac1
     int is_16bit;
65fc80f0
 } CurvesContext;
 
0e97ec54
 typedef struct ThreadData {
     AVFrame *in, *out;
 } ThreadData;
 
65fc80f0
 #define OFFSET(x) offsetof(CurvesContext, x)
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 static const AVOption curves_options[] = {
6278bc8a
     { "preset", "select a color curves preset", OFFSET(preset), AV_OPT_TYPE_INT, {.i64=PRESET_NONE}, PRESET_NONE, NB_PRESETS-1, FLAGS, "preset_name" },
34610e11
         { "none",               NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_NONE},                 INT_MIN, INT_MAX, FLAGS, "preset_name" },
6278bc8a
         { "color_negative",     NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_COLOR_NEGATIVE},       INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "cross_process",      NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_CROSS_PROCESS},        INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "darker",             NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_DARKER},               INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "increase_contrast",  NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_INCREASE_CONTRAST},    INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "lighter",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_LIGHTER},              INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "linear_contrast",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_LINEAR_CONTRAST},      INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "medium_contrast",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_MEDIUM_CONTRAST},      INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "negative",           NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_NEGATIVE},             INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "strong_contrast",    NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_STRONG_CONTRAST},      INT_MIN, INT_MAX, FLAGS, "preset_name" },
         { "vintage",            NULL, 0, AV_OPT_TYPE_CONST, {.i64=PRESET_VINTAGE},              INT_MIN, INT_MAX, FLAGS, "preset_name" },
99dac393
     { "master","set master points coordinates",OFFSET(comp_points_str[NB_COMP]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
     { "m",     "set master points coordinates",OFFSET(comp_points_str[NB_COMP]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
34610e11
     { "red",   "set red points coordinates",   OFFSET(comp_points_str[0]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
     { "r",     "set red points coordinates",   OFFSET(comp_points_str[0]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
     { "green", "set green points coordinates", OFFSET(comp_points_str[1]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
     { "g",     "set green points coordinates", OFFSET(comp_points_str[1]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
     { "blue",  "set blue points coordinates",  OFFSET(comp_points_str[2]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
     { "b",     "set blue points coordinates",  OFFSET(comp_points_str[2]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
a1e798ef
     { "all",   "set points coordinates for all components", OFFSET(comp_points_str_all), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
1cb02d4f
     { "psfile", "set Photoshop curves file name", OFFSET(psfile), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
4a8f5f1f
     { "plot", "save Gnuplot script of the curves in specified file", OFFSET(plot_filename), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
65fc80f0
     { NULL }
 };
 
 AVFILTER_DEFINE_CLASS(curves);
 
dc65d784
 static const struct {
     const char *r;
     const char *g;
     const char *b;
99dac393
     const char *master;
6278bc8a
 } curves_presets[] = {
     [PRESET_COLOR_NEGATIVE] = {
5c14018f
         "0.129/1 0.466/0.498 0.725/0",
         "0.109/1 0.301/0.498 0.517/0",
         "0.098/1 0.235/0.498 0.423/0",
6278bc8a
     },
     [PRESET_CROSS_PROCESS] = {
5c14018f
         "0/0 0.25/0.156 0.501/0.501 0.686/0.745 1/1",
         "0/0 0.25/0.188 0.38/0.501 0.745/0.815 1/0.815",
         "0/0 0.231/0.094 0.709/0.874 1/1",
6278bc8a
     },
5c14018f
     [PRESET_DARKER]             = { .master = "0/0 0.5/0.4 1/1" },
     [PRESET_INCREASE_CONTRAST]  = { .master = "0/0 0.149/0.066 0.831/0.905 0.905/0.98 1/1" },
     [PRESET_LIGHTER]            = { .master = "0/0 0.4/0.5 1/1" },
     [PRESET_LINEAR_CONTRAST]    = { .master = "0/0 0.305/0.286 0.694/0.713 1/1" },
     [PRESET_MEDIUM_CONTRAST]    = { .master = "0/0 0.286/0.219 0.639/0.643 1/1" },
99dac393
     [PRESET_NEGATIVE]           = { .master = "0/1 1/0" },
5c14018f
     [PRESET_STRONG_CONTRAST]    = { .master = "0/0 0.301/0.196 0.592/0.6 0.686/0.737 1/1" },
6278bc8a
     [PRESET_VINTAGE] = {
dc65d784
         "0/0.11 0.42/0.51 1/0.95",
5c14018f
         "0/0 0.50/0.48 1/1",
dc65d784
         "0/0.22 0.49/0.44 1/0.8",
     }
 };
 
65fc80f0
 static struct keypoint *make_point(double x, double y, struct keypoint *next)
 {
     struct keypoint *point = av_mallocz(sizeof(*point));
 
     if (!point)
         return NULL;
     point->x = x;
     point->y = y;
     point->next = next;
     return point;
 }
 
e30cdac1
 static int parse_points_str(AVFilterContext *ctx, struct keypoint **points, const char *s,
                             int lut_size)
65fc80f0
 {
     char *p = (char *)s; // strtod won't alter the string
     struct keypoint *last = NULL;
e30cdac1
     const int scale = lut_size - 1;
65fc80f0
 
     /* construct a linked list based on the key points string */
     while (p && *p) {
         struct keypoint *point = make_point(0, 0, NULL);
         if (!point)
             return AVERROR(ENOMEM);
         point->x = av_strtod(p, &p); if (p && *p) p++;
         point->y = av_strtod(p, &p); if (p && *p) p++;
         if (point->x < 0 || point->x > 1 || point->y < 0 || point->y > 1) {
             av_log(ctx, AV_LOG_ERROR, "Invalid key point coordinates (%f;%f), "
                    "x and y must be in the [0;1] range.\n", point->x, point->y);
             return AVERROR(EINVAL);
         }
         if (!*points)
             *points = point;
         if (last) {
e30cdac1
             if ((int)(last->x * scale) >= (int)(point->x * scale)) {
65fc80f0
                 av_log(ctx, AV_LOG_ERROR, "Key point coordinates (%f;%f) "
                        "and (%f;%f) are too close from each other or not "
                        "strictly increasing on the x-axis\n",
                        last->x, last->y, point->x, point->y);
                 return AVERROR(EINVAL);
             }
             last->next = point;
         }
         last = point;
     }
 
5c14018f
     if (*points && !(*points)->next) {
         av_log(ctx, AV_LOG_WARNING, "Only one point (at (%f;%f)) is defined, "
                "this is unlikely to behave as you expect. You probably want"
                "at least 2 points.",
                (*points)->x, (*points)->y);
65fc80f0
     }
 
     return 0;
 }
 
 static int get_nb_points(const struct keypoint *d)
 {
     int n = 0;
     while (d) {
         n++;
         d = d->next;
     }
     return n;
 }
 
 /**
  * Natural cubic spline interpolation
  * Finding curves using Cubic Splines notes by Steven Rauch and John Stockie.
  * @see http://people.math.sfu.ca/~stockie/teaching/macm316/notes/splines.pdf
  */
e30cdac1
 
 #define CLIP(v) (nbits == 8 ? av_clip_uint8(v) : av_clip_uint16(v))
 
62a31aec
 static inline int interpolate(void *log_ctx, uint16_t *y,
e30cdac1
                               const struct keypoint *points, int nbits)
65fc80f0
 {
     int i, ret = 0;
5c14018f
     const struct keypoint *point = points;
65fc80f0
     double xprev = 0;
e30cdac1
     const int lut_size = 1<<nbits;
     const int scale = lut_size - 1;
65fc80f0
 
5c14018f
     double (*matrix)[3];
     double *h, *r;
4eee06ae
     const int n = get_nb_points(points); // number of splines
65fc80f0
 
5c14018f
     if (n == 0) {
e30cdac1
         for (i = 0; i < lut_size; i++)
5c14018f
             y[i] = i;
         return 0;
     }
 
     if (n == 1) {
e30cdac1
         for (i = 0; i < lut_size; i++)
             y[i] = CLIP(point->y * scale);
5c14018f
         return 0;
     }
 
     matrix = av_calloc(n, sizeof(*matrix));
     h = av_malloc((n - 1) * sizeof(*h));
     r = av_calloc(n, sizeof(*r));
65fc80f0
 
     if (!matrix || !h || !r) {
         ret = AVERROR(ENOMEM);
         goto end;
     }
 
     /* h(i) = x(i+1) - x(i) */
     i = -1;
     for (point = points; point; point = point->next) {
         if (i != -1)
             h[i] = point->x - xprev;
         xprev = point->x;
         i++;
     }
 
     /* right-side of the polynomials, will be modified to contains the solution */
     point = points;
     for (i = 1; i < n - 1; i++) {
4eee06ae
         const double yp = point->y;
         const double yc = point->next->y;
         const double yn = point->next->next->y;
65fc80f0
         r[i] = 6 * ((yn-yc)/h[i] - (yc-yp)/h[i-1]);
         point = point->next;
     }
 
09250e34
 #define BD 0 /* sub  diagonal (below main) */
 #define MD 1 /* main diagonal (center) */
 #define AD 2 /* sup  diagonal (above main) */
65fc80f0
 
     /* left side of the polynomials into a tridiagonal matrix. */
09250e34
     matrix[0][MD] = matrix[n - 1][MD] = 1;
65fc80f0
     for (i = 1; i < n - 1; i++) {
09250e34
         matrix[i][BD] = h[i-1];
         matrix[i][MD] = 2 * (h[i-1] + h[i]);
         matrix[i][AD] = h[i];
65fc80f0
     }
 
     /* tridiagonal solving of the linear system */
     for (i = 1; i < n; i++) {
4eee06ae
         const double den = matrix[i][MD] - matrix[i][BD] * matrix[i-1][AD];
         const double k = den ? 1./den : 1.;
09250e34
         matrix[i][AD] *= k;
         r[i] = (r[i] - matrix[i][BD] * r[i - 1]) * k;
65fc80f0
     }
     for (i = n - 2; i >= 0; i--)
09250e34
         r[i] = r[i] - matrix[i][AD] * r[i + 1];
65fc80f0
 
     point = points;
5c14018f
 
     /* left padding */
e30cdac1
     for (i = 0; i < (int)(point->x * scale); i++)
         y[i] = CLIP(point->y * scale);
5c14018f
 
     /* compute the graph with x=[x0..xN] */
     i = 0;
65fc80f0
     av_assert0(point->next); // always at least 2 key points
     while (point->next) {
4eee06ae
         const double yc = point->y;
         const double yn = point->next->y;
65fc80f0
 
4eee06ae
         const double a = yc;
         const double b = (yn-yc)/h[i] - h[i]*r[i]/2. - h[i]*(r[i+1]-r[i])/6.;
         const double c = r[i] / 2.;
         const double d = (r[i+1] - r[i]) / (6.*h[i]);
65fc80f0
 
         int x;
e30cdac1
         const int x_start = point->x       * scale;
         const int x_end   = point->next->x * scale;
65fc80f0
 
e30cdac1
         av_assert0(x_start >= 0 && x_start < lut_size &&
                    x_end   >= 0 && x_end   < lut_size);
65fc80f0
 
         for (x = x_start; x <= x_end; x++) {
e30cdac1
             const double xx = (x - x_start) * 1./scale;
4eee06ae
             const double yy = a + b*xx + c*xx*xx + d*xx*xx*xx;
e30cdac1
             y[x] = CLIP(yy * scale);
62a31aec
             av_log(log_ctx, AV_LOG_DEBUG, "f(%f)=%f -> y[%d]=%d\n", xx, yy, x, y[x]);
65fc80f0
         }
 
         point = point->next;
         i++;
     }
 
5c14018f
     /* right padding */
e30cdac1
     for (i = (int)(point->x * scale); i < lut_size; i++)
         y[i] = CLIP(point->y * scale);
5c14018f
 
65fc80f0
 end:
     av_free(matrix);
     av_free(h);
     av_free(r);
     return ret;
 }
 
e30cdac1
 #define DECLARE_INTERPOLATE_FUNC(nbits)                                     \
c6e900e9
 static int interpolate##nbits(void *log_ctx, uint16_t *y,                   \
                               const struct keypoint *points)                \
e30cdac1
 {                                                                           \
62a31aec
     return interpolate(log_ctx, y, points, nbits);                          \
e30cdac1
 }
 
 DECLARE_INTERPOLATE_FUNC(8)
 DECLARE_INTERPOLATE_FUNC(16)
 
1cb02d4f
 static int parse_psfile(AVFilterContext *ctx, const char *fname)
 {
     CurvesContext *curves = ctx->priv;
     uint8_t *buf;
     size_t size;
     int i, ret, av_unused(version), nb_curves;
     AVBPrint ptstr;
     static const int comp_ids[] = {3, 0, 1, 2};
 
     av_bprint_init(&ptstr, 0, AV_BPRINT_SIZE_AUTOMATIC);
 
     ret = av_file_map(fname, &buf, &size, 0, NULL);
     if (ret < 0)
         return ret;
 
 #define READ16(dst) do {                \
b2cfd1fd
     if (size < 2) {                     \
         ret = AVERROR_INVALIDDATA;      \
         goto end;                       \
     }                                   \
1cb02d4f
     dst = AV_RB16(buf);                 \
     buf  += 2;                          \
     size -= 2;                          \
 } while (0)
 
     READ16(version);
     READ16(nb_curves);
     for (i = 0; i < FFMIN(nb_curves, FF_ARRAY_ELEMS(comp_ids)); i++) {
         int nb_points, n;
         av_bprint_clear(&ptstr);
         READ16(nb_points);
         for (n = 0; n < nb_points; n++) {
             int y, x;
             READ16(y);
             READ16(x);
             av_bprintf(&ptstr, "%f/%f ", x / 255., y / 255.);
         }
         if (*ptstr.str) {
             char **pts = &curves->comp_points_str[comp_ids[i]];
             if (!*pts) {
                 *pts = av_strdup(ptstr.str);
                 av_log(ctx, AV_LOG_DEBUG, "curves %d (intid=%d) [%d points]: [%s]\n",
                        i, comp_ids[i], nb_points, *pts);
                 if (!*pts) {
                     ret = AVERROR(ENOMEM);
                     goto end;
                 }
             }
         }
     }
 end:
     av_bprint_finalize(&ptstr, NULL);
     av_file_unmap(buf, size);
     return ret;
 }
 
e30cdac1
 static int dump_curves(const char *fname, uint16_t *graph[NB_COMP + 1],
                        struct keypoint *comp_points[NB_COMP + 1],
                        int lut_size)
4a8f5f1f
 {
     int i;
     AVBPrint buf;
e30cdac1
     const double scale = 1. / (lut_size - 1);
4a8f5f1f
     static const char * const colors[] = { "red", "green", "blue", "#404040", };
     FILE *f = av_fopen_utf8(fname, "w");
 
     av_assert0(FF_ARRAY_ELEMS(colors) == NB_COMP + 1);
 
     if (!f) {
         int ret = AVERROR(errno);
         av_log(NULL, AV_LOG_ERROR, "Cannot open file '%s' for writing: %s\n",
                fname, av_err2str(ret));
         return ret;
     }
 
     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
 
     av_bprintf(&buf, "set xtics 0.1\n");
     av_bprintf(&buf, "set ytics 0.1\n");
     av_bprintf(&buf, "set size square\n");
     av_bprintf(&buf, "set grid\n");
 
     for (i = 0; i < FF_ARRAY_ELEMS(colors); i++) {
         av_bprintf(&buf, "%s'-' using 1:2 with lines lc '%s' title ''",
                    i ? ", " : "plot ", colors[i]);
         if (comp_points[i])
             av_bprintf(&buf, ", '-' using 1:2 with points pointtype 3 lc '%s' title ''",
                     colors[i]);
     }
     av_bprintf(&buf, "\n");
 
     for (i = 0; i < FF_ARRAY_ELEMS(colors); i++) {
         int x;
 
         /* plot generated values */
e30cdac1
         for (x = 0; x < lut_size; x++)
             av_bprintf(&buf, "%f %f\n", x * scale, graph[i][x] * scale);
4a8f5f1f
         av_bprintf(&buf, "e\n");
 
         /* plot user knots */
         if (comp_points[i]) {
             const struct keypoint *point = comp_points[i];
 
             while (point) {
                 av_bprintf(&buf, "%f %f\n", point->x, point->y);
                 point = point->next;
             }
             av_bprintf(&buf, "e\n");
         }
     }
 
     fwrite(buf.str, 1, buf.len, f);
     fclose(f);
     av_bprint_finalize(&buf, NULL);
     return 0;
 }
 
b470d81f
 static av_cold int curves_init(AVFilterContext *ctx)
65fc80f0
 {
f19f5b90
     int i, ret;
65fc80f0
     CurvesContext *curves = ctx->priv;
9280fc7d
     char **pts = curves->comp_points_str;
2844ea86
     const char *allp = curves->comp_points_str_all;
 
99dac393
     //if (!allp && curves->preset != PRESET_NONE && curves_presets[curves->preset].all)
     //    allp = curves_presets[curves->preset].all;
9280fc7d
 
2844ea86
     if (allp) {
9280fc7d
         for (i = 0; i < NB_COMP; i++) {
             if (!pts[i])
2844ea86
                 pts[i] = av_strdup(allp);
9280fc7d
             if (!pts[i])
                 return AVERROR(ENOMEM);
         }
     }
65fc80f0
 
1cb02d4f
     if (curves->psfile) {
         ret = parse_psfile(ctx, curves->psfile);
         if (ret < 0)
             return ret;
     }
 
6278bc8a
     if (curves->preset != PRESET_NONE) {
99dac393
 #define SET_COMP_IF_NOT_SET(n, name) do {                           \
     if (!pts[n] && curves_presets[curves->preset].name) {           \
         pts[n] = av_strdup(curves_presets[curves->preset].name);    \
         if (!pts[n])                                                \
             return AVERROR(ENOMEM);                                 \
     }                                                               \
 } while (0)
         SET_COMP_IF_NOT_SET(0, r);
         SET_COMP_IF_NOT_SET(1, g);
         SET_COMP_IF_NOT_SET(2, b);
         SET_COMP_IF_NOT_SET(3, master);
dc65d784
     }
 
f19f5b90
     return 0;
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
     static const enum AVPixelFormat pix_fmts[] = {
         AV_PIX_FMT_RGB24,  AV_PIX_FMT_BGR24,
         AV_PIX_FMT_RGBA,   AV_PIX_FMT_BGRA,
         AV_PIX_FMT_ARGB,   AV_PIX_FMT_ABGR,
         AV_PIX_FMT_0RGB,   AV_PIX_FMT_0BGR,
         AV_PIX_FMT_RGB0,   AV_PIX_FMT_BGR0,
e30cdac1
         AV_PIX_FMT_RGB48,  AV_PIX_FMT_BGR48,
         AV_PIX_FMT_RGBA64, AV_PIX_FMT_BGRA64,
f19f5b90
         AV_PIX_FMT_NONE
     };
     AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
     if (!fmts_list)
         return AVERROR(ENOMEM);
     return ff_set_common_formats(ctx, fmts_list);
 }
 
 static int config_input(AVFilterLink *inlink)
 {
     int i, j, ret;
     AVFilterContext *ctx = inlink->dst;
     CurvesContext *curves = ctx->priv;
     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
     char **pts = curves->comp_points_str;
     struct keypoint *comp_points[NB_COMP + 1] = {0};
 
     ff_fill_rgba_map(curves->rgba_map, inlink->format);
e30cdac1
     curves->is_16bit = desc->comp[0].depth > 8;
     curves->lut_size = curves->is_16bit ? 1<<16 : 1<<8;
     curves->step = av_get_padded_bits_per_pixel(desc) >> (3 + curves->is_16bit);
f19f5b90
 
99dac393
     for (i = 0; i < NB_COMP + 1; i++) {
e30cdac1
         curves->graph[i] = av_mallocz_array(curves->lut_size, sizeof(*curves->graph[0]));
050f7905
         if (!curves->graph[i])
             return AVERROR(ENOMEM);
e30cdac1
         ret = parse_points_str(ctx, comp_points + i, curves->comp_points_str[i], curves->lut_size);
65fc80f0
         if (ret < 0)
             return ret;
e30cdac1
         if (curves->is_16bit) ret = interpolate16(ctx, curves->graph[i], comp_points[i]);
         else                  ret = interpolate8(ctx, curves->graph[i], comp_points[i]);
65fc80f0
         if (ret < 0)
             return ret;
     }
 
99dac393
     if (pts[NB_COMP]) {
         for (i = 0; i < NB_COMP; i++)
e30cdac1
             for (j = 0; j < curves->lut_size; j++)
99dac393
                 curves->graph[i][j] = curves->graph[NB_COMP][curves->graph[i][j]];
     }
 
65fc80f0
     if (av_log_get_level() >= AV_LOG_VERBOSE) {
         for (i = 0; i < NB_COMP; i++) {
4eee06ae
             const struct keypoint *point = comp_points[i];
65fc80f0
             av_log(ctx, AV_LOG_VERBOSE, "#%d points:", i);
             while (point) {
                 av_log(ctx, AV_LOG_VERBOSE, " (%f;%f)", point->x, point->y);
                 point = point->next;
             }
         }
     }
 
4a8f5f1f
     if (curves->plot_filename)
e30cdac1
         dump_curves(curves->plot_filename, curves->graph, comp_points, curves->lut_size);
4a8f5f1f
 
9ecdd766
     for (i = 0; i < NB_COMP + 1; i++) {
65fc80f0
         struct keypoint *point = comp_points[i];
         while (point) {
             struct keypoint *next = point->next;
             av_free(point);
             point = next;
         }
     }
 
     return 0;
 }
 
0e97ec54
 static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
65fc80f0
 {
0e97ec54
     int x, y;
     const CurvesContext *curves = ctx->priv;
     const ThreadData *td = arg;
     const AVFrame *in  = td->in;
     const AVFrame *out = td->out;
     const int direct = out == in;
09250e34
     const int step = curves->step;
     const uint8_t r = curves->rgba_map[R];
     const uint8_t g = curves->rgba_map[G];
     const uint8_t b = curves->rgba_map[B];
     const uint8_t a = curves->rgba_map[A];
0e97ec54
     const int slice_start = (in->height *  jobnr   ) / nb_jobs;
     const int slice_end   = (in->height * (jobnr+1)) / nb_jobs;
e30cdac1
 
     if (curves->is_16bit) {
         for (y = slice_start; y < slice_end; y++) {
             uint16_t       *dstp = (      uint16_t *)(out->data[0] + y * out->linesize[0]);
             const uint16_t *srcp = (const uint16_t *)(in ->data[0] + y *  in->linesize[0]);
 
             for (x = 0; x < in->width * step; x += step) {
                 dstp[x + r] = curves->graph[R][srcp[x + r]];
                 dstp[x + g] = curves->graph[G][srcp[x + g]];
                 dstp[x + b] = curves->graph[B][srcp[x + b]];
                 if (!direct && step == 4)
                     dstp[x + a] = srcp[x + a];
             }
         }
     } else {
39c6d4a8
         uint8_t       *dst = out->data[0] + slice_start * out->linesize[0];
         const uint8_t *src =  in->data[0] + slice_start *  in->linesize[0];
 
         for (y = slice_start; y < slice_end; y++) {
             for (x = 0; x < in->width * step; x += step) {
                 dst[x + r] = curves->graph[R][src[x + r]];
                 dst[x + g] = curves->graph[G][src[x + g]];
                 dst[x + b] = curves->graph[B][src[x + b]];
                 if (!direct && step == 4)
                     dst[x + a] = src[x + a];
             }
             dst += out->linesize[0];
             src += in ->linesize[0];
0e97ec54
         }
e30cdac1
     }
0e97ec54
     return 0;
 }
 
 static int filter_frame(AVFilterLink *inlink, AVFrame *in)
 {
     AVFilterContext *ctx = inlink->dst;
     AVFilterLink *outlink = ctx->outputs[0];
     AVFrame *out;
     ThreadData td;
65fc80f0
 
     if (av_frame_is_writable(in)) {
         out = in;
     } else {
         out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
         if (!out) {
             av_frame_free(&in);
             return AVERROR(ENOMEM);
         }
         av_frame_copy_props(out, in);
     }
 
0e97ec54
     td.in  = in;
     td.out = out;
a0a57072
     ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(outlink->h, ff_filter_get_nb_threads(ctx)));
65fc80f0
 
0e97ec54
     if (out != in)
65fc80f0
         av_frame_free(&in);
 
     return ff_filter_frame(outlink, out);
 }
 
b470d81f
 static av_cold void curves_uninit(AVFilterContext *ctx)
050f7905
 {
     int i;
     CurvesContext *curves = ctx->priv;
 
     for (i = 0; i < NB_COMP + 1; i++)
         av_freep(&curves->graph[i]);
 }
 
65fc80f0
 static const AVFilterPad curves_inputs[] = {
     {
         .name         = "default",
         .type         = AVMEDIA_TYPE_VIDEO,
         .filter_frame = filter_frame,
09250e34
         .config_props = config_input,
65fc80f0
     },
     { NULL }
 };
 
 static const AVFilterPad curves_outputs[] = {
811b17fb
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO,
     },
     { NULL }
65fc80f0
 };
 
325f6e0a
 AVFilter ff_vf_curves = {
65fc80f0
     .name          = "curves",
     .description   = NULL_IF_CONFIG_SMALL("Adjust components curves."),
     .priv_size     = sizeof(CurvesContext),
b470d81f
     .init          = curves_init,
     .uninit        = curves_uninit,
65fc80f0
     .query_formats = query_formats,
     .inputs        = curves_inputs,
     .outputs       = curves_outputs,
     .priv_class    = &curves_class,
0e97ec54
     .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS,
65fc80f0
 };