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.

386 lines
12KB

  1. /*
  2. * Copyright (c) 2003 Michael Niedermayer
  3. * Copyright (c) 2012 Jeremy Tran
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  20. */
  21. /**
  22. * @file
  23. * Apply a hue/saturation filter to the input video
  24. * Ported from MPlayer libmpcodecs/vf_hue.c.
  25. */
  26. #include <float.h>
  27. #include "libavutil/eval.h"
  28. #include "libavutil/imgutils.h"
  29. #include "libavutil/opt.h"
  30. #include "libavutil/pixdesc.h"
  31. #include "avfilter.h"
  32. #include "formats.h"
  33. #include "internal.h"
  34. #include "video.h"
  35. #define HUE_DEFAULT_VAL 0
  36. #define SAT_DEFAULT_VAL 1
  37. #define HUE_DEFAULT_VAL_STRING AV_STRINGIFY(HUE_DEFAULT_VAL)
  38. #define SAT_DEFAULT_VAL_STRING AV_STRINGIFY(SAT_DEFAULT_VAL)
  39. #define SAT_MIN_VAL -10
  40. #define SAT_MAX_VAL 10
  41. static const char *const var_names[] = {
  42. "n", // frame count
  43. "pts", // presentation timestamp expressed in AV_TIME_BASE units
  44. "r", // frame rate
  45. "t", // timestamp expressed in seconds
  46. "tb", // timebase
  47. NULL
  48. };
  49. enum var_name {
  50. VAR_N,
  51. VAR_PTS,
  52. VAR_R,
  53. VAR_T,
  54. VAR_TB,
  55. VAR_NB
  56. };
  57. typedef struct {
  58. const AVClass *class;
  59. float hue_deg; /* hue expressed in degrees */
  60. float hue; /* hue expressed in radians */
  61. char *hue_deg_expr;
  62. char *hue_expr;
  63. AVExpr *hue_deg_pexpr;
  64. AVExpr *hue_pexpr;
  65. float saturation;
  66. char *saturation_expr;
  67. AVExpr *saturation_pexpr;
  68. int hsub;
  69. int vsub;
  70. int32_t hue_sin;
  71. int32_t hue_cos;
  72. int flat_syntax;
  73. double var_values[VAR_NB];
  74. } HueContext;
  75. #define OFFSET(x) offsetof(HueContext, x)
  76. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  77. static const AVOption hue_options[] = {
  78. { "h", "set the hue angle degrees expression", OFFSET(hue_deg_expr), AV_OPT_TYPE_STRING,
  79. { .str = NULL }, .flags = FLAGS },
  80. { "H", "set the hue angle radians expression", OFFSET(hue_expr), AV_OPT_TYPE_STRING,
  81. { .str = NULL }, .flags = FLAGS },
  82. { "s", "set the saturation expression", OFFSET(saturation_expr), AV_OPT_TYPE_STRING,
  83. { .str = NULL }, .flags = FLAGS },
  84. { NULL }
  85. };
  86. AVFILTER_DEFINE_CLASS(hue);
  87. static inline void compute_sin_and_cos(HueContext *hue)
  88. {
  89. /*
  90. * Scale the value to the norm of the resulting (U,V) vector, that is
  91. * the saturation.
  92. * This will be useful in the process_chrominance function.
  93. */
  94. hue->hue_sin = rint(sin(hue->hue) * (1 << 16) * hue->saturation);
  95. hue->hue_cos = rint(cos(hue->hue) * (1 << 16) * hue->saturation);
  96. }
  97. #define SET_EXPRESSION(attr, name) do { \
  98. if (hue->attr##_expr) { \
  99. if ((ret = av_expr_parse(&hue->attr##_pexpr, hue->attr##_expr, var_names, \
  100. NULL, NULL, NULL, NULL, 0, ctx)) < 0) { \
  101. av_log(ctx, AV_LOG_ERROR, \
  102. "Parsing failed for expression " #name "='%s'", \
  103. hue->attr##_expr); \
  104. hue->attr##_expr = old_##attr##_expr; \
  105. hue->attr##_pexpr = old_##attr##_pexpr; \
  106. return AVERROR(EINVAL); \
  107. } else if (old_##attr##_pexpr) { \
  108. av_freep(&old_##attr##_expr); \
  109. av_expr_free(old_##attr##_pexpr); \
  110. old_##attr##_pexpr = NULL; \
  111. } \
  112. } else { \
  113. hue->attr##_expr = old_##attr##_expr; \
  114. } \
  115. } while (0)
  116. static inline int set_options(AVFilterContext *ctx, const char *args)
  117. {
  118. HueContext *hue = ctx->priv;
  119. int ret;
  120. char *old_hue_expr, *old_hue_deg_expr, *old_saturation_expr;
  121. AVExpr *old_hue_pexpr, *old_hue_deg_pexpr, *old_saturation_pexpr;
  122. static const char *shorthand[] = { "h", "s", NULL };
  123. old_hue_expr = hue->hue_expr;
  124. old_hue_deg_expr = hue->hue_deg_expr;
  125. old_saturation_expr = hue->saturation_expr;
  126. old_hue_pexpr = hue->hue_pexpr;
  127. old_hue_deg_pexpr = hue->hue_deg_pexpr;
  128. old_saturation_pexpr = hue->saturation_pexpr;
  129. hue->hue_expr = NULL;
  130. hue->hue_deg_expr = NULL;
  131. hue->saturation_expr = NULL;
  132. if ((ret = av_opt_set_from_string(hue, args, shorthand, "=", ":")) < 0)
  133. return ret;
  134. if (hue->hue_expr && hue->hue_deg_expr) {
  135. av_log(ctx, AV_LOG_ERROR,
  136. "H and h options are incompatible and cannot be specified "
  137. "at the same time\n");
  138. hue->hue_expr = old_hue_expr;
  139. hue->hue_deg_expr = old_hue_deg_expr;
  140. return AVERROR(EINVAL);
  141. }
  142. SET_EXPRESSION(hue_deg, h);
  143. SET_EXPRESSION(hue, H);
  144. SET_EXPRESSION(saturation, s);
  145. hue->flat_syntax = 0;
  146. av_log(ctx, AV_LOG_VERBOSE,
  147. "H_expr:%s h_deg_expr:%s s_expr:%s\n",
  148. hue->hue_expr, hue->hue_deg_expr, hue->saturation_expr);
  149. compute_sin_and_cos(hue);
  150. return 0;
  151. }
  152. static av_cold int init(AVFilterContext *ctx, const char *args)
  153. {
  154. HueContext *hue = ctx->priv;
  155. hue->class = &hue_class;
  156. av_opt_set_defaults(hue);
  157. hue->saturation = SAT_DEFAULT_VAL;
  158. hue->hue = HUE_DEFAULT_VAL;
  159. hue->hue_deg_pexpr = NULL;
  160. hue->hue_pexpr = NULL;
  161. hue->flat_syntax = 1;
  162. return set_options(ctx, args);
  163. }
  164. static av_cold void uninit(AVFilterContext *ctx)
  165. {
  166. HueContext *hue = ctx->priv;
  167. av_opt_free(hue);
  168. av_free(hue->hue_deg_expr);
  169. av_expr_free(hue->hue_deg_pexpr);
  170. av_free(hue->hue_expr);
  171. av_expr_free(hue->hue_pexpr);
  172. av_free(hue->saturation_expr);
  173. av_expr_free(hue->saturation_pexpr);
  174. }
  175. static int query_formats(AVFilterContext *ctx)
  176. {
  177. static const enum AVPixelFormat pix_fmts[] = {
  178. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
  179. AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
  180. AV_PIX_FMT_YUV410P, AV_PIX_FMT_YUV440P,
  181. AV_PIX_FMT_YUVA420P,
  182. AV_PIX_FMT_NONE
  183. };
  184. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  185. return 0;
  186. }
  187. static int config_props(AVFilterLink *inlink)
  188. {
  189. HueContext *hue = inlink->dst->priv;
  190. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  191. hue->hsub = desc->log2_chroma_w;
  192. hue->vsub = desc->log2_chroma_h;
  193. hue->var_values[VAR_N] = 0;
  194. hue->var_values[VAR_TB] = av_q2d(inlink->time_base);
  195. hue->var_values[VAR_R] = inlink->frame_rate.num == 0 || inlink->frame_rate.den == 0 ?
  196. NAN : av_q2d(inlink->frame_rate);
  197. return 0;
  198. }
  199. static void process_chrominance(uint8_t *udst, uint8_t *vdst, const int dst_linesize,
  200. uint8_t *usrc, uint8_t *vsrc, const int src_linesize,
  201. int w, int h,
  202. const int32_t c, const int32_t s)
  203. {
  204. int32_t u, v, new_u, new_v;
  205. int i;
  206. /*
  207. * If we consider U and V as the components of a 2D vector then its angle
  208. * is the hue and the norm is the saturation
  209. */
  210. while (h--) {
  211. for (i = 0; i < w; i++) {
  212. /* Normalize the components from range [16;140] to [-112;112] */
  213. u = usrc[i] - 128;
  214. v = vsrc[i] - 128;
  215. /*
  216. * Apply the rotation of the vector : (c * u) - (s * v)
  217. * (s * u) + (c * v)
  218. * De-normalize the components (without forgetting to scale 128
  219. * by << 16)
  220. * Finally scale back the result by >> 16
  221. */
  222. new_u = ((c * u) - (s * v) + (1 << 15) + (128 << 16)) >> 16;
  223. new_v = ((s * u) + (c * v) + (1 << 15) + (128 << 16)) >> 16;
  224. /* Prevent a potential overflow */
  225. udst[i] = av_clip_uint8_c(new_u);
  226. vdst[i] = av_clip_uint8_c(new_v);
  227. }
  228. usrc += src_linesize;
  229. vsrc += src_linesize;
  230. udst += dst_linesize;
  231. vdst += dst_linesize;
  232. }
  233. }
  234. #define TS2D(ts) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))
  235. #define TS2T(ts, tb) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts) * av_q2d(tb))
  236. static int filter_frame(AVFilterLink *inlink, AVFrame *inpic)
  237. {
  238. HueContext *hue = inlink->dst->priv;
  239. AVFilterLink *outlink = inlink->dst->outputs[0];
  240. AVFrame *outpic;
  241. int direct = 0;
  242. if (av_frame_is_writable(inpic)) {
  243. direct = 1;
  244. outpic = inpic;
  245. } else {
  246. outpic = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  247. if (!outpic) {
  248. av_frame_free(&inpic);
  249. return AVERROR(ENOMEM);
  250. }
  251. av_frame_copy_props(outpic, inpic);
  252. }
  253. if (!hue->flat_syntax) {
  254. hue->var_values[VAR_T] = TS2T(inpic->pts, inlink->time_base);
  255. hue->var_values[VAR_PTS] = TS2D(inpic->pts);
  256. if (hue->saturation_expr) {
  257. hue->saturation = av_expr_eval(hue->saturation_pexpr, hue->var_values, NULL);
  258. if (hue->saturation < SAT_MIN_VAL || hue->saturation > SAT_MAX_VAL) {
  259. hue->saturation = av_clip(hue->saturation, SAT_MIN_VAL, SAT_MAX_VAL);
  260. av_log(inlink->dst, AV_LOG_WARNING,
  261. "Saturation value not in range [%d,%d]: clipping value to %0.1f\n",
  262. SAT_MIN_VAL, SAT_MAX_VAL, hue->saturation);
  263. }
  264. }
  265. if (hue->hue_deg_expr) {
  266. hue->hue_deg = av_expr_eval(hue->hue_deg_pexpr, hue->var_values, NULL);
  267. hue->hue = hue->hue_deg * M_PI / 180;
  268. } else if (hue->hue_expr) {
  269. hue->hue = av_expr_eval(hue->hue_pexpr, hue->var_values, NULL);
  270. }
  271. av_log(inlink->dst, AV_LOG_DEBUG,
  272. "H:%0.1f s:%0.f t:%0.1f n:%d\n",
  273. hue->hue, hue->saturation,
  274. hue->var_values[VAR_T], (int)hue->var_values[VAR_N]);
  275. compute_sin_and_cos(hue);
  276. }
  277. hue->var_values[VAR_N] += 1;
  278. if (!direct)
  279. av_image_copy_plane(outpic->data[0], outpic->linesize[0],
  280. inpic->data[0], inpic->linesize[0],
  281. inlink->w, inlink->h);
  282. process_chrominance(outpic->data[1], outpic->data[2], outpic->linesize[1],
  283. inpic->data[1], inpic->data[2], inpic->linesize[1],
  284. inlink->w >> hue->hsub, inlink->h >> hue->vsub,
  285. hue->hue_cos, hue->hue_sin);
  286. if (!direct)
  287. av_frame_free(&inpic);
  288. return ff_filter_frame(outlink, outpic);
  289. }
  290. static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
  291. char *res, int res_len, int flags)
  292. {
  293. if (!strcmp(cmd, "reinit"))
  294. return set_options(ctx, args);
  295. else
  296. return AVERROR(ENOSYS);
  297. }
  298. static const AVFilterPad hue_inputs[] = {
  299. {
  300. .name = "default",
  301. .type = AVMEDIA_TYPE_VIDEO,
  302. .filter_frame = filter_frame,
  303. .config_props = config_props,
  304. },
  305. { NULL }
  306. };
  307. static const AVFilterPad hue_outputs[] = {
  308. {
  309. .name = "default",
  310. .type = AVMEDIA_TYPE_VIDEO,
  311. },
  312. { NULL }
  313. };
  314. AVFilter avfilter_vf_hue = {
  315. .name = "hue",
  316. .description = NULL_IF_CONFIG_SMALL("Adjust the hue and saturation of the input video."),
  317. .priv_size = sizeof(HueContext),
  318. .init = init,
  319. .uninit = uninit,
  320. .query_formats = query_formats,
  321. .process_command = process_command,
  322. .inputs = hue_inputs,
  323. .outputs = hue_outputs,
  324. .priv_class = &hue_class,
  325. };