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.

470 lines
20KB

  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_NB
  60. };
  61. static const char *const var_names[] = { "X", "Y", "W", "H", "SW", "SH", "T", "N", "A", "B", "TOP", "BOTTOM", NULL };
  62. 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 };
  63. typedef struct FilterParams {
  64. enum BlendMode mode;
  65. double opacity;
  66. AVExpr *e;
  67. char *expr_str;
  68. void (*blend)(const uint8_t *top, int top_linesize,
  69. const uint8_t *bottom, int bottom_linesize,
  70. uint8_t *dst, int dst_linesize,
  71. int width, int start, int end,
  72. struct FilterParams *param, double *values);
  73. } FilterParams;
  74. typedef struct ThreadData {
  75. const AVFrame *top, *bottom;
  76. AVFrame *dst;
  77. AVFilterLink *inlink;
  78. int plane;
  79. int w, h;
  80. FilterParams *param;
  81. } ThreadData;
  82. typedef struct {
  83. const AVClass *class;
  84. FFDualInputContext dinput;
  85. int hsub, vsub; ///< chroma subsampling values
  86. int nb_planes;
  87. char *all_expr;
  88. enum BlendMode all_mode;
  89. double all_opacity;
  90. FilterParams params[4];
  91. } BlendContext;
  92. #define OFFSET(x) offsetof(BlendContext, x)
  93. #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
  94. static const AVOption blend_options[] = {
  95. { "c0_mode", "set component #0 blend mode", OFFSET(params[0].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},
  96. { "c1_mode", "set component #1 blend mode", OFFSET(params[1].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},
  97. { "c2_mode", "set component #2 blend mode", OFFSET(params[2].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},
  98. { "c3_mode", "set component #3 blend mode", OFFSET(params[3].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode"},
  99. { "all_mode", "set blend mode for all components", OFFSET(all_mode), AV_OPT_TYPE_INT, {.i64=-1},-1, BLEND_NB-1, FLAGS, "mode"},
  100. { "addition", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_ADDITION}, 0, 0, FLAGS, "mode" },
  101. { "and", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_AND}, 0, 0, FLAGS, "mode" },
  102. { "average", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_AVERAGE}, 0, 0, FLAGS, "mode" },
  103. { "burn", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_BURN}, 0, 0, FLAGS, "mode" },
  104. { "darken", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DARKEN}, 0, 0, FLAGS, "mode" },
  105. { "difference", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DIFFERENCE}, 0, 0, FLAGS, "mode" },
  106. { "difference128", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DIFFERENCE128}, 0, 0, FLAGS, "mode" },
  107. { "divide", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DIVIDE}, 0, 0, FLAGS, "mode" },
  108. { "dodge", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_DODGE}, 0, 0, FLAGS, "mode" },
  109. { "exclusion", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_EXCLUSION}, 0, 0, FLAGS, "mode" },
  110. { "hardlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_HARDLIGHT}, 0, 0, FLAGS, "mode" },
  111. { "lighten", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_LIGHTEN}, 0, 0, FLAGS, "mode" },
  112. { "multiply", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_MULTIPLY}, 0, 0, FLAGS, "mode" },
  113. { "negation", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_NEGATION}, 0, 0, FLAGS, "mode" },
  114. { "normal", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_NORMAL}, 0, 0, FLAGS, "mode" },
  115. { "or", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_OR}, 0, 0, FLAGS, "mode" },
  116. { "overlay", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_OVERLAY}, 0, 0, FLAGS, "mode" },
  117. { "phoenix", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_PHOENIX}, 0, 0, FLAGS, "mode" },
  118. { "pinlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_PINLIGHT}, 0, 0, FLAGS, "mode" },
  119. { "reflect", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_REFLECT}, 0, 0, FLAGS, "mode" },
  120. { "screen", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SCREEN}, 0, 0, FLAGS, "mode" },
  121. { "softlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SOFTLIGHT}, 0, 0, FLAGS, "mode" },
  122. { "subtract", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_SUBTRACT}, 0, 0, FLAGS, "mode" },
  123. { "vividlight", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_VIVIDLIGHT}, 0, 0, FLAGS, "mode" },
  124. { "xor", "", 0, AV_OPT_TYPE_CONST, {.i64=BLEND_XOR}, 0, 0, FLAGS, "mode" },
  125. { "c0_expr", "set color component #0 expression", OFFSET(params[0].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  126. { "c1_expr", "set color component #1 expression", OFFSET(params[1].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  127. { "c2_expr", "set color component #2 expression", OFFSET(params[2].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  128. { "c3_expr", "set color component #3 expression", OFFSET(params[3].expr_str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  129. { "all_expr", "set expression for all color components", OFFSET(all_expr), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS },
  130. { "c0_opacity", "set color component #0 opacity", OFFSET(params[0].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },
  131. { "c1_opacity", "set color component #1 opacity", OFFSET(params[1].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },
  132. { "c2_opacity", "set color component #2 opacity", OFFSET(params[2].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },
  133. { "c3_opacity", "set color component #3 opacity", OFFSET(params[3].opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS },
  134. { "all_opacity", "set opacity for all color components", OFFSET(all_opacity), AV_OPT_TYPE_DOUBLE, {.dbl=1}, 0, 1, FLAGS},
  135. { "shortest", "force termination when the shortest input terminates", OFFSET(dinput.shortest), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
  136. { "repeatlast", "repeat last bottom frame", OFFSET(dinput.repeatlast), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS },
  137. { NULL }
  138. };
  139. AVFILTER_DEFINE_CLASS(blend);
  140. static void blend_normal(const uint8_t *top, int top_linesize,
  141. const uint8_t *bottom, int bottom_linesize,
  142. uint8_t *dst, int dst_linesize,
  143. int width, int start, int end,
  144. FilterParams *param, double *values)
  145. {
  146. av_image_copy_plane(dst, dst_linesize, top, top_linesize, width, end - start);
  147. }
  148. #define DEFINE_BLEND(name, expr) \
  149. static void blend_## name(const uint8_t *top, int top_linesize, \
  150. const uint8_t *bottom, int bottom_linesize, \
  151. uint8_t *dst, int dst_linesize, \
  152. int width, int start, int end, \
  153. FilterParams *param, double *values) \
  154. { \
  155. double opacity = param->opacity; \
  156. int i, j; \
  157. \
  158. for (i = start; i < end; i++) { \
  159. for (j = 0; j < width; j++) { \
  160. dst[j] = top[j] + ((expr) - top[j]) * opacity; \
  161. } \
  162. dst += dst_linesize; \
  163. top += top_linesize; \
  164. bottom += bottom_linesize; \
  165. } \
  166. }
  167. #define A top[j]
  168. #define B bottom[j]
  169. #define MULTIPLY(x, a, b) ((x) * (((a) * (b)) / 255))
  170. #define SCREEN(x, a, b) (255 - (x) * ((255 - (a)) * (255 - (b)) / 255))
  171. #define BURN(a, b) (((a) == 0) ? (a) : FFMAX(0, 255 - ((255 - (b)) << 8) / (a)))
  172. #define DODGE(a, b) (((a) == 255) ? (a) : FFMIN(255, (((b) << 8) / (255 - (a)))))
  173. DEFINE_BLEND(addition, FFMIN(255, A + B))
  174. DEFINE_BLEND(average, (A + B) / 2)
  175. DEFINE_BLEND(subtract, FFMAX(0, A - B))
  176. DEFINE_BLEND(multiply, MULTIPLY(1, A, B))
  177. DEFINE_BLEND(negation, 255 - FFABS(255 - A - B))
  178. DEFINE_BLEND(difference, FFABS(A - B))
  179. DEFINE_BLEND(difference128, av_clip_uint8(128 + A - B))
  180. DEFINE_BLEND(screen, SCREEN(1, A, B))
  181. DEFINE_BLEND(overlay, (A < 128) ? MULTIPLY(2, A, B) : SCREEN(2, A, B))
  182. DEFINE_BLEND(hardlight, (B < 128) ? MULTIPLY(2, B, A) : SCREEN(2, B, A))
  183. DEFINE_BLEND(darken, FFMIN(A, B))
  184. DEFINE_BLEND(lighten, FFMAX(A, B))
  185. DEFINE_BLEND(divide, ((float)A / ((float)B) * 255))
  186. DEFINE_BLEND(dodge, DODGE(A, B))
  187. DEFINE_BLEND(burn, BURN(A, B))
  188. DEFINE_BLEND(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))
  189. DEFINE_BLEND(exclusion, A + B - 2 * A * B / 255)
  190. DEFINE_BLEND(pinlight, (B < 128) ? FFMIN(A, 2 * B) : FFMAX(A, 2 * (B - 128)))
  191. DEFINE_BLEND(phoenix, FFMIN(A, B) - FFMAX(A, B) + 255)
  192. DEFINE_BLEND(reflect, (B == 255) ? B : FFMIN(255, (A * A / (255 - B))))
  193. DEFINE_BLEND(and, A & B)
  194. DEFINE_BLEND(or, A | B)
  195. DEFINE_BLEND(xor, A ^ B)
  196. DEFINE_BLEND(vividlight, (B < 128) ? BURN(A, 2 * B) : DODGE(A, 2 * (B - 128)))
  197. static void blend_expr(const uint8_t *top, int top_linesize,
  198. const uint8_t *bottom, int bottom_linesize,
  199. uint8_t *dst, int dst_linesize,
  200. int width, int start, int end,
  201. FilterParams *param, double *values)
  202. {
  203. AVExpr *e = param->e;
  204. int y, x;
  205. for (y = start; y < end; y++) {
  206. values[VAR_Y] = y;
  207. for (x = 0; x < width; x++) {
  208. values[VAR_X] = x;
  209. values[VAR_TOP] = values[VAR_A] = top[x];
  210. values[VAR_BOTTOM] = values[VAR_B] = bottom[x];
  211. dst[x] = av_expr_eval(e, values, NULL);
  212. }
  213. dst += dst_linesize;
  214. top += top_linesize;
  215. bottom += bottom_linesize;
  216. }
  217. }
  218. static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
  219. {
  220. ThreadData *td = arg;
  221. int slice_start = (td->h * jobnr ) / nb_jobs;
  222. int slice_end = (td->h * (jobnr+1)) / nb_jobs;
  223. const uint8_t *top = td->top->data[td->plane];
  224. const uint8_t *bottom = td->bottom->data[td->plane];
  225. uint8_t *dst = td->dst->data[td->plane];
  226. double values[VAR_VARS_NB];
  227. values[VAR_N] = td->inlink->frame_count;
  228. values[VAR_T] = td->dst->pts == AV_NOPTS_VALUE ? NAN : td->dst->pts * av_q2d(td->inlink->time_base);
  229. values[VAR_W] = td->w;
  230. values[VAR_H] = td->h;
  231. values[VAR_SW] = td->w / (double)td->dst->width;
  232. values[VAR_SH] = td->h / (double)td->dst->height;
  233. td->param->blend(top + slice_start * td->top->linesize[td->plane],
  234. td->top->linesize[td->plane],
  235. bottom + slice_start * td->bottom->linesize[td->plane],
  236. td->bottom->linesize[td->plane],
  237. dst + slice_start * td->dst->linesize[td->plane],
  238. td->dst->linesize[td->plane],
  239. td->w, slice_start, slice_end, td->param, &values[0]);
  240. return 0;
  241. }
  242. static AVFrame *blend_frame(AVFilterContext *ctx, AVFrame *top_buf,
  243. const AVFrame *bottom_buf)
  244. {
  245. BlendContext *b = ctx->priv;
  246. AVFilterLink *inlink = ctx->inputs[0];
  247. AVFilterLink *outlink = ctx->outputs[0];
  248. AVFrame *dst_buf;
  249. int plane;
  250. dst_buf = ff_get_video_buffer(outlink, outlink->w, outlink->h);
  251. if (!dst_buf)
  252. return top_buf;
  253. av_frame_copy_props(dst_buf, top_buf);
  254. for (plane = 0; plane < b->nb_planes; plane++) {
  255. int hsub = plane == 1 || plane == 2 ? b->hsub : 0;
  256. int vsub = plane == 1 || plane == 2 ? b->vsub : 0;
  257. int outw = FF_CEIL_RSHIFT(dst_buf->width, hsub);
  258. int outh = FF_CEIL_RSHIFT(dst_buf->height, vsub);
  259. FilterParams *param = &b->params[plane];
  260. ThreadData td = { .top = top_buf, .bottom = bottom_buf, .dst = dst_buf,
  261. .w = outw, .h = outh, .param = param, .plane = plane,
  262. .inlink = inlink };
  263. ctx->internal->execute(ctx, filter_slice, &td, NULL, FFMIN(outh, ctx->graph->nb_threads));
  264. }
  265. av_frame_free(&top_buf);
  266. return dst_buf;
  267. }
  268. static av_cold int init(AVFilterContext *ctx)
  269. {
  270. BlendContext *b = ctx->priv;
  271. int ret, plane;
  272. for (plane = 0; plane < FF_ARRAY_ELEMS(b->params); plane++) {
  273. FilterParams *param = &b->params[plane];
  274. if (b->all_mode >= 0)
  275. param->mode = b->all_mode;
  276. if (b->all_opacity < 1)
  277. param->opacity = b->all_opacity;
  278. switch (param->mode) {
  279. case BLEND_ADDITION: param->blend = blend_addition; break;
  280. case BLEND_AND: param->blend = blend_and; break;
  281. case BLEND_AVERAGE: param->blend = blend_average; break;
  282. case BLEND_BURN: param->blend = blend_burn; break;
  283. case BLEND_DARKEN: param->blend = blend_darken; break;
  284. case BLEND_DIFFERENCE: param->blend = blend_difference; break;
  285. case BLEND_DIFFERENCE128: param->blend = blend_difference128; break;
  286. case BLEND_DIVIDE: param->blend = blend_divide; break;
  287. case BLEND_DODGE: param->blend = blend_dodge; break;
  288. case BLEND_EXCLUSION: param->blend = blend_exclusion; break;
  289. case BLEND_HARDLIGHT: param->blend = blend_hardlight; break;
  290. case BLEND_LIGHTEN: param->blend = blend_lighten; break;
  291. case BLEND_MULTIPLY: param->blend = blend_multiply; break;
  292. case BLEND_NEGATION: param->blend = blend_negation; break;
  293. case BLEND_NORMAL: param->blend = blend_normal; break;
  294. case BLEND_OR: param->blend = blend_or; break;
  295. case BLEND_OVERLAY: param->blend = blend_overlay; break;
  296. case BLEND_PHOENIX: param->blend = blend_phoenix; break;
  297. case BLEND_PINLIGHT: param->blend = blend_pinlight; break;
  298. case BLEND_REFLECT: param->blend = blend_reflect; break;
  299. case BLEND_SCREEN: param->blend = blend_screen; break;
  300. case BLEND_SOFTLIGHT: param->blend = blend_softlight; break;
  301. case BLEND_SUBTRACT: param->blend = blend_subtract; break;
  302. case BLEND_VIVIDLIGHT: param->blend = blend_vividlight; break;
  303. case BLEND_XOR: param->blend = blend_xor; break;
  304. }
  305. if (b->all_expr && !param->expr_str) {
  306. param->expr_str = av_strdup(b->all_expr);
  307. if (!param->expr_str)
  308. return AVERROR(ENOMEM);
  309. }
  310. if (param->expr_str) {
  311. ret = av_expr_parse(&param->e, param->expr_str, var_names,
  312. NULL, NULL, NULL, NULL, 0, ctx);
  313. if (ret < 0)
  314. return ret;
  315. param->blend = blend_expr;
  316. }
  317. }
  318. b->dinput.process = blend_frame;
  319. return 0;
  320. }
  321. static int query_formats(AVFilterContext *ctx)
  322. {
  323. static const enum AVPixelFormat pix_fmts[] = {
  324. AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUVA422P, AV_PIX_FMT_YUVA420P,
  325. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_YUVJ422P,AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ411P,
  326. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  327. AV_PIX_FMT_GBRP, AV_PIX_FMT_GBRAP, AV_PIX_FMT_GRAY8, AV_PIX_FMT_NONE
  328. };
  329. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  330. return 0;
  331. }
  332. static int config_output(AVFilterLink *outlink)
  333. {
  334. AVFilterContext *ctx = outlink->src;
  335. AVFilterLink *toplink = ctx->inputs[TOP];
  336. AVFilterLink *bottomlink = ctx->inputs[BOTTOM];
  337. BlendContext *b = ctx->priv;
  338. const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(toplink->format);
  339. int ret;
  340. if (toplink->format != bottomlink->format) {
  341. av_log(ctx, AV_LOG_ERROR, "inputs must be of same pixel format\n");
  342. return AVERROR(EINVAL);
  343. }
  344. if (toplink->w != bottomlink->w ||
  345. toplink->h != bottomlink->h ||
  346. toplink->sample_aspect_ratio.num != bottomlink->sample_aspect_ratio.num ||
  347. toplink->sample_aspect_ratio.den != bottomlink->sample_aspect_ratio.den) {
  348. av_log(ctx, AV_LOG_ERROR, "First input link %s parameters "
  349. "(size %dx%d, SAR %d:%d) do not match the corresponding "
  350. "second input link %s parameters (%dx%d, SAR %d:%d)\n",
  351. ctx->input_pads[TOP].name, toplink->w, toplink->h,
  352. toplink->sample_aspect_ratio.num,
  353. toplink->sample_aspect_ratio.den,
  354. ctx->input_pads[BOTTOM].name, bottomlink->w, bottomlink->h,
  355. bottomlink->sample_aspect_ratio.num,
  356. bottomlink->sample_aspect_ratio.den);
  357. return AVERROR(EINVAL);
  358. }
  359. outlink->w = toplink->w;
  360. outlink->h = toplink->h;
  361. outlink->time_base = toplink->time_base;
  362. outlink->sample_aspect_ratio = toplink->sample_aspect_ratio;
  363. outlink->frame_rate = toplink->frame_rate;
  364. b->hsub = pix_desc->log2_chroma_w;
  365. b->vsub = pix_desc->log2_chroma_h;
  366. b->nb_planes = av_pix_fmt_count_planes(toplink->format);
  367. if ((ret = ff_dualinput_init(ctx, &b->dinput)) < 0)
  368. return ret;
  369. return 0;
  370. }
  371. static av_cold void uninit(AVFilterContext *ctx)
  372. {
  373. BlendContext *b = ctx->priv;
  374. int i;
  375. ff_dualinput_uninit(&b->dinput);
  376. for (i = 0; i < FF_ARRAY_ELEMS(b->params); i++)
  377. av_expr_free(b->params[i].e);
  378. }
  379. static int request_frame(AVFilterLink *outlink)
  380. {
  381. BlendContext *b = outlink->src->priv;
  382. return ff_dualinput_request_frame(&b->dinput, outlink);
  383. }
  384. static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
  385. {
  386. BlendContext *b = inlink->dst->priv;
  387. return ff_dualinput_filter_frame(&b->dinput, inlink, buf);
  388. }
  389. static const AVFilterPad blend_inputs[] = {
  390. {
  391. .name = "top",
  392. .type = AVMEDIA_TYPE_VIDEO,
  393. .filter_frame = filter_frame,
  394. },{
  395. .name = "bottom",
  396. .type = AVMEDIA_TYPE_VIDEO,
  397. .filter_frame = filter_frame,
  398. },
  399. { NULL }
  400. };
  401. static const AVFilterPad blend_outputs[] = {
  402. {
  403. .name = "default",
  404. .type = AVMEDIA_TYPE_VIDEO,
  405. .config_props = config_output,
  406. .request_frame = request_frame,
  407. },
  408. { NULL }
  409. };
  410. AVFilter ff_vf_blend = {
  411. .name = "blend",
  412. .description = NULL_IF_CONFIG_SMALL("Blend two video frames into each other."),
  413. .init = init,
  414. .uninit = uninit,
  415. .priv_size = sizeof(BlendContext),
  416. .query_formats = query_formats,
  417. .inputs = blend_inputs,
  418. .outputs = blend_outputs,
  419. .priv_class = &blend_class,
  420. .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
  421. };