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.

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