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.

437 lines
14KB

  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 PARSE_EXPRESSION(attr, name) \
  98. do { \
  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_free(old_##attr##_expr); \
  109. av_expr_free(old_##attr##_pexpr); \
  110. } \
  111. } while (0)
  112. static inline int set_options(AVFilterContext *ctx, const char *args)
  113. {
  114. HueContext *hue = ctx->priv;
  115. int n, ret;
  116. char c1 = 0, c2 = 0;
  117. char *old_hue_expr, *old_hue_deg_expr, *old_saturation_expr;
  118. AVExpr *old_hue_pexpr, *old_hue_deg_pexpr, *old_saturation_pexpr;
  119. if (args) {
  120. /* named options syntax */
  121. if (strchr(args, '=')) {
  122. old_hue_expr = hue->hue_expr;
  123. old_hue_deg_expr = hue->hue_deg_expr;
  124. old_saturation_expr = hue->saturation_expr;
  125. old_hue_pexpr = hue->hue_pexpr;
  126. old_hue_deg_pexpr = hue->hue_deg_pexpr;
  127. old_saturation_pexpr = hue->saturation_pexpr;
  128. hue->hue_expr = NULL;
  129. hue->hue_deg_expr = NULL;
  130. if ((ret = av_set_options_string(hue, args, "=", ":")) < 0)
  131. return ret;
  132. if (hue->hue_expr && hue->hue_deg_expr) {
  133. av_log(ctx, AV_LOG_ERROR,
  134. "H and h options are incompatible and cannot be specified "
  135. "at the same time\n");
  136. hue->hue_expr = old_hue_expr;
  137. hue->hue_deg_expr = old_hue_deg_expr;
  138. return AVERROR(EINVAL);
  139. }
  140. /*
  141. * if both 'H' and 'h' options have not been specified, restore the
  142. * old values
  143. */
  144. if (!hue->hue_expr && !hue->hue_deg_expr) {
  145. hue->hue_expr = old_hue_expr;
  146. hue->hue_deg_expr = old_hue_deg_expr;
  147. }
  148. if (hue->hue_deg_expr)
  149. PARSE_EXPRESSION(hue_deg, h);
  150. if (hue->hue_expr)
  151. PARSE_EXPRESSION(hue, H);
  152. if (hue->saturation_expr)
  153. PARSE_EXPRESSION(saturation, s);
  154. hue->flat_syntax = 0;
  155. av_log(ctx, AV_LOG_VERBOSE,
  156. "H_expr:%s h_deg_expr:%s s_expr:%s\n",
  157. hue->hue_expr, hue->hue_deg_expr, hue->saturation_expr);
  158. /* compatibility h:s syntax */
  159. } else {
  160. n = sscanf(args, "%f%c%f%c", &hue->hue_deg, &c1, &hue->saturation, &c2);
  161. if (n != 1 && (n != 3 || c1 != ':')) {
  162. av_log(ctx, AV_LOG_ERROR,
  163. "Invalid syntax for argument '%s': "
  164. "must be in the form 'hue[:saturation]'\n", args);
  165. return AVERROR(EINVAL);
  166. }
  167. if (hue->saturation < SAT_MIN_VAL || hue->saturation > SAT_MAX_VAL) {
  168. av_log(ctx, AV_LOG_ERROR,
  169. "Invalid value for saturation %0.1f: "
  170. "must be included between range %d and +%d\n",
  171. hue->saturation, SAT_MIN_VAL, SAT_MAX_VAL);
  172. return AVERROR(EINVAL);
  173. }
  174. hue->hue = hue->hue_deg * M_PI / 180;
  175. hue->flat_syntax = 1;
  176. av_log(ctx, AV_LOG_VERBOSE,
  177. "H:%0.1f h:%0.1f s:%0.1f\n",
  178. hue->hue, hue->hue_deg, hue->saturation);
  179. }
  180. }
  181. compute_sin_and_cos(hue);
  182. return 0;
  183. }
  184. static av_cold int init(AVFilterContext *ctx, const char *args)
  185. {
  186. HueContext *hue = ctx->priv;
  187. hue->class = &hue_class;
  188. av_opt_set_defaults(hue);
  189. hue->saturation = SAT_DEFAULT_VAL;
  190. hue->hue = HUE_DEFAULT_VAL;
  191. hue->hue_deg_pexpr = NULL;
  192. hue->hue_pexpr = NULL;
  193. hue->flat_syntax = 1;
  194. return set_options(ctx, args);
  195. }
  196. static av_cold void uninit(AVFilterContext *ctx)
  197. {
  198. HueContext *hue = ctx->priv;
  199. av_opt_free(hue);
  200. av_free(hue->hue_deg_expr);
  201. av_expr_free(hue->hue_deg_pexpr);
  202. av_free(hue->hue_expr);
  203. av_expr_free(hue->hue_pexpr);
  204. av_free(hue->saturation_expr);
  205. av_expr_free(hue->saturation_pexpr);
  206. }
  207. static int query_formats(AVFilterContext *ctx)
  208. {
  209. static const enum PixelFormat pix_fmts[] = {
  210. PIX_FMT_YUV444P, PIX_FMT_YUV422P,
  211. PIX_FMT_YUV420P, PIX_FMT_YUV411P,
  212. PIX_FMT_YUV410P, PIX_FMT_YUV440P,
  213. PIX_FMT_YUVA420P,
  214. PIX_FMT_NONE
  215. };
  216. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  217. return 0;
  218. }
  219. static int config_props(AVFilterLink *inlink)
  220. {
  221. HueContext *hue = inlink->dst->priv;
  222. const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[inlink->format];
  223. hue->hsub = desc->log2_chroma_w;
  224. hue->vsub = desc->log2_chroma_h;
  225. hue->var_values[VAR_N] = 0;
  226. hue->var_values[VAR_TB] = av_q2d(inlink->time_base);
  227. hue->var_values[VAR_R] = inlink->frame_rate.num == 0 || inlink->frame_rate.den == 0 ?
  228. NAN : av_q2d(inlink->frame_rate);
  229. return 0;
  230. }
  231. static void process_chrominance(uint8_t *udst, uint8_t *vdst, const int dst_linesize,
  232. uint8_t *usrc, uint8_t *vsrc, const int src_linesize,
  233. int w, int h,
  234. const int32_t c, const int32_t s)
  235. {
  236. int32_t u, v, new_u, new_v;
  237. int i;
  238. /*
  239. * If we consider U and V as the components of a 2D vector then its angle
  240. * is the hue and the norm is the saturation
  241. */
  242. while (h--) {
  243. for (i = 0; i < w; i++) {
  244. /* Normalize the components from range [16;140] to [-112;112] */
  245. u = usrc[i] - 128;
  246. v = vsrc[i] - 128;
  247. /*
  248. * Apply the rotation of the vector : (c * u) - (s * v)
  249. * (s * u) + (c * v)
  250. * De-normalize the components (without forgetting to scale 128
  251. * by << 16)
  252. * Finally scale back the result by >> 16
  253. */
  254. new_u = ((c * u) - (s * v) + (1 << 15) + (128 << 16)) >> 16;
  255. new_v = ((s * u) + (c * v) + (1 << 15) + (128 << 16)) >> 16;
  256. /* Prevent a potential overflow */
  257. udst[i] = av_clip_uint8_c(new_u);
  258. vdst[i] = av_clip_uint8_c(new_v);
  259. }
  260. usrc += src_linesize;
  261. vsrc += src_linesize;
  262. udst += dst_linesize;
  263. vdst += dst_linesize;
  264. }
  265. }
  266. #define TS2D(ts) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))
  267. #define TS2T(ts, tb) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts) * av_q2d(tb))
  268. static int start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpic)
  269. {
  270. HueContext *hue = inlink->dst->priv;
  271. AVFilterLink *outlink = inlink->dst->outputs[0];
  272. AVFilterBufferRef *buf_out;
  273. outlink->out_buf = ff_get_video_buffer(outlink, AV_PERM_WRITE, outlink->w, outlink->h);
  274. if (!outlink->out_buf)
  275. return AVERROR(ENOMEM);
  276. avfilter_copy_buffer_ref_props(outlink->out_buf, inpic);
  277. outlink->out_buf->video->w = outlink->w;
  278. outlink->out_buf->video->h = outlink->h;
  279. buf_out = avfilter_ref_buffer(outlink->out_buf, ~0);
  280. if (!buf_out)
  281. return AVERROR(ENOMEM);
  282. if (!hue->flat_syntax) {
  283. hue->var_values[VAR_T] = TS2T(inpic->pts, inlink->time_base);
  284. hue->var_values[VAR_PTS] = TS2D(inpic->pts);
  285. if (hue->saturation_expr) {
  286. hue->saturation = av_expr_eval(hue->saturation_pexpr, hue->var_values, NULL);
  287. if (hue->saturation < SAT_MIN_VAL || hue->saturation > SAT_MAX_VAL) {
  288. hue->saturation = av_clip(hue->saturation, SAT_MIN_VAL, SAT_MAX_VAL);
  289. av_log(inlink->dst, AV_LOG_WARNING,
  290. "Saturation value not in range [%d,%d]: clipping value to %0.1f\n",
  291. SAT_MIN_VAL, SAT_MAX_VAL, hue->saturation);
  292. }
  293. }
  294. if (hue->hue_deg_expr) {
  295. hue->hue_deg = av_expr_eval(hue->hue_deg_pexpr, hue->var_values, NULL);
  296. hue->hue = hue->hue_deg * M_PI / 180;
  297. } else if (hue->hue_expr) {
  298. hue->hue = av_expr_eval(hue->hue_pexpr, hue->var_values, NULL);
  299. }
  300. av_log(inlink->dst, AV_LOG_DEBUG,
  301. "H:%0.1f s:%0.f t:%0.1f n:%d\n",
  302. hue->hue, hue->saturation,
  303. hue->var_values[VAR_T], (int)hue->var_values[VAR_N]);
  304. compute_sin_and_cos(hue);
  305. }
  306. hue->var_values[VAR_N] += 1;
  307. return ff_start_frame(outlink, buf_out);
  308. }
  309. static int draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
  310. {
  311. HueContext *hue = inlink->dst->priv;
  312. AVFilterBufferRef *inpic = inlink->cur_buf;
  313. AVFilterBufferRef *outpic = inlink->dst->outputs[0]->out_buf;
  314. uint8_t *inrow[3], *outrow[3]; // 0 : Y, 1 : U, 2 : V
  315. int plane;
  316. inrow[0] = inpic->data[0] + y * inpic->linesize[0];
  317. outrow[0] = outpic->data[0] + y * outpic->linesize[0];
  318. for (plane = 1; plane < 3; plane++) {
  319. inrow[plane] = inpic->data[plane] + (y >> hue->vsub) * inpic->linesize[plane];
  320. outrow[plane] = outpic->data[plane] + (y >> hue->vsub) * outpic->linesize[plane];
  321. }
  322. av_image_copy_plane(outrow[0], outpic->linesize[0],
  323. inrow[0], inpic->linesize[0],
  324. inlink->w, inlink->h);
  325. process_chrominance(outrow[1], outrow[2], outpic->linesize[1],
  326. inrow[1], inrow[2], inpic->linesize[1],
  327. inlink->w >> hue->hsub, inlink->h >> hue->vsub,
  328. hue->hue_cos, hue->hue_sin);
  329. return ff_draw_slice(inlink->dst->outputs[0], y, h, slice_dir);
  330. }
  331. static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
  332. char *res, int res_len, int flags)
  333. {
  334. if (!strcmp(cmd, "reinit"))
  335. return set_options(ctx, args);
  336. else
  337. return AVERROR(ENOSYS);
  338. }
  339. AVFilter avfilter_vf_hue = {
  340. .name = "hue",
  341. .description = NULL_IF_CONFIG_SMALL("Adjust the hue and saturation of the input video."),
  342. .priv_size = sizeof(HueContext),
  343. .init = init,
  344. .uninit = uninit,
  345. .query_formats = query_formats,
  346. .process_command = process_command,
  347. .inputs = (const AVFilterPad[]) {
  348. {
  349. .name = "default",
  350. .type = AVMEDIA_TYPE_VIDEO,
  351. .start_frame = start_frame,
  352. .draw_slice = draw_slice,
  353. .config_props = config_props,
  354. .min_perms = AV_PERM_READ,
  355. },
  356. { .name = NULL }
  357. },
  358. .outputs = (const AVFilterPad[]) {
  359. {
  360. .name = "default",
  361. .type = AVMEDIA_TYPE_VIDEO,
  362. },
  363. { .name = NULL }
  364. },
  365. .priv_class = &hue_class,
  366. };