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.

643 lines
30KB

  1. /*
  2. * Copyright (c) 2013 Paul B Mahol
  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. #include "libavutil/imgutils.h"
  21. #include "libavutil/eval.h"
  22. #include "libavutil/opt.h"
  23. #include "libavutil/pixfmt.h"
  24. #include "avfilter.h"
  25. #include "bufferqueue.h"
  26. #include "formats.h"
  27. #include "internal.h"
  28. #include "dualinput.h"
  29. #include "video.h"
  30. #define TOP 0
  31. #define BOTTOM 1
  32. enum BlendMode {
  33. BLEND_UNSET = -1,
  34. BLEND_NORMAL,
  35. BLEND_ADDITION,
  36. BLEND_AND,
  37. BLEND_AVERAGE,
  38. BLEND_BURN,
  39. BLEND_DARKEN,
  40. BLEND_DIFFERENCE,
  41. BLEND_DIFFERENCE128,
  42. BLEND_DIVIDE,
  43. BLEND_DODGE,
  44. BLEND_EXCLUSION,
  45. BLEND_HARDLIGHT,
  46. BLEND_LIGHTEN,
  47. BLEND_MULTIPLY,
  48. BLEND_NEGATION,
  49. BLEND_OR,
  50. BLEND_OVERLAY,
  51. BLEND_PHOENIX,
  52. BLEND_PINLIGHT,
  53. BLEND_REFLECT,
  54. BLEND_SCREEN,
  55. BLEND_SOFTLIGHT,
  56. BLEND_SUBTRACT,
  57. BLEND_VIVIDLIGHT,
  58. BLEND_XOR,
  59. BLEND_HARDMIX,
  60. BLEND_LINEARLIGHT,
  61. BLEND_GLOW,
  62. BLEND_ADDITION128,
  63. BLEND_NB
  64. };
  65. static const char *const var_names[] = { "X", "Y", "W", "H", "SW", "SH", "T", "N", "A", "B", "TOP", "BOTTOM", NULL };
  66. enum { VAR_X, VAR_Y, VAR_W, VAR_H, VAR_SW, VAR_SH, VAR_T, VAR_N, VAR_A, VAR_B, VAR_TOP, VAR_BOTTOM, VAR_VARS_NB };
  67. typedef struct FilterParams {
  68. enum BlendMode mode;
  69. double opacity;
  70. AVExpr *e;
  71. char *expr_str;
  72. void (*blend)(const uint8_t *top, int top_linesize,
  73. const uint8_t *bottom, int bottom_linesize,
  74. uint8_t *dst, int dst_linesize,
  75. int width, int start, int end,
  76. struct FilterParams *param, double *values);
  77. } FilterParams;
  78. typedef struct ThreadData {
  79. const AVFrame *top, *bottom;
  80. AVFrame *dst;
  81. AVFilterLink *inlink;
  82. int plane;
  83. int w, h;
  84. FilterParams *param;
  85. } ThreadData;
  86. typedef struct {
  87. const AVClass *class;
  88. FFDualInputContext dinput;
  89. int hsub, vsub; ///< chroma subsampling values
  90. int nb_planes;
  91. char *all_expr;
  92. enum BlendMode all_mode;
  93. double all_opacity;
  94. FilterParams params[4];
  95. int tblend;
  96. AVFrame *prev_frame; /* only used with tblend */
  97. } BlendContext;
  98. #define COMMON_OPTIONS \
  99. { "c0_mode", "set component #0 blend mode", OFFSET(params[0].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},\
  100. { "c1_mode", "set component #1 blend mode", OFFSET(params[1].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},\
  101. { "c2_mode", "set component #2 blend mode", OFFSET(params[2].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},\
  102. { "c3_mode", "set component #3 blend mode", OFFSET(params[3].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},\
  103. { "all_mode", "set blend mode for all components", OFFSET(all_mode), AV_OPT_TYPE_INT, {.i64=-1},-1, BLEND_NB-1, FLAGS, "mode"},\
  104. { "addition", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_ADDITION}, 0, 0, FLAGS, "mode" },\
  105. { "addition128", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_ADDITION128}, 0, 0, FLAGS, "mode" },\
  106. { "and", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_AND}, 0, 0, FLAGS, "mode" },\
  107. { "average", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_AVERAGE}, 0, 0, FLAGS, "mode" },\
  108. { "burn", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_BURN}, 0, 0, FLAGS, "mode" },\
  109. { "darken", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DARKEN}, 0, 0, FLAGS, "mode" },\
  110. { "difference", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DIFFERENCE}, 0, 0, FLAGS, "mode" },\
  111. { "difference128", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DIFFERENCE128}, 0, 0, FLAGS, "mode" },\
  112. { "divide", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DIVIDE}, 0, 0, FLAGS, "mode" },\
  113. { "dodge", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DODGE}, 0, 0, FLAGS, "mode" },\
  114. { "exclusion", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_EXCLUSION}, 0, 0, FLAGS, "mode" },\
  115. { "glow", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_GLOW}, 0, 0, FLAGS, "mode" },\
  116. { "hardlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_HARDLIGHT}, 0, 0, FLAGS, "mode" },\
  117. { "hardmix", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_HARDMIX}, 0, 0, FLAGS, "mode" },\
  118. { "lighten", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_LIGHTEN}, 0, 0, FLAGS, "mode" },\
  119. { "linearlight","", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_LINEARLIGHT},0, 0, FLAGS, "mode" },\
  120. { "multiply", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_MULTIPLY}, 0, 0, FLAGS, "mode" },\
  121. { "negation", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_NEGATION}, 0, 0, FLAGS, "mode" },\
  122. { "normal", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_NORMAL}, 0, 0, FLAGS, "mode" },\
  123. { "or", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_OR}, 0, 0, FLAGS, "mode" },\
  124. { "overlay", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_OVERLAY}, 0, 0, FLAGS, "mode" },\
  125. { "phoenix", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_PHOENIX}, 0, 0, FLAGS, "mode" },\
  126. { "pinlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_PINLIGHT}, 0, 0, FLAGS, "mode" },\
  127. { "reflect", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_REFLECT}, 0, 0, FLAGS, "mode" },\
  128. { "screen", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SCREEN}, 0, 0, FLAGS, "mode" },\
  129. { "softlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SOFTLIGHT}, 0, 0, FLAGS, "mode" },\
  130. { "subtract", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SUBTRACT}, 0, 0, FLAGS, "mode" },\
  131. { "vividlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_VIVIDLIGHT}, 0, 0, FLAGS, "mode" },\
  132. { "xor", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_XOR}, 0, 0, FLAGS, "mode" },\
  133. { "c0_expr", "set color component #0 expression", OFFSET(params[0].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },\
  134. { "c1_expr", "set color component #1 expression", OFFSET(params[1].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },\
  135. { "c2_expr", "set color component #2 expression", OFFSET(params[2].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },\
  136. { "c3_expr", "set color component #3 expression", OFFSET(params[3].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },\
  137. { "all_expr", "set expression for all color components", OFFSET(all_expr), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },\
  138. { "c0_opacity", "set color component #0 opacity", OFFSET(params[0].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },\
  139. { "c1_opacity", "set color component #1 opacity", OFFSET(params[1].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },\
  140. { "c2_opacity", "set color component #2 opacity", OFFSET(params[2].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },\
  141. { "c3_opacity", "set color component #3 opacity", OFFSET(params[3].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },\
  142. { "all_opacity", "set opacity for all color components", OFFSET(all_opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS}
  143. #define OFFSET(x) offsetof(BlendContext, x)
  144. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  145. static const AVOption blend_options[] = {
  146. COMMON_OPTIONS,
  147. { "shortest", "force termination when the shortest input terminates", OFFSET(dinput.shortest), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS },
  148. { "repeatlast", "repeat last bottom frame", OFFSET(dinput.repeatlast), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS },
  149. { NULL }
  150. };
  151. AVFILTER_DEFINE_CLASS(blend);
  152. static void blend_normal(const uint8_t *top, int top_linesize,
  153. const uint8_t *bottom, int bottom_linesize,
  154. uint8_t *dst, int dst_linesize,
  155. int width, int start, int end,
  156. FilterParams *param, double *values)
  157. {
  158. av_image_copy_plane(dst, dst_linesize, top, top_linesize, width, end - start);
  159. }
  160. #define DEFINE_BLEND8(name, expr) \
  161. static void blend_## name##_8bit(const uint8_t *top, int top_linesize, \
  162. const uint8_t *bottom, int bottom_linesize, \
  163. uint8_t *dst, int dst_linesize, \
  164. int width, int start, int end, \
  165. FilterParams *param, double *values) \
  166. { \
  167. double opacity = param->opacity; \
  168. int i, j; \
  169. \
  170. for (i = start; i < end; i++) { \
  171. for (j = 0; j < width; j++) { \
  172. dst[j] = top[j] + ((expr) - top[j]) * opacity; \
  173. } \
  174. dst += dst_linesize; \
  175. top += top_linesize; \
  176. bottom += bottom_linesize; \
  177. } \
  178. }
  179. #define DEFINE_BLEND16(name, expr) \
  180. static void blend_## name##_16bit(const uint8_t *_top, int top_linesize, \
  181. const uint8_t *_bottom, int bottom_linesize, \
  182. uint8_t *_dst, int dst_linesize, \
  183. int width, int start, int end, \
  184. FilterParams *param, double *values) \
  185. { \
  186. const uint16_t *top = (uint16_t*)_top; \
  187. const uint16_t *bottom = (uint16_t*)_bottom; \
  188. uint16_t *dst = (uint16_t*)_dst; \
  189. double opacity = param->opacity; \
  190. int i, j; \
  191. dst_linesize /= 2; \
  192. top_linesize /= 2; \
  193. bottom_linesize /= 2; \
  194. \
  195. for (i = start; i < end; i++) { \
  196. for (j = 0; j < width; j++) { \
  197. dst[j] = top[j] + ((expr) - top[j]) * opacity; \
  198. } \
  199. dst += dst_linesize; \
  200. top += top_linesize; \
  201. bottom += bottom_linesize; \
  202. } \
  203. }
  204. #define A top[j]
  205. #define B bottom[j]
  206. #define MULTIPLY(x, a, b) ((x) * (((a) * (b)) / 255))
  207. #define SCREEN(x, a, b) (255 - (x) * ((255 - (a)) * (255 - (b)) / 255))
  208. #define BURN(a, b) (((a) == 0) ? (a) : FFMAX(0, 255 - ((255 - (b)) << 8) / (a)))
  209. #define DODGE(a, b) (((a) == 255) ? (a) : FFMIN(255, (((b) << 8) / (255 - (a)))))
  210. DEFINE_BLEND8(addition, FFMIN(255, A + B))
  211. DEFINE_BLEND8(addition128, av_clip_uint8(A + B - 128))
  212. DEFINE_BLEND8(average, (A + B) / 2)
  213. DEFINE_BLEND8(subtract, FFMAX(0, A - B))
  214. DEFINE_BLEND8(multiply, MULTIPLY(1, A, B))
  215. DEFINE_BLEND8(negation, 255 - FFABS(255 - A - B))
  216. DEFINE_BLEND8(difference, FFABS(A - B))
  217. DEFINE_BLEND8(difference128, av_clip_uint8(128 + A - B))
  218. DEFINE_BLEND8(screen, SCREEN(1, A, B))
  219. DEFINE_BLEND8(overlay, (A < 128) ? MULTIPLY(2, A, B) : SCREEN(2, A, B))
  220. DEFINE_BLEND8(hardlight, (B < 128) ? MULTIPLY(2, B, A) : SCREEN(2, B, A))
  221. DEFINE_BLEND8(hardmix, (A < (255 - B)) ? 0: 255)
  222. DEFINE_BLEND8(darken, FFMIN(A, B))
  223. DEFINE_BLEND8(lighten, FFMAX(A, B))
  224. DEFINE_BLEND8(divide, av_clip_uint8(((float)A / ((float)B) * 255)))
  225. DEFINE_BLEND8(dodge, DODGE(A, B))
  226. DEFINE_BLEND8(burn, BURN(A, B))
  227. DEFINE_BLEND8(softlight, (A > 127) ? B + (255 - B) * (A - 127.5) / 127.5 * (0.5 - FFABS(B - 127.5) / 255): B - B * ((127.5 - A) / 127.5) * (0.5 - FFABS(B - 127.5)/255))
  228. DEFINE_BLEND8(exclusion, A + B - 2 * A * B / 255)
  229. DEFINE_BLEND8(pinlight, (B < 128) ? FFMIN(A, 2 * B) : FFMAX(A, 2 * (B - 128)))
  230. DEFINE_BLEND8(phoenix, FFMIN(A, B) - FFMAX(A, B) + 255)
  231. DEFINE_BLEND8(reflect, (B == 255) ? B : FFMIN(255, (A * A / (255 - B))))
  232. DEFINE_BLEND8(glow, (A == 255) ? A : FFMIN(255, (B * B / (255 - A))))
  233. DEFINE_BLEND8(and, A & B)
  234. DEFINE_BLEND8(or, A | B)
  235. DEFINE_BLEND8(xor, A ^ B)
  236. DEFINE_BLEND8(vividlight, (A < 128) ? BURN(2 * A, B) : DODGE(2 * (A - 128), B))
  237. DEFINE_BLEND8(linearlight,av_clip_uint8((B < 128) ? B + 2 * A - 255 : B + 2 * (A - 128)))
  238. #undef MULTIPLY
  239. #undef SCREEN
  240. #undef BURN
  241. #undef DODGE
  242. #define MULTIPLY(x, a, b) ((x) * (((a) * (b)) / 65535))
  243. #define SCREEN(x, a, b) (65535 - (x) * ((65535 - (a)) * (65535 - (b)) / 65535))
  244. #define BURN(a, b) (((a) == 0) ? (a) : FFMAX(0, 65535 - ((65535 - (b)) << 16) / (a)))
  245. #define DODGE(a, b) (((a) == 65535) ? (a) : FFMIN(65535, (((b) << 16) / (65535 - (a)))))
  246. DEFINE_BLEND16(addition, FFMIN(65535, A + B))
  247. DEFINE_BLEND16(addition128, av_clip_uint16(A + B - 32768))
  248. DEFINE_BLEND16(average, (A + B) / 2)
  249. DEFINE_BLEND16(subtract, FFMAX(0, A - B))
  250. DEFINE_BLEND16(multiply, MULTIPLY(1, A, B))
  251. DEFINE_BLEND16(negation, 65535 - FFABS(65535 - A - B))
  252. DEFINE_BLEND16(difference, FFABS(A - B))
  253. DEFINE_BLEND16(difference128, av_clip_uint16(32768 + A - B))
  254. DEFINE_BLEND16(screen, SCREEN(1, A, B))
  255. DEFINE_BLEND16(overlay, (A < 32768) ? MULTIPLY(2, A, B) : SCREEN(2, A, B))
  256. DEFINE_BLEND16(hardlight, (B < 32768) ? MULTIPLY(2, B, A) : SCREEN(2, B, A))
  257. DEFINE_BLEND16(hardmix, (A < (65535 - B)) ? 0: 65535)
  258. DEFINE_BLEND16(darken, FFMIN(A, B))
  259. DEFINE_BLEND16(lighten, FFMAX(A, B))
  260. DEFINE_BLEND16(divide, av_clip_uint16(((float)A / ((float)B) * 65535)))
  261. DEFINE_BLEND16(dodge, DODGE(A, B))
  262. DEFINE_BLEND16(burn, BURN(A, B))
  263. DEFINE_BLEND16(softlight, (A > 32767) ? B + (65535 - B) * (A - 32767.5) / 32767.5 * (0.5 - FFABS(B - 32767.5) / 65535): B - B * ((32767.5 - A) / 32767.5) * (0.5 - FFABS(B - 32767.5)/65535))
  264. DEFINE_BLEND16(exclusion, A + B - 2 * A * B / 65535)
  265. DEFINE_BLEND16(pinlight, (B < 32768) ? FFMIN(A, 2 * B) : FFMAX(A, 2 * (B - 32768)))
  266. DEFINE_BLEND16(phoenix, FFMIN(A, B) - FFMAX(A, B) + 65535)
  267. DEFINE_BLEND16(reflect, (B == 65535) ? B : FFMIN(65535, (A * A / (65535 - B))))
  268. DEFINE_BLEND16(glow, (A == 65535) ? A : FFMIN(65535, (B * B / (65535 - A))))
  269. DEFINE_BLEND16(and, A & B)
  270. DEFINE_BLEND16(or, A | B)
  271. DEFINE_BLEND16(xor, A ^ B)
  272. DEFINE_BLEND16(vividlight, (A < 32768) ? BURN(2 * A, B) : DODGE(2 * (A - 32768), B))
  273. DEFINE_BLEND16(linearlight,av_clip_uint16((B < 32768) ? B + 2 * A - 65535 : B + 2 * (A - 32768)))
  274. #define DEFINE_BLEND_EXPR(type, name, div) \
  275. static void blend_expr_## name(const uint8_t *_top, int top_linesize, \
  276. const uint8_t *_bottom, int bottom_linesize, \
  277. uint8_t *_dst, int dst_linesize, \
  278. int width, int start, int end, \
  279. FilterParams *param, double *values) \
  280. { \
  281. const type *top = (type*)_top; \
  282. const type *bottom = (type*)_bottom; \
  283. type *dst = (type*)_dst; \
  284. AVExpr *e = param->e; \
  285. int y, x; \
  286. dst_linesize /= div; \
  287. top_linesize /= div; \
  288. bottom_linesize /= div; \
  289. \
  290. for (y = start; y < end; y++) { \
  291. values[VAR_Y] = y; \
  292. for (x = 0; x < width; x++) { \
  293. values[VAR_X] = x; \
  294. values[VAR_TOP] = values[VAR_A] = top[x]; \
  295. values[VAR_BOTTOM] = values[VAR_B] = bottom[x]; \
  296. dst[x] = av_expr_eval(e, values, NULL); \
  297. } \
  298. dst += dst_linesize; \
  299. top += top_linesize; \
  300. bottom += bottom_linesize; \
  301. } \
  302. }
  303. DEFINE_BLEND_EXPR(uint8_t, 8bit, 1)
  304. DEFINE_BLEND_EXPR(uint16_t, 16bit, 2)
  305. static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
  306. {
  307. ThreadData *td = arg;
  308. int slice_start = (td->h * jobnr ) / nb_jobs;
  309. int slice_end = (td->h * (jobnr+1)) / nb_jobs;
  310. const uint8_t *top = td->top->data[td->plane];
  311. const uint8_t *bottom = td->bottom->data[td->plane];
  312. uint8_t *dst = td->dst->data[td->plane];
  313. double values[VAR_VARS_NB];
  314. values[VAR_N] = td->inlink->frame_count;
  315. values[VAR_T] = td->dst->pts == AV_NOPTS_VALUE ? NAN : td->dst->pts * av_q2d(td->inlink->time_base);
  316. values[VAR_W] = td->w;
  317. values[VAR_H] = td->h;
  318. values[VAR_SW] = td->w / (double)td->dst->width;
  319. values[VAR_SH] = td->h / (double)td->dst->height;
  320. td->param->blend(top + slice_start * td->top->linesize[td->plane],
  321. td->top->linesize[td->plane],
  322. bottom + slice_start * td->bottom->linesize[td->plane],
  323. td->bottom->linesize[td->plane],
  324. dst + slice_start * td->dst->linesize[td->plane],
  325. td->dst->linesize[td->plane],
  326. td->w, slice_start, slice_end, td->param, &values[0]);
  327. return 0;
  328. }
  329. static AVFrame *blend_frame(AVFilterContext *ctx, AVFrame *top_buf,
  330. const AVFrame *bottom_buf)
  331. {
  332. BlendContext *s = ctx->priv;
  333. AVFilterLink *inlink = ctx->inputs[0];
  334. AVFilterLink *outlink = ctx->outputs[0];
  335. AVFrame *dst_buf;
  336. int plane;
  337. dst_buf = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  338. if (!dst_buf)
  339. return top_buf;
  340. av_frame_copy_props(dst_buf, top_buf);
  341. for (plane = 0; plane < s->nb_planes; plane++) {
  342. int hsub = plane == 1 || plane == 2 ? s->hsub : 0;
  343. int vsub = plane == 1 || plane == 2 ? s->vsub : 0;
  344. int outw = FF_CEIL_RSHIFT(dst_buf->width, hsub);
  345. int outh = FF_CEIL_RSHIFT(dst_buf->height, vsub);
  346. FilterParams *param = &s->params[plane];
  347. ThreadData td = { .top = top_buf, .bottom = bottom_buf, .dst = dst_buf,
  348. .w = outw, .h = outh, .param = param, .plane = plane,
  349. .inlink = inlink };
  350. ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(outh, ctx->graph->nb_threads));
  351. }
  352. if (!s->tblend)
  353. av_frame_free(&top_buf);
  354. return dst_buf;
  355. }
  356. static av_cold int init(AVFilterContext *ctx)
  357. {
  358. BlendContext *s = ctx->priv;
  359. s->tblend = !strcmp(ctx->filter->name, "tblend");
  360. s->dinput.process = blend_frame;
  361. return 0;
  362. }
  363. static int query_formats(AVFilterContext *ctx)
  364. {
  365. static const enum AVPixelFormat pix_fmts[] = {
  366. AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA420P,
  367. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_YUVJ422P,AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ411P,
  368. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  369. AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRAP, AV_PIX_FMT_GRAY8,
  370. AV_PIX_FMT_YUV420P16, AV_PIX_FMT_YUV422P16, AV_PIX_FMT_YUV444P16,
  371. AV_PIX_FMT_YUVA420P16, AV_PIX_FMT_YUVA422P16, AV_PIX_FMT_YUVA444P16,
  372. AV_PIX_FMT_GBRP16, AV_PIX_FMT_GRAY16,
  373. AV_PIX_FMT_NONE
  374. };
  375. AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
  376. if (!fmts_list)
  377. return AVERROR(ENOMEM);
  378. return ff_set_common_formats(ctx, fmts_list);
  379. }
  380. static av_cold void uninit(AVFilterContext *ctx)
  381. {
  382. BlendContext *s = ctx->priv;
  383. int i;
  384. ff_dualinput_uninit(&s->dinput);
  385. av_frame_free(&s->prev_frame);
  386. for (i = 0; i < FF_ARRAY_ELEMS(s->params); i++)
  387. av_expr_free(s->params[i].e);
  388. }
  389. static int config_output(AVFilterLink *outlink)
  390. {
  391. AVFilterContext *ctx = outlink->src;
  392. AVFilterLink *toplink = ctx->inputs[TOP];
  393. BlendContext *s = ctx->priv;
  394. const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(toplink->format);
  395. int ret, plane, is_16bit;
  396. if (!s->tblend) {
  397. AVFilterLink *bottomlink = ctx->inputs[BOTTOM];
  398. if (toplink->format != bottomlink->format) {
  399. av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
  400. return AVERROR(EINVAL);
  401. }
  402. if (toplink->w != bottomlink->w ||
  403. toplink->h != bottomlink->h ||
  404. toplink->sample_aspect_ratio.num != bottomlink->sample_aspect_ratio.num ||
  405. toplink->sample_aspect_ratio.den != bottomlink->sample_aspect_ratio.den) {
  406. av_log(ctx, AV_LOG_ERROR, "First input link %s parameters "
  407. "(size %dx%d, SAR %d:%d) do not match the corresponding "
  408. "second input link %s parameters (%dx%d, SAR %d:%d)\n",
  409. ctx->input_pads[TOP].name, toplink->w, toplink->h,
  410. toplink->sample_aspect_ratio.num,
  411. toplink->sample_aspect_ratio.den,
  412. ctx->input_pads[BOTTOM].name, bottomlink->w, bottomlink->h,
  413. bottomlink->sample_aspect_ratio.num,
  414. bottomlink->sample_aspect_ratio.den);
  415. return AVERROR(EINVAL);
  416. }
  417. }
  418. outlink->w = toplink->w;
  419. outlink->h = toplink->h;
  420. outlink->time_base = toplink->time_base;
  421. outlink->sample_aspect_ratio = toplink->sample_aspect_ratio;
  422. outlink->frame_rate = toplink->frame_rate;
  423. s->hsub = pix_desc->log2_chroma_w;
  424. s->vsub = pix_desc->log2_chroma_h;
  425. is_16bit = pix_desc->comp[0].depth == 16;
  426. s->nb_planes = av_pix_fmt_count_planes(toplink->format);
  427. if (!s->tblend)
  428. if ((ret = ff_dualinput_init(ctx, &s->dinput)) < 0)
  429. return ret;
  430. for (plane = 0; plane < FF_ARRAY_ELEMS(s->params); plane++) {
  431. FilterParams *param = &s->params[plane];
  432. if (s->all_mode >= 0)
  433. param->mode = s->all_mode;
  434. if (s->all_opacity < 1)
  435. param->opacity = s->all_opacity;
  436. switch (param->mode) {
  437. case BLEND_ADDITION: param->blend = is_16bit ? blend_addition_16bit : blend_addition_8bit; break;
  438. case BLEND_ADDITION128: param->blend = is_16bit ? blend_addition128_16bit : blend_addition128_8bit; break;
  439. case BLEND_AND: param->blend = is_16bit ? blend_and_16bit : blend_and_8bit; break;
  440. case BLEND_AVERAGE: param->blend = is_16bit ? blend_average_16bit : blend_average_8bit; break;
  441. case BLEND_BURN: param->blend = is_16bit ? blend_burn_16bit : blend_burn_8bit; break;
  442. case BLEND_DARKEN: param->blend = is_16bit ? blend_darken_16bit : blend_darken_8bit; break;
  443. case BLEND_DIFFERENCE: param->blend = is_16bit ? blend_difference_16bit : blend_difference_8bit; break;
  444. case BLEND_DIFFERENCE128: param->blend = is_16bit ? blend_difference128_16bit: blend_difference128_8bit; break;
  445. case BLEND_DIVIDE: param->blend = is_16bit ? blend_divide_16bit : blend_divide_8bit; break;
  446. case BLEND_DODGE: param->blend = is_16bit ? blend_dodge_16bit : blend_dodge_8bit; break;
  447. case BLEND_EXCLUSION: param->blend = is_16bit ? blend_exclusion_16bit : blend_exclusion_8bit; break;
  448. case BLEND_GLOW: param->blend = is_16bit ? blend_glow_16bit : blend_glow_8bit; break;
  449. case BLEND_HARDLIGHT: param->blend = is_16bit ? blend_hardlight_16bit : blend_hardlight_8bit; break;
  450. case BLEND_HARDMIX: param->blend = is_16bit ? blend_hardmix_16bit : blend_hardmix_8bit; break;
  451. case BLEND_LIGHTEN: param->blend = is_16bit ? blend_lighten_16bit : blend_lighten_8bit; break;
  452. case BLEND_LINEARLIGHT:param->blend = is_16bit ? blend_linearlight_16bit: blend_linearlight_8bit;break;
  453. case BLEND_MULTIPLY: param->blend = is_16bit ? blend_multiply_16bit : blend_multiply_8bit; break;
  454. case BLEND_NEGATION: param->blend = is_16bit ? blend_negation_16bit : blend_negation_8bit; break;
  455. case BLEND_NORMAL: param->blend = blend_normal; break;
  456. case BLEND_OR: param->blend = is_16bit ? blend_or_16bit : blend_or_8bit; break;
  457. case BLEND_OVERLAY: param->blend = is_16bit ? blend_overlay_16bit : blend_overlay_8bit; break;
  458. case BLEND_PHOENIX: param->blend = is_16bit ? blend_phoenix_16bit : blend_phoenix_8bit; break;
  459. case BLEND_PINLIGHT: param->blend = is_16bit ? blend_pinlight_16bit : blend_pinlight_8bit; break;
  460. case BLEND_REFLECT: param->blend = is_16bit ? blend_reflect_16bit : blend_reflect_8bit; break;
  461. case BLEND_SCREEN: param->blend = is_16bit ? blend_screen_16bit : blend_screen_8bit; break;
  462. case BLEND_SOFTLIGHT: param->blend = is_16bit ? blend_softlight_16bit : blend_softlight_8bit; break;
  463. case BLEND_SUBTRACT: param->blend = is_16bit ? blend_subtract_16bit : blend_subtract_8bit; break;
  464. case BLEND_VIVIDLIGHT: param->blend = is_16bit ? blend_vividlight_16bit : blend_vividlight_8bit; break;
  465. case BLEND_XOR: param->blend = is_16bit ? blend_xor_16bit : blend_xor_8bit; break;
  466. }
  467. if (s->all_expr && !param->expr_str) {
  468. param->expr_str = av_strdup(s->all_expr);
  469. if (!param->expr_str)
  470. return AVERROR(ENOMEM);
  471. }
  472. if (param->expr_str) {
  473. ret = av_expr_parse(&param->e, param->expr_str, var_names,
  474. NULL, NULL, NULL, NULL, 0, ctx);
  475. if (ret < 0)
  476. return ret;
  477. param->blend = is_16bit? blend_expr_16bit : blend_expr_8bit;
  478. }
  479. }
  480. return 0;
  481. }
  482. #if CONFIG_BLEND_FILTER
  483. static int request_frame(AVFilterLink *outlink)
  484. {
  485. BlendContext *s = outlink->src->priv;
  486. return ff_dualinput_request_frame(&s->dinput, outlink);
  487. }
  488. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  489. {
  490. BlendContext *s = inlink->dst->priv;
  491. return ff_dualinput_filter_frame(&s->dinput, inlink, buf);
  492. }
  493. static const AVFilterPad blend_inputs[] = {
  494. {
  495. .name = "top",
  496. .type = AVMEDIA_TYPE_VIDEO,
  497. .filter_frame = filter_frame,
  498. },{
  499. .name = "bottom",
  500. .type = AVMEDIA_TYPE_VIDEO,
  501. .filter_frame = filter_frame,
  502. },
  503. { NULL }
  504. };
  505. static const AVFilterPad blend_outputs[] = {
  506. {
  507. .name = "default",
  508. .type = AVMEDIA_TYPE_VIDEO,
  509. .config_props = config_output,
  510. .request_frame = request_frame,
  511. },
  512. { NULL }
  513. };
  514. AVFilter ff_vf_blend = {
  515. .name = "blend",
  516. .description = NULL_IF_CONFIG_SMALL("Blend two video frames into each other."),
  517. .init = init,
  518. .uninit = uninit,
  519. .priv_size = sizeof(BlendContext),
  520. .query_formats = query_formats,
  521. .inputs = blend_inputs,
  522. .outputs = blend_outputs,
  523. .priv_class = &blend_class,
  524. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
  525. };
  526. #endif
  527. #if CONFIG_TBLEND_FILTER
  528. static int tblend_filter_frame(AVFilterLink *inlink, AVFrame *frame)
  529. {
  530. BlendContext *s = inlink->dst->priv;
  531. AVFilterLink *outlink = inlink->dst->outputs[0];
  532. if (s->prev_frame) {
  533. AVFrame *out = blend_frame(inlink->dst, frame, s->prev_frame);
  534. av_frame_free(&s->prev_frame);
  535. s->prev_frame = frame;
  536. return ff_filter_frame(outlink, out);
  537. }
  538. s->prev_frame = frame;
  539. return 0;
  540. }
  541. static const AVOption tblend_options[] = {
  542. COMMON_OPTIONS,
  543. { NULL }
  544. };
  545. AVFILTER_DEFINE_CLASS(tblend);
  546. static const AVFilterPad tblend_inputs[] = {
  547. {
  548. .name = "default",
  549. .type = AVMEDIA_TYPE_VIDEO,
  550. .filter_frame = tblend_filter_frame,
  551. },
  552. { NULL }
  553. };
  554. static const AVFilterPad tblend_outputs[] = {
  555. {
  556. .name = "default",
  557. .type = AVMEDIA_TYPE_VIDEO,
  558. .config_props = config_output,
  559. },
  560. { NULL }
  561. };
  562. AVFilter ff_vf_tblend = {
  563. .name = "tblend",
  564. .description = NULL_IF_CONFIG_SMALL("Blend successive frames."),
  565. .priv_size = sizeof(BlendContext),
  566. .priv_class = &tblend_class,
  567. .query_formats = query_formats,
  568. .init = init,
  569. .uninit = uninit,
  570. .inputs = tblend_inputs,
  571. .outputs = tblend_outputs,
  572. .flags = AVFILTER_FLAG_SLICE_THREADS,
  573. };
  574. #endif