vf_lut.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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. * @file
  22. * Compute a look-up table for binding the input value to the output
  23. * value, and apply it to input video.
  24. */
  25. #include "libavutil/eval.h"
  26. #include "libavutil/opt.h"
  27. #include "libavutil/pixdesc.h"
  28. #include "avfilter.h"
  29. #include "internal.h"
  30. static const char *var_names[] = {
  31. "E",
  32. "PHI",
  33. "PI",
  34. "w", ///< width of the input video
  35. "h", ///< height of the input video
  36. "val", ///< input value for the pixel
  37. "maxval", ///< max value for the pixel
  38. "minval", ///< min value for the pixel
  39. "negval", ///< negated value
  40. "clipval",
  41. NULL
  42. };
  43. enum var_name {
  44. VAR_E,
  45. VAR_PHI,
  46. VAR_PI,
  47. VAR_W,
  48. VAR_H,
  49. VAR_VAL,
  50. VAR_MAXVAL,
  51. VAR_MINVAL,
  52. VAR_NEGVAL,
  53. VAR_CLIPVAL,
  54. VAR_VARS_NB
  55. };
  56. typedef struct {
  57. const AVClass *class;
  58. uint8_t lut[4][256]; ///< lookup table for each component
  59. char *comp_expr_str[4];
  60. AVExpr *comp_expr[4];
  61. int hsub, vsub;
  62. double var_values[VAR_VARS_NB];
  63. int is_rgb, is_yuv;
  64. int rgba_map[4];
  65. int step;
  66. int negate_alpha; /* only used by negate */
  67. } LutContext;
  68. #define Y 0
  69. #define U 1
  70. #define V 2
  71. #define R 0
  72. #define G 1
  73. #define B 2
  74. #define A 3
  75. #define OFFSET(x) offsetof(LutContext, x)
  76. static const AVOption lut_options[] = {
  77. {"c0", "set component #0 expression", OFFSET(comp_expr_str[0]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  78. {"c1", "set component #1 expression", OFFSET(comp_expr_str[1]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  79. {"c2", "set component #2 expression", OFFSET(comp_expr_str[2]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  80. {"c3", "set component #3 expression", OFFSET(comp_expr_str[3]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  81. {"y", "set Y expression", OFFSET(comp_expr_str[Y]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  82. {"u", "set U expression", OFFSET(comp_expr_str[U]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  83. {"v", "set V expression", OFFSET(comp_expr_str[V]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  84. {"r", "set R expression", OFFSET(comp_expr_str[R]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  85. {"g", "set G expression", OFFSET(comp_expr_str[G]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  86. {"b", "set B expression", OFFSET(comp_expr_str[B]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  87. {"a", "set A expression", OFFSET(comp_expr_str[A]), FF_OPT_TYPE_STRING, {.str="val"}, CHAR_MIN, CHAR_MAX},
  88. {NULL},
  89. };
  90. static const char *lut_get_name(void *ctx)
  91. {
  92. return "lut";
  93. }
  94. static const AVClass lut_class = {
  95. "LutContext",
  96. lut_get_name,
  97. lut_options
  98. };
  99. static int init(AVFilterContext *ctx, const char *args, void *opaque)
  100. {
  101. LutContext *lut = ctx->priv;
  102. int ret;
  103. lut->class = &lut_class;
  104. av_opt_set_defaults2(lut, 0, 0);
  105. lut->var_values[VAR_PHI] = M_PHI;
  106. lut->var_values[VAR_PI] = M_PI;
  107. lut->var_values[VAR_E ] = M_E;
  108. lut->is_rgb = !strcmp(ctx->filter->name, "lutrgb");
  109. lut->is_yuv = !strcmp(ctx->filter->name, "lutyuv");
  110. if (args && (ret = av_set_options_string(lut, args, "=", ":")) < 0)
  111. return ret;
  112. return 0;
  113. }
  114. static av_cold void uninit(AVFilterContext *ctx)
  115. {
  116. LutContext *lut = ctx->priv;
  117. int i;
  118. for (i = 0; i < 4; i++) {
  119. av_expr_free(lut->comp_expr[i]);
  120. lut->comp_expr[i] = NULL;
  121. av_freep(&lut->comp_expr_str[i]);
  122. }
  123. }
  124. #define YUV_FORMATS \
  125. PIX_FMT_YUV444P, PIX_FMT_YUV422P, PIX_FMT_YUV420P, \
  126. PIX_FMT_YUV411P, PIX_FMT_YUV410P, PIX_FMT_YUV440P, \
  127. PIX_FMT_YUVA420P, \
  128. PIX_FMT_YUVJ444P, PIX_FMT_YUVJ422P, PIX_FMT_YUVJ420P, \
  129. PIX_FMT_YUVJ440P
  130. #define RGB_FORMATS \
  131. PIX_FMT_ARGB, PIX_FMT_RGBA, \
  132. PIX_FMT_ABGR, PIX_FMT_BGRA, \
  133. PIX_FMT_RGB24, PIX_FMT_BGR24
  134. static enum PixelFormat yuv_pix_fmts[] = { YUV_FORMATS, PIX_FMT_NONE };
  135. static enum PixelFormat rgb_pix_fmts[] = { RGB_FORMATS, PIX_FMT_NONE };
  136. static enum PixelFormat all_pix_fmts[] = { RGB_FORMATS, YUV_FORMATS, PIX_FMT_NONE };
  137. static int query_formats(AVFilterContext *ctx)
  138. {
  139. LutContext *lut = ctx->priv;
  140. enum PixelFormat *pix_fmts = lut->is_rgb ? rgb_pix_fmts :
  141. lut->is_yuv ? yuv_pix_fmts : all_pix_fmts;
  142. avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
  143. return 0;
  144. }
  145. /**
  146. * Clip value val in the minval - maxval range.
  147. */
  148. static double clip(void *opaque, double val)
  149. {
  150. LutContext *lut = opaque;
  151. double minval = lut->var_values[VAR_MINVAL];
  152. double maxval = lut->var_values[VAR_MAXVAL];
  153. return av_clip(val, minval, maxval);
  154. }
  155. /**
  156. * Compute gamma correction for value val, assuming the minval-maxval
  157. * range, val is clipped to a value contained in the same interval.
  158. */
  159. static double compute_gammaval(void *opaque, double gamma)
  160. {
  161. LutContext *lut = opaque;
  162. double val = lut->var_values[VAR_CLIPVAL];
  163. double minval = lut->var_values[VAR_MINVAL];
  164. double maxval = lut->var_values[VAR_MAXVAL];
  165. return pow((val-minval)/(maxval-minval), gamma) * (maxval-minval)+minval;
  166. }
  167. static double (* const funcs1[])(void *, double) = {
  168. (void *)clip,
  169. (void *)compute_gammaval,
  170. NULL
  171. };
  172. static const char * const funcs1_names[] = {
  173. "clip",
  174. "gammaval",
  175. NULL
  176. };
  177. static int config_props(AVFilterLink *inlink)
  178. {
  179. AVFilterContext *ctx = inlink->dst;
  180. LutContext *lut = ctx->priv;
  181. const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[inlink->format];
  182. int min[4], max[4];
  183. int val, comp, ret;
  184. lut->hsub = desc->log2_chroma_w;
  185. lut->vsub = desc->log2_chroma_h;
  186. lut->var_values[VAR_W] = inlink->w;
  187. lut->var_values[VAR_H] = inlink->h;
  188. switch (inlink->format) {
  189. case PIX_FMT_YUV410P:
  190. case PIX_FMT_YUV411P:
  191. case PIX_FMT_YUV420P:
  192. case PIX_FMT_YUV422P:
  193. case PIX_FMT_YUV440P:
  194. case PIX_FMT_YUV444P:
  195. case PIX_FMT_YUVA420P:
  196. min[Y] = min[U] = min[V] = 16;
  197. max[Y] = 235;
  198. max[U] = max[V] = 240;
  199. min[A] = 0; max[A] = 255;
  200. break;
  201. default:
  202. min[0] = min[1] = min[2] = min[3] = 0;
  203. max[0] = max[1] = max[2] = max[3] = 255;
  204. }
  205. lut->is_yuv = lut->is_rgb = 0;
  206. if (ff_fmt_is_in(inlink->format, yuv_pix_fmts)) lut->is_yuv = 1;
  207. else if (ff_fmt_is_in(inlink->format, rgb_pix_fmts)) lut->is_rgb = 1;
  208. if (lut->is_rgb) {
  209. switch (inlink->format) {
  210. case PIX_FMT_ARGB: lut->rgba_map[A] = 0; lut->rgba_map[R] = 1; lut->rgba_map[G] = 2; lut->rgba_map[B] = 3; break;
  211. case PIX_FMT_ABGR: lut->rgba_map[A] = 0; lut->rgba_map[B] = 1; lut->rgba_map[G] = 2; lut->rgba_map[R] = 3; break;
  212. case PIX_FMT_RGBA:
  213. case PIX_FMT_RGB24: lut->rgba_map[R] = 0; lut->rgba_map[G] = 1; lut->rgba_map[B] = 2; lut->rgba_map[A] = 3; break;
  214. case PIX_FMT_BGRA:
  215. case PIX_FMT_BGR24: lut->rgba_map[B] = 0; lut->rgba_map[G] = 1; lut->rgba_map[R] = 2; lut->rgba_map[A] = 3; break;
  216. }
  217. lut->step = av_get_bits_per_pixel(desc) >> 3;
  218. }
  219. for (comp = 0; comp < desc->nb_components; comp++) {
  220. double res;
  221. /* create the parsed expression */
  222. ret = av_expr_parse(&lut->comp_expr[comp], lut->comp_expr_str[comp],
  223. var_names, funcs1_names, funcs1, NULL, NULL, 0, ctx);
  224. if (ret < 0) {
  225. av_log(ctx, AV_LOG_ERROR,
  226. "Error when parsing the expression '%s' for the component %d.\n",
  227. lut->comp_expr_str[comp], comp);
  228. return AVERROR(EINVAL);
  229. }
  230. /* compute the lut */
  231. lut->var_values[VAR_MAXVAL] = max[comp];
  232. lut->var_values[VAR_MINVAL] = min[comp];
  233. for (val = 0; val < 256; val++) {
  234. lut->var_values[VAR_VAL] = val;
  235. lut->var_values[VAR_CLIPVAL] = av_clip(val, min[comp], max[comp]);
  236. lut->var_values[VAR_NEGVAL] =
  237. av_clip(min[comp] + max[comp] - lut->var_values[VAR_VAL],
  238. min[comp], max[comp]);
  239. res = av_expr_eval(lut->comp_expr[comp], lut->var_values, lut);
  240. if (isnan(res)) {
  241. av_log(ctx, AV_LOG_ERROR,
  242. "Error when evaluating the expression '%s' for the value %d for the component #%d.\n",
  243. lut->comp_expr_str[comp], val, comp);
  244. return AVERROR(EINVAL);
  245. }
  246. lut->lut[comp][val] = av_clip((int)res, min[comp], max[comp]);
  247. av_log(ctx, AV_LOG_DEBUG, "val[%d][%d] = %d\n", comp, val, lut->lut[comp][val]);
  248. }
  249. }
  250. return 0;
  251. }
  252. static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
  253. {
  254. AVFilterContext *ctx = inlink->dst;
  255. LutContext *lut = ctx->priv;
  256. AVFilterLink *outlink = ctx->outputs[0];
  257. AVFilterBufferRef *inpic = inlink ->cur_buf;
  258. AVFilterBufferRef *outpic = outlink->out_buf;
  259. uint8_t *inrow, *outrow, *inrow0, *outrow0;
  260. int i, j, k, plane;
  261. if (lut->is_rgb) {
  262. /* packed */
  263. inrow0 = inpic ->data[0] + y * inpic ->linesize[0];
  264. outrow0 = outpic->data[0] + y * outpic->linesize[0];
  265. for (i = 0; i < h; i ++) {
  266. inrow = inrow0;
  267. outrow = outrow0;
  268. for (j = 0; j < inlink->w; j++) {
  269. for (k = 0; k < lut->step; k++)
  270. outrow[k] = lut->lut[lut->rgba_map[k]][inrow[k]];
  271. outrow += lut->step;
  272. inrow += lut->step;
  273. }
  274. inrow0 += inpic ->linesize[0];
  275. outrow0 += outpic->linesize[0];
  276. }
  277. } else {
  278. /* planar */
  279. for (plane = 0; plane < 4 && inpic->data[plane]; plane++) {
  280. int vsub = plane == 1 || plane == 2 ? lut->vsub : 0;
  281. int hsub = plane == 1 || plane == 2 ? lut->hsub : 0;
  282. inrow = inpic ->data[plane] + (y>>vsub) * inpic ->linesize[plane];
  283. outrow = outpic->data[plane] + (y>>vsub) * outpic->linesize[plane];
  284. for (i = 0; i < h>>vsub; i ++) {
  285. for (j = 0; j < inlink->w>>hsub; j++)
  286. outrow[j] = lut->lut[plane][inrow[j]];
  287. inrow += inpic ->linesize[plane];
  288. outrow += outpic->linesize[plane];
  289. }
  290. }
  291. }
  292. avfilter_draw_slice(outlink, y, h, slice_dir);
  293. }
  294. #define DEFINE_LUT_FILTER(name_, description_, init_) \
  295. AVFilter avfilter_vf_##name_ = { \
  296. .name = #name_, \
  297. .description = NULL_IF_CONFIG_SMALL(description_), \
  298. .priv_size = sizeof(LutContext), \
  299. \
  300. .init = init_, \
  301. .uninit = uninit, \
  302. .query_formats = query_formats, \
  303. \
  304. .inputs = (AVFilterPad[]) {{ .name = "default", \
  305. .type = AVMEDIA_TYPE_VIDEO, \
  306. .draw_slice = draw_slice, \
  307. .config_props = config_props, \
  308. .min_perms = AV_PERM_READ, }, \
  309. { .name = NULL}}, \
  310. .outputs = (AVFilterPad[]) {{ .name = "default", \
  311. .type = AVMEDIA_TYPE_VIDEO, }, \
  312. { .name = NULL}}, \
  313. }
  314. DEFINE_LUT_FILTER(lut, "Compute and apply a lookup table to the RGB/YUV input video.", init);
  315. DEFINE_LUT_FILTER(lutyuv, "Compute and apply a lookup table to the YUV input video.", init);
  316. DEFINE_LUT_FILTER(lutrgb, "Compute and apply a lookup table to the RGB input video.", init);
  317. #if CONFIG_NEGATE_FILTER
  318. static int negate_init(AVFilterContext *ctx, const char *args, void *opaque)
  319. {
  320. LutContext *lut = ctx->priv;
  321. char lut_params[1024];
  322. if (args)
  323. sscanf(args, "%d", &lut->negate_alpha);
  324. av_log(ctx, AV_LOG_INFO, "negate_alpha:%d\n", lut->negate_alpha);
  325. snprintf(lut_params, sizeof(lut_params), "c0=negval:c1=negval:c2=negval:a=%s",
  326. lut->negate_alpha ? "negval" : "val");
  327. return init(ctx, lut_params, opaque);
  328. }
  329. DEFINE_LUT_FILTER(negate, "Negate input video.", negate_init);
  330. #endif