You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

390 lines
14KB

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