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.

393 lines
13KB

  1. /*
  2. * Original MPlayer filters by Richard Felker, Hampa Hug, Daniel Moreno,
  3. * and Michael Niedermeyer.
  4. *
  5. * Copyright (c) 2014 James Darnley <james.darnley@gmail.com>
  6. * Copyright (c) 2015 Arwa Arif <arwaarif1994@gmail.com>
  7. *
  8. * This file is part of FFmpeg.
  9. *
  10. * FFmpeg is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * FFmpeg is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License along
  21. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  22. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  23. */
  24. /**
  25. * @file
  26. * very simple video equalizer
  27. */
  28. #include "libavfilter/internal.h"
  29. #include "libavutil/common.h"
  30. #include "libavutil/imgutils.h"
  31. #include "libavutil/opt.h"
  32. #include "libavutil/pixdesc.h"
  33. #include "vf_eq.h"
  34. static void create_lut(EQParameters *param)
  35. {
  36. int i;
  37. double g = 1.0 / param->gamma;
  38. double lw = 1.0 - param->gamma_weight;
  39. for (i = 0; i < 256; i++) {
  40. double v = i / 255.0;
  41. v = param->contrast * (v - 0.5) + 0.5 + param->brightness;
  42. if (v <= 0.0) {
  43. param->lut[i] = 0;
  44. } else {
  45. v = v * lw + pow(v, g) * param->gamma_weight;
  46. if (v >= 1.0)
  47. param->lut[i] = 255;
  48. else
  49. param->lut[i] = 256.0 * v;
  50. }
  51. }
  52. param->lut_clean = 1;
  53. }
  54. static void apply_lut(EQParameters *param, uint8_t *dst, int dst_stride,
  55. const uint8_t *src, int src_stride, int w, int h)
  56. {
  57. int x, y;
  58. if (!param->lut_clean)
  59. create_lut(param);
  60. for (y = 0; y < h; y++) {
  61. for (x = 0; x < w; x++) {
  62. dst[y * dst_stride + x] = param->lut[src[y * src_stride + x]];
  63. }
  64. }
  65. }
  66. static void process_c(EQParameters *param, uint8_t *dst, int dst_stride,
  67. const uint8_t *src, int src_stride, int w, int h)
  68. {
  69. int x, y, pel;
  70. int contrast = (int) (param->contrast * 256 * 16);
  71. int brightness = ((int) (100.0 * param->brightness + 100.0) * 511) / 200 - 128 - contrast / 32;
  72. for (y = 0; y < h; y++) {
  73. for (x = 0; x < w; x++) {
  74. pel = ((src[y * src_stride + x] * contrast) >> 12) + brightness;
  75. if (pel & ~255)
  76. pel = (-pel) >> 31;
  77. dst[y * dst_stride + x] = pel;
  78. }
  79. }
  80. }
  81. static void check_values(EQParameters *param, EQContext *eq)
  82. {
  83. if (param->contrast == 1.0 && param->brightness == 0.0 && param->gamma == 1.0)
  84. param->adjust = NULL;
  85. else if (param->gamma == 1.0 && fabs(param->contrast) < 7.9)
  86. param->adjust = eq->process;
  87. else
  88. param->adjust = apply_lut;
  89. }
  90. static void set_contrast(EQContext *eq)
  91. {
  92. eq->contrast = av_clipf(av_expr_eval(eq->contrast_pexpr, eq->var_values, eq), -1000.0, 1000.0);
  93. eq->param[0].contrast = eq->contrast;
  94. eq->param[0].lut_clean = 0;
  95. check_values(&eq->param[0], eq);
  96. }
  97. static void set_brightness(EQContext *eq)
  98. {
  99. eq->brightness = av_clipf(av_expr_eval(eq->brightness_pexpr, eq->var_values, eq), -1.0, 1.0);
  100. eq->param[0].brightness = eq->brightness;
  101. eq->param[0].lut_clean = 0;
  102. check_values(&eq->param[0], eq);
  103. }
  104. static void set_gamma(EQContext *eq)
  105. {
  106. int i;
  107. eq->gamma = av_clipf(av_expr_eval(eq->gamma_pexpr, eq->var_values, eq), 0.1, 10.0);
  108. eq->gamma_r = av_clipf(av_expr_eval(eq->gamma_r_pexpr, eq->var_values, eq), 0.1, 10.0);
  109. eq->gamma_g = av_clipf(av_expr_eval(eq->gamma_g_pexpr, eq->var_values, eq), 0.1, 10.0);
  110. eq->gamma_b = av_clipf(av_expr_eval(eq->gamma_b_pexpr, eq->var_values, eq), 0.1, 10.0);
  111. eq->gamma_weight = av_clipf(av_expr_eval(eq->gamma_weight_pexpr, eq->var_values, eq), 0.0, 1.0);
  112. eq->param[0].gamma = eq->gamma * eq->gamma_g;
  113. eq->param[1].gamma = sqrt(eq->gamma_b / eq->gamma_g);
  114. eq->param[2].gamma = sqrt(eq->gamma_r / eq->gamma_g);
  115. for (i = 0; i < 3; i++) {
  116. eq->param[i].gamma_weight = eq->gamma_weight;
  117. eq->param[i].lut_clean = 0;
  118. check_values(&eq->param[i], eq);
  119. }
  120. }
  121. static void set_saturation(EQContext *eq)
  122. {
  123. int i;
  124. eq->saturation = av_clipf(av_expr_eval(eq->saturation_pexpr, eq->var_values, eq), 0.0, 3.0);
  125. for (i = 1; i < 3; i++) {
  126. eq->param[i].contrast = eq->saturation;
  127. eq->param[i].lut_clean = 0;
  128. check_values(&eq->param[i], eq);
  129. }
  130. }
  131. static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *log_ctx)
  132. {
  133. int ret;
  134. AVExpr *old = NULL;
  135. if (*pexpr)
  136. old = *pexpr;
  137. ret = av_expr_parse(pexpr, expr, var_names, NULL, NULL, NULL, NULL, 0, log_ctx);
  138. if (ret < 0) {
  139. av_log(log_ctx, AV_LOG_ERROR,
  140. "Error when parsing the expression '%s' for %s\n",
  141. expr, option);
  142. *pexpr = old;
  143. return ret;
  144. }
  145. av_expr_free(old);
  146. return 0;
  147. }
  148. void ff_eq_init(EQContext *eq)
  149. {
  150. eq->process = process_c;
  151. if (ARCH_X86)
  152. ff_eq_init_x86(eq);
  153. }
  154. static int initialize(AVFilterContext *ctx)
  155. {
  156. EQContext *eq = ctx->priv;
  157. int ret;
  158. ff_eq_init(eq);
  159. if ((ret = set_expr(&eq->contrast_pexpr, eq->contrast_expr, "contrast", ctx)) < 0 ||
  160. (ret = set_expr(&eq->brightness_pexpr, eq->brightness_expr, "brightness", ctx)) < 0 ||
  161. (ret = set_expr(&eq->saturation_pexpr, eq->saturation_expr, "saturation", ctx)) < 0 ||
  162. (ret = set_expr(&eq->gamma_pexpr, eq->gamma_expr, "gamma", ctx)) < 0 ||
  163. (ret = set_expr(&eq->gamma_r_pexpr, eq->gamma_r_expr, "gamma_r", ctx)) < 0 ||
  164. (ret = set_expr(&eq->gamma_g_pexpr, eq->gamma_g_expr, "gamma_g", ctx)) < 0 ||
  165. (ret = set_expr(&eq->gamma_b_pexpr, eq->gamma_b_expr, "gamma_b", ctx)) < 0 ||
  166. (ret = set_expr(&eq->gamma_weight_pexpr, eq->gamma_weight_expr, "gamma_weight", ctx)) < 0 )
  167. return ret;
  168. if (eq->eval_mode == EVAL_MODE_INIT) {
  169. set_gamma(eq);
  170. set_contrast(eq);
  171. set_brightness(eq);
  172. set_saturation(eq);
  173. }
  174. return 0;
  175. }
  176. static av_cold void uninit(AVFilterContext *ctx)
  177. {
  178. EQContext *eq = ctx->priv;
  179. av_expr_free(eq->contrast_pexpr); eq->contrast_pexpr = NULL;
  180. av_expr_free(eq->brightness_pexpr); eq->brightness_pexpr = NULL;
  181. av_expr_free(eq->saturation_pexpr); eq->saturation_pexpr = NULL;
  182. av_expr_free(eq->gamma_pexpr); eq->gamma_pexpr = NULL;
  183. av_expr_free(eq->gamma_weight_pexpr); eq->gamma_weight_pexpr = NULL;
  184. av_expr_free(eq->gamma_r_pexpr); eq->gamma_r_pexpr = NULL;
  185. av_expr_free(eq->gamma_g_pexpr); eq->gamma_g_pexpr = NULL;
  186. av_expr_free(eq->gamma_b_pexpr); eq->gamma_b_pexpr = NULL;
  187. }
  188. static int config_props(AVFilterLink *inlink)
  189. {
  190. EQContext *eq = inlink->dst->priv;
  191. eq->var_values[VAR_N] = 0;
  192. eq->var_values[VAR_R] = inlink->frame_rate.num == 0 || inlink->frame_rate.den == 0 ?
  193. NAN : av_q2d(inlink->frame_rate);
  194. return 0;
  195. }
  196. static int query_formats(AVFilterContext *ctx)
  197. {
  198. static const enum AVPixelFormat pixel_fmts_eq[] = {
  199. AV_PIX_FMT_GRAY8,
  200. AV_PIX_FMT_YUV410P,
  201. AV_PIX_FMT_YUV411P,
  202. AV_PIX_FMT_YUV420P,
  203. AV_PIX_FMT_YUV422P,
  204. AV_PIX_FMT_YUV444P,
  205. AV_PIX_FMT_NONE
  206. };
  207. AVFilterFormats *fmts_list = ff_make_format_list(pixel_fmts_eq);
  208. if (!fmts_list)
  209. return AVERROR(ENOMEM);
  210. return ff_set_common_formats(ctx, fmts_list);
  211. }
  212. static int filter_frame(AVFilterLink *inlink, AVFrame *in)
  213. {
  214. AVFilterContext *ctx = inlink->dst;
  215. AVFilterLink *outlink = inlink->dst->outputs[0];
  216. EQContext *eq = ctx->priv;
  217. AVFrame *out;
  218. int64_t pos = in->pkt_pos;
  219. const AVPixFmtDescriptor *desc;
  220. int i;
  221. out = ff_get_video_buffer(outlink, inlink->w, inlink->h);
  222. if (!out) {
  223. av_frame_free(&in);
  224. return AVERROR(ENOMEM);
  225. }
  226. av_frame_copy_props(out, in);
  227. desc = av_pix_fmt_desc_get(inlink->format);
  228. eq->var_values[VAR_N] = inlink->frame_count_out;
  229. eq->var_values[VAR_POS] = pos == -1 ? NAN : pos;
  230. eq->var_values[VAR_T] = TS2T(in->pts, inlink->time_base);
  231. if (eq->eval_mode == EVAL_MODE_FRAME) {
  232. set_gamma(eq);
  233. set_contrast(eq);
  234. set_brightness(eq);
  235. set_saturation(eq);
  236. }
  237. for (i = 0; i < desc->nb_components; i++) {
  238. int w = inlink->w;
  239. int h = inlink->h;
  240. if (i == 1 || i == 2) {
  241. w = AV_CEIL_RSHIFT(w, desc->log2_chroma_w);
  242. h = AV_CEIL_RSHIFT(h, desc->log2_chroma_h);
  243. }
  244. if (eq->param[i].adjust)
  245. eq->param[i].adjust(&eq->param[i], out->data[i], out->linesize[i],
  246. in->data[i], in->linesize[i], w, h);
  247. else
  248. av_image_copy_plane(out->data[i], out->linesize[i],
  249. in->data[i], in->linesize[i], w, h);
  250. }
  251. av_frame_free(&in);
  252. return ff_filter_frame(outlink, out);
  253. }
  254. static inline int set_param(AVExpr **pexpr, const char *args, const char *cmd,
  255. void (*set_fn)(EQContext *eq), AVFilterContext *ctx)
  256. {
  257. EQContext *eq = ctx->priv;
  258. int ret;
  259. if ((ret = set_expr(pexpr, args, cmd, ctx)) < 0)
  260. return ret;
  261. if (eq->eval_mode == EVAL_MODE_INIT)
  262. set_fn(eq);
  263. return 0;
  264. }
  265. static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
  266. char *res, int res_len, int flags)
  267. {
  268. EQContext *eq = ctx->priv;
  269. #define SET_PARAM(param_name, set_fn_name) \
  270. if (!strcmp(cmd, #param_name)) return set_param(&eq->param_name##_pexpr, args, cmd, set_##set_fn_name, ctx);
  271. SET_PARAM(contrast, contrast)
  272. else SET_PARAM(brightness, brightness)
  273. else SET_PARAM(saturation, saturation)
  274. else SET_PARAM(gamma, gamma)
  275. else SET_PARAM(gamma_r, gamma)
  276. else SET_PARAM(gamma_g, gamma)
  277. else SET_PARAM(gamma_b, gamma)
  278. else SET_PARAM(gamma_weight, gamma)
  279. else return AVERROR(ENOSYS);
  280. }
  281. static const AVFilterPad eq_inputs[] = {
  282. {
  283. .name = "default",
  284. .type = AVMEDIA_TYPE_VIDEO,
  285. .filter_frame = filter_frame,
  286. .config_props = config_props,
  287. },
  288. { NULL }
  289. };
  290. static const AVFilterPad eq_outputs[] = {
  291. {
  292. .name = "default",
  293. .type = AVMEDIA_TYPE_VIDEO,
  294. },
  295. { NULL }
  296. };
  297. #define OFFSET(x) offsetof(EQContext, x)
  298. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  299. #define TFLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
  300. static const AVOption eq_options[] = {
  301. { "contrast", "set the contrast adjustment, negative values give a negative image",
  302. OFFSET(contrast_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
  303. { "brightness", "set the brightness adjustment",
  304. OFFSET(brightness_expr), AV_OPT_TYPE_STRING, {.str = "0.0"}, 0, 0, TFLAGS },
  305. { "saturation", "set the saturation adjustment",
  306. OFFSET(saturation_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
  307. { "gamma", "set the initial gamma value",
  308. OFFSET(gamma_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
  309. { "gamma_r", "gamma value for red",
  310. OFFSET(gamma_r_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
  311. { "gamma_g", "gamma value for green",
  312. OFFSET(gamma_g_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
  313. { "gamma_b", "gamma value for blue",
  314. OFFSET(gamma_b_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
  315. { "gamma_weight", "set the gamma weight which reduces the effect of gamma on bright areas",
  316. OFFSET(gamma_weight_expr), AV_OPT_TYPE_STRING, {.str = "1.0"}, 0, 0, TFLAGS },
  317. { "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
  318. { "init", "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT}, .flags = FLAGS, .unit = "eval" },
  319. { "frame", "eval expressions per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
  320. { NULL }
  321. };
  322. AVFILTER_DEFINE_CLASS(eq);
  323. AVFilter ff_vf_eq = {
  324. .name = "eq",
  325. .description = NULL_IF_CONFIG_SMALL("Adjust brightness, contrast, gamma, and saturation."),
  326. .priv_size = sizeof(EQContext),
  327. .priv_class = &eq_class,
  328. .inputs = eq_inputs,
  329. .outputs = eq_outputs,
  330. .process_command = process_command,
  331. .query_formats = query_formats,
  332. .init = initialize,
  333. .uninit = uninit,
  334. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
  335. };