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.

636 lines
23KB

  1. /*
  2. * Copyright (c) 2010 Stefano Sabatini
  3. * Copyright (c) 2010 Baptiste Coudurier
  4. * Copyright (c) 2007 Bobby Bingham
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * overlay one video on top of another
  25. */
  26. /* #define DEBUG */
  27. #include "avfilter.h"
  28. #include "formats.h"
  29. #include "libavutil/eval.h"
  30. #include "libavutil/avstring.h"
  31. #include "libavutil/opt.h"
  32. #include "libavutil/pixdesc.h"
  33. #include "libavutil/imgutils.h"
  34. #include "libavutil/mathematics.h"
  35. #include "libavutil/timestamp.h"
  36. #include "internal.h"
  37. #include "bufferqueue.h"
  38. #include "drawutils.h"
  39. #include "video.h"
  40. static const char *const var_names[] = {
  41. "main_w", "W", ///< width of the main video
  42. "main_h", "H", ///< height of the main video
  43. "overlay_w", "w", ///< width of the overlay video
  44. "overlay_h", "h", ///< height of the overlay video
  45. NULL
  46. };
  47. enum var_name {
  48. VAR_MAIN_W, VAR_MW,
  49. VAR_MAIN_H, VAR_MH,
  50. VAR_OVERLAY_W, VAR_OW,
  51. VAR_OVERLAY_H, VAR_OH,
  52. VAR_VARS_NB
  53. };
  54. #define MAIN 0
  55. #define OVERLAY 1
  56. #define R 0
  57. #define G 1
  58. #define B 2
  59. #define A 3
  60. #define Y 0
  61. #define U 1
  62. #define V 2
  63. typedef struct {
  64. const AVClass *class;
  65. int x, y; ///< position of overlayed picture
  66. int allow_packed_rgb;
  67. uint8_t frame_requested;
  68. uint8_t overlay_eof;
  69. uint8_t main_is_packed_rgb;
  70. uint8_t main_rgba_map[4];
  71. uint8_t main_has_alpha;
  72. uint8_t overlay_is_packed_rgb;
  73. uint8_t overlay_rgba_map[4];
  74. uint8_t overlay_has_alpha;
  75. AVFilterBufferRef *overpicref;
  76. struct FFBufQueue queue_main;
  77. struct FFBufQueue queue_over;
  78. int main_pix_step[4]; ///< steps per pixel for each plane of the main output
  79. int overlay_pix_step[4]; ///< steps per pixel for each plane of the overlay
  80. int hsub, vsub; ///< chroma subsampling values
  81. char *x_expr, *y_expr;
  82. } OverlayContext;
  83. #define OFFSET(x) offsetof(OverlayContext, x)
  84. static const AVOption overlay_options[] = {
  85. { "x", "set the x expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX },
  86. { "y", "set the y expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "0"}, CHAR_MIN, CHAR_MAX },
  87. {"rgb", "force packed RGB in input and output", OFFSET(allow_packed_rgb), AV_OPT_TYPE_INT, {.dbl=0}, 0, 1 },
  88. {NULL},
  89. };
  90. AVFILTER_DEFINE_CLASS(overlay);
  91. static av_cold int init(AVFilterContext *ctx, const char *args)
  92. {
  93. OverlayContext *over = ctx->priv;
  94. char *args1 = av_strdup(args);
  95. char *expr, *bufptr = NULL;
  96. int ret = 0;
  97. over->class = &overlay_class;
  98. av_opt_set_defaults(over);
  99. if (expr = av_strtok(args1, ":", &bufptr)) {
  100. av_free(over->x_expr);
  101. if (!(over->x_expr = av_strdup(expr))) {
  102. ret = AVERROR(ENOMEM);
  103. goto end;
  104. }
  105. }
  106. if (expr = av_strtok(NULL, ":", &bufptr)) {
  107. av_free(over->y_expr);
  108. if (!(over->y_expr = av_strdup(expr))) {
  109. ret = AVERROR(ENOMEM);
  110. goto end;
  111. }
  112. }
  113. if (bufptr && (ret = av_set_options_string(over, bufptr, "=", ":")) < 0)
  114. goto end;
  115. end:
  116. av_free(args1);
  117. return ret;
  118. }
  119. static av_cold void uninit(AVFilterContext *ctx)
  120. {
  121. OverlayContext *over = ctx->priv;
  122. av_freep(&over->x_expr);
  123. av_freep(&over->y_expr);
  124. if (over->overpicref)
  125. avfilter_unref_buffer(over->overpicref);
  126. ff_bufqueue_discard_all(&over->queue_main);
  127. ff_bufqueue_discard_all(&over->queue_over);
  128. }
  129. static int query_formats(AVFilterContext *ctx)
  130. {
  131. OverlayContext *over = ctx->priv;
  132. /* overlay formats contains alpha, for avoiding conversion with alpha information loss */
  133. const enum PixelFormat main_pix_fmts_yuv[] = { PIX_FMT_YUV420P, PIX_FMT_NONE };
  134. const enum PixelFormat overlay_pix_fmts_yuv[] = { PIX_FMT_YUVA420P, PIX_FMT_NONE };
  135. const enum PixelFormat main_pix_fmts_rgb[] = {
  136. PIX_FMT_ARGB, PIX_FMT_RGBA,
  137. PIX_FMT_ABGR, PIX_FMT_BGRA,
  138. PIX_FMT_RGB24, PIX_FMT_BGR24,
  139. PIX_FMT_NONE
  140. };
  141. const enum PixelFormat overlay_pix_fmts_rgb[] = {
  142. PIX_FMT_ARGB, PIX_FMT_RGBA,
  143. PIX_FMT_ABGR, PIX_FMT_BGRA,
  144. PIX_FMT_NONE
  145. };
  146. AVFilterFormats *main_formats;
  147. AVFilterFormats *overlay_formats;
  148. if (over->allow_packed_rgb) {
  149. main_formats = ff_make_format_list(main_pix_fmts_rgb);
  150. overlay_formats = ff_make_format_list(overlay_pix_fmts_rgb);
  151. } else {
  152. main_formats = ff_make_format_list(main_pix_fmts_yuv);
  153. overlay_formats = ff_make_format_list(overlay_pix_fmts_yuv);
  154. }
  155. ff_formats_ref(main_formats, &ctx->inputs [MAIN ]->out_formats);
  156. ff_formats_ref(overlay_formats, &ctx->inputs [OVERLAY]->out_formats);
  157. ff_formats_ref(main_formats, &ctx->outputs[MAIN ]->in_formats );
  158. return 0;
  159. }
  160. static const enum PixelFormat alpha_pix_fmts[] = {
  161. PIX_FMT_YUVA420P, PIX_FMT_ARGB, PIX_FMT_ABGR, PIX_FMT_RGBA,
  162. PIX_FMT_BGRA, PIX_FMT_NONE
  163. };
  164. static int config_input_main(AVFilterLink *inlink)
  165. {
  166. OverlayContext *over = inlink->dst->priv;
  167. const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
  168. av_image_fill_max_pixsteps(over->main_pix_step, NULL, pix_desc);
  169. over->hsub = pix_desc->log2_chroma_w;
  170. over->vsub = pix_desc->log2_chroma_h;
  171. over->main_is_packed_rgb =
  172. ff_fill_rgba_map(over->main_rgba_map, inlink->format) >= 0;
  173. over->main_has_alpha = ff_fmt_is_in(inlink->format, alpha_pix_fmts);
  174. return 0;
  175. }
  176. static int config_input_overlay(AVFilterLink *inlink)
  177. {
  178. AVFilterContext *ctx = inlink->dst;
  179. OverlayContext *over = inlink->dst->priv;
  180. char *expr;
  181. double var_values[VAR_VARS_NB], res;
  182. int ret;
  183. const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
  184. av_image_fill_max_pixsteps(over->overlay_pix_step, NULL, pix_desc);
  185. /* Finish the configuration by evaluating the expressions
  186. now when both inputs are configured. */
  187. var_values[VAR_MAIN_W ] = var_values[VAR_MW] = ctx->inputs[MAIN ]->w;
  188. var_values[VAR_MAIN_H ] = var_values[VAR_MH] = ctx->inputs[MAIN ]->h;
  189. var_values[VAR_OVERLAY_W] = var_values[VAR_OW] = ctx->inputs[OVERLAY]->w;
  190. var_values[VAR_OVERLAY_H] = var_values[VAR_OH] = ctx->inputs[OVERLAY]->h;
  191. if ((ret = av_expr_parse_and_eval(&res, (expr = over->x_expr), var_names, var_values,
  192. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  193. goto fail;
  194. over->x = res;
  195. if ((ret = av_expr_parse_and_eval(&res, (expr = over->y_expr), var_names, var_values,
  196. NULL, NULL, NULL, NULL, NULL, 0, ctx)))
  197. goto fail;
  198. over->y = res;
  199. /* x may depend on y */
  200. if ((ret = av_expr_parse_and_eval(&res, (expr = over->x_expr), var_names, var_values,
  201. NULL, NULL, NULL, NULL, NULL, 0, ctx)) < 0)
  202. goto fail;
  203. over->x = res;
  204. over->overlay_is_packed_rgb =
  205. ff_fill_rgba_map(over->overlay_rgba_map, inlink->format) >= 0;
  206. over->overlay_has_alpha = ff_fmt_is_in(inlink->format, alpha_pix_fmts);
  207. av_log(ctx, AV_LOG_VERBOSE,
  208. "main w:%d h:%d fmt:%s overlay x:%d y:%d w:%d h:%d fmt:%s\n",
  209. ctx->inputs[MAIN]->w, ctx->inputs[MAIN]->h,
  210. av_pix_fmt_descriptors[ctx->inputs[MAIN]->format].name,
  211. over->x, over->y,
  212. ctx->inputs[OVERLAY]->w, ctx->inputs[OVERLAY]->h,
  213. av_pix_fmt_descriptors[ctx->inputs[OVERLAY]->format].name);
  214. if (over->x < 0 || over->y < 0 ||
  215. over->x + var_values[VAR_OVERLAY_W] > var_values[VAR_MAIN_W] ||
  216. over->y + var_values[VAR_OVERLAY_H] > var_values[VAR_MAIN_H]) {
  217. av_log(ctx, AV_LOG_ERROR,
  218. "Overlay area (%d,%d)<->(%d,%d) not within the main area (0,0)<->(%d,%d) or zero-sized\n",
  219. over->x, over->y,
  220. (int)(over->x + var_values[VAR_OVERLAY_W]),
  221. (int)(over->y + var_values[VAR_OVERLAY_H]),
  222. (int)var_values[VAR_MAIN_W], (int)var_values[VAR_MAIN_H]);
  223. return AVERROR(EINVAL);
  224. }
  225. return 0;
  226. fail:
  227. av_log(NULL, AV_LOG_ERROR,
  228. "Error when evaluating the expression '%s'\n", expr);
  229. return ret;
  230. }
  231. static int config_output(AVFilterLink *outlink)
  232. {
  233. AVFilterContext *ctx = outlink->src;
  234. int exact;
  235. // common timebase computation:
  236. AVRational tb1 = ctx->inputs[MAIN ]->time_base;
  237. AVRational tb2 = ctx->inputs[OVERLAY]->time_base;
  238. AVRational *tb = &ctx->outputs[0]->time_base;
  239. exact = av_reduce(&tb->num, &tb->den,
  240. av_gcd((int64_t)tb1.num * tb2.den,
  241. (int64_t)tb2.num * tb1.den),
  242. (int64_t)tb1.den * tb2.den, INT_MAX);
  243. av_log(ctx, AV_LOG_VERBOSE,
  244. "main_tb:%d/%d overlay_tb:%d/%d -> tb:%d/%d exact:%d\n",
  245. tb1.num, tb1.den, tb2.num, tb2.den, tb->num, tb->den, exact);
  246. if (!exact)
  247. av_log(ctx, AV_LOG_WARNING,
  248. "Timestamp conversion inexact, timestamp information loss may occurr\n");
  249. outlink->w = ctx->inputs[MAIN]->w;
  250. outlink->h = ctx->inputs[MAIN]->h;
  251. return 0;
  252. }
  253. static AVFilterBufferRef *get_video_buffer(AVFilterLink *link, int perms, int w, int h)
  254. {
  255. return ff_get_video_buffer(link->dst->outputs[0], perms, w, h);
  256. }
  257. // divide by 255 and round to nearest
  258. // apply a fast variant: (X+127)/255 = ((X+127)*257+257)>>16 = ((X+128)*257)>>16
  259. #define FAST_DIV255(x) ((((x) + 128) * 257) >> 16)
  260. static void blend_slice(AVFilterContext *ctx,
  261. AVFilterBufferRef *dst, AVFilterBufferRef *src,
  262. int x, int y, int w, int h,
  263. int slice_y, int slice_w, int slice_h)
  264. {
  265. OverlayContext *over = ctx->priv;
  266. int i, j, k;
  267. int width, height;
  268. int overlay_end_y = y+h;
  269. int slice_end_y = slice_y+slice_h;
  270. int end_y, start_y;
  271. width = FFMIN(slice_w - x, w);
  272. end_y = FFMIN(slice_end_y, overlay_end_y);
  273. start_y = FFMAX(y, slice_y);
  274. height = end_y - start_y;
  275. if (over->main_is_packed_rgb) {
  276. uint8_t *dp = dst->data[0] + x * over->main_pix_step[0] +
  277. start_y * dst->linesize[0];
  278. uint8_t *sp = src->data[0];
  279. uint8_t alpha; ///< the amount of overlay to blend on to main
  280. const int dr = over->main_rgba_map[R];
  281. const int dg = over->main_rgba_map[G];
  282. const int db = over->main_rgba_map[B];
  283. const int da = over->main_rgba_map[A];
  284. const int dstep = over->main_pix_step[0];
  285. const int sr = over->overlay_rgba_map[R];
  286. const int sg = over->overlay_rgba_map[G];
  287. const int sb = over->overlay_rgba_map[B];
  288. const int sa = over->overlay_rgba_map[A];
  289. const int sstep = over->overlay_pix_step[0];
  290. const int main_has_alpha = over->main_has_alpha;
  291. if (slice_y > y)
  292. sp += (slice_y - y) * src->linesize[0];
  293. for (i = 0; i < height; i++) {
  294. uint8_t *d = dp, *s = sp;
  295. for (j = 0; j < width; j++) {
  296. alpha = s[sa];
  297. // if the main channel has an alpha channel, alpha has to be calculated
  298. // to create an un-premultiplied (straight) alpha value
  299. if (main_has_alpha && alpha != 0 && alpha != 255) {
  300. // apply the general equation:
  301. // alpha = alpha_overlay / ( (alpha_main + alpha_overlay) - (alpha_main * alpha_overlay) )
  302. alpha =
  303. // the next line is a faster version of: 255 * 255 * alpha
  304. ( (alpha << 16) - (alpha << 9) + alpha )
  305. /
  306. // the next line is a faster version of: 255 * (alpha + d[da])
  307. ( ((alpha + d[da]) << 8 ) - (alpha + d[da])
  308. - d[da] * alpha );
  309. }
  310. switch (alpha) {
  311. case 0:
  312. break;
  313. case 255:
  314. d[dr] = s[sr];
  315. d[dg] = s[sg];
  316. d[db] = s[sb];
  317. break;
  318. default:
  319. // main_value = main_value * (1 - alpha) + overlay_value * alpha
  320. // since alpha is in the range 0-255, the result must divided by 255
  321. d[dr] = FAST_DIV255(d[dr] * (255 - alpha) + s[sr] * alpha);
  322. d[dg] = FAST_DIV255(d[dg] * (255 - alpha) + s[sg] * alpha);
  323. d[db] = FAST_DIV255(d[db] * (255 - alpha) + s[sb] * alpha);
  324. }
  325. if (main_has_alpha) {
  326. switch (alpha) {
  327. case 0:
  328. break;
  329. case 255:
  330. d[da] = s[sa];
  331. break;
  332. default:
  333. // apply alpha compositing: main_alpha += (1-main_alpha) * overlay_alpha
  334. d[da] += FAST_DIV255((255 - d[da]) * s[sa]);
  335. }
  336. }
  337. d += dstep;
  338. s += sstep;
  339. }
  340. dp += dst->linesize[0];
  341. sp += src->linesize[0];
  342. }
  343. } else {
  344. for (i = 0; i < 3; i++) {
  345. int hsub = i ? over->hsub : 0;
  346. int vsub = i ? over->vsub : 0;
  347. uint8_t *dp = dst->data[i] + (x >> hsub) +
  348. (start_y >> vsub) * dst->linesize[i];
  349. uint8_t *sp = src->data[i];
  350. uint8_t *ap = src->data[3];
  351. int wp = FFALIGN(width, 1<<hsub) >> hsub;
  352. int hp = FFALIGN(height, 1<<vsub) >> vsub;
  353. if (slice_y > y) {
  354. sp += ((slice_y - y) >> vsub) * src->linesize[i];
  355. ap += (slice_y - y) * src->linesize[3];
  356. }
  357. for (j = 0; j < hp; j++) {
  358. uint8_t *d = dp, *s = sp, *a = ap;
  359. for (k = 0; k < wp; k++) {
  360. // average alpha for color components, improve quality
  361. int alpha_v, alpha_h, alpha;
  362. if (hsub && vsub && j+1 < hp && k+1 < wp) {
  363. alpha = (a[0] + a[src->linesize[3]] +
  364. a[1] + a[src->linesize[3]+1]) >> 2;
  365. } else if (hsub || vsub) {
  366. alpha_h = hsub && k+1 < wp ?
  367. (a[0] + a[1]) >> 1 : a[0];
  368. alpha_v = vsub && j+1 < hp ?
  369. (a[0] + a[src->linesize[3]]) >> 1 : a[0];
  370. alpha = (alpha_v + alpha_h) >> 1;
  371. } else
  372. alpha = a[0];
  373. *d = FAST_DIV255(*d * (255 - alpha) + *s * alpha);
  374. s++;
  375. d++;
  376. a += 1 << hsub;
  377. }
  378. dp += dst->linesize[i];
  379. sp += src->linesize[i];
  380. ap += (1 << vsub) * src->linesize[3];
  381. }
  382. }
  383. }
  384. }
  385. static int try_start_frame(AVFilterContext *ctx, AVFilterBufferRef *mainpic)
  386. {
  387. OverlayContext *over = ctx->priv;
  388. AVFilterLink *outlink = ctx->outputs[0];
  389. AVFilterBufferRef *next_overpic, *outpicref;
  390. /* Discard obsolete overlay frames: if there is a next frame with pts is
  391. * before the main frame, we can drop the current overlay. */
  392. while (1) {
  393. next_overpic = ff_bufqueue_peek(&over->queue_over, 0);
  394. if (!next_overpic || next_overpic->pts > mainpic->pts)
  395. break;
  396. ff_bufqueue_get(&over->queue_over);
  397. avfilter_unref_buffer(over->overpicref);
  398. over->overpicref = next_overpic;
  399. }
  400. /* If there is no next frame and no EOF and the overlay frame is before
  401. * the main frame, we can not know yet if it will be superseded. */
  402. if (!over->queue_over.available && !over->overlay_eof &&
  403. (!over->overpicref || over->overpicref->pts < mainpic->pts))
  404. return AVERROR(EAGAIN);
  405. /* At this point, we know that the current overlay frame extends to the
  406. * time of the main frame. */
  407. outlink->out_buf = outpicref = avfilter_ref_buffer(mainpic, ~0);
  408. av_dlog(ctx, "main_pts:%s main_pts_time:%s",
  409. av_ts2str(outpicref->pts), av_ts2timestr(outpicref->pts, &outlink->time_base));
  410. if (over->overpicref)
  411. av_dlog(ctx, " over_pts:%s over_pts_time:%s",
  412. av_ts2str(over->overpicref->pts), av_ts2timestr(over->overpicref->pts, &outlink->time_base));
  413. av_dlog(ctx, "\n");
  414. ff_start_frame(ctx->outputs[0], avfilter_ref_buffer(outpicref, ~0));
  415. over->frame_requested = 0;
  416. return 0;
  417. }
  418. static int try_start_next_frame(AVFilterContext *ctx)
  419. {
  420. OverlayContext *over = ctx->priv;
  421. AVFilterBufferRef *next_mainpic = ff_bufqueue_peek(&over->queue_main, 0);
  422. if (!next_mainpic || try_start_frame(ctx, next_mainpic) < 0)
  423. return AVERROR(EAGAIN);
  424. avfilter_unref_buffer(ff_bufqueue_get(&over->queue_main));
  425. return 0;
  426. }
  427. static int try_push_frame(AVFilterContext *ctx)
  428. {
  429. OverlayContext *over = ctx->priv;
  430. AVFilterLink *outlink = ctx->outputs[0];
  431. AVFilterBufferRef *outpicref = outlink->out_buf;
  432. if (try_start_next_frame(ctx) < 0)
  433. return AVERROR(EAGAIN);
  434. outpicref = outlink->out_buf;
  435. if (over->overpicref)
  436. blend_slice(ctx, outpicref, over->overpicref, over->x, over->y,
  437. over->overpicref->video->w, over->overpicref->video->h,
  438. 0, outpicref->video->w, outpicref->video->h);
  439. ff_draw_slice(outlink, 0, outpicref->video->h, +1);
  440. avfilter_unref_bufferp(&outlink->out_buf);
  441. ff_end_frame(outlink);
  442. return 0;
  443. }
  444. static void flush_frames(AVFilterContext *ctx)
  445. {
  446. while (!try_push_frame(ctx));
  447. }
  448. static void start_frame_main(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
  449. {
  450. AVFilterContext *ctx = inlink->dst;
  451. OverlayContext *over = ctx->priv;
  452. flush_frames(ctx);
  453. inpicref->pts = av_rescale_q(inpicref->pts, ctx->inputs[MAIN]->time_base,
  454. ctx->outputs[0]->time_base);
  455. if (try_start_frame(ctx, inpicref) < 0)
  456. ff_bufqueue_add(ctx, &over->queue_main, inpicref);
  457. }
  458. static void draw_slice_main(AVFilterLink *inlink, int y, int h, int slice_dir)
  459. {
  460. AVFilterContext *ctx = inlink->dst;
  461. OverlayContext *over = ctx->priv;
  462. AVFilterLink *outlink = ctx->outputs[0];
  463. AVFilterBufferRef *outpicref = outlink->out_buf;
  464. if (!outpicref)
  465. return;
  466. if (over->overpicref &&
  467. y + h > over->y && y < over->y + over->overpicref->video->h) {
  468. blend_slice(ctx, outpicref, over->overpicref, over->x, over->y,
  469. over->overpicref->video->w, over->overpicref->video->h,
  470. y, outpicref->video->w, h);
  471. }
  472. ff_draw_slice(outlink, y, h, slice_dir);
  473. }
  474. static void end_frame_main(AVFilterLink *inlink)
  475. {
  476. AVFilterContext *ctx = inlink->dst;
  477. AVFilterLink *outlink = ctx->outputs[0];
  478. AVFilterBufferRef *outpicref = outlink->out_buf;
  479. flush_frames(ctx);
  480. if (!outpicref)
  481. return;
  482. avfilter_unref_bufferp(&inlink->cur_buf);
  483. avfilter_unref_bufferp(&outlink->out_buf);
  484. ff_end_frame(ctx->outputs[0]);
  485. }
  486. static void start_frame_over(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
  487. {
  488. }
  489. static void end_frame_over(AVFilterLink *inlink)
  490. {
  491. AVFilterContext *ctx = inlink->dst;
  492. OverlayContext *over = ctx->priv;
  493. AVFilterBufferRef *inpicref = inlink->cur_buf;
  494. flush_frames(ctx);
  495. inpicref->pts = av_rescale_q(inpicref->pts, ctx->inputs[OVERLAY]->time_base,
  496. ctx->outputs[0]->time_base);
  497. ff_bufqueue_add(ctx, &over->queue_over, inpicref);
  498. try_push_frame(ctx);
  499. }
  500. static int request_frame(AVFilterLink *outlink)
  501. {
  502. AVFilterContext *ctx = outlink->src;
  503. OverlayContext *over = ctx->priv;
  504. int input, ret;
  505. if (!try_push_frame(ctx))
  506. return 0;
  507. over->frame_requested = 1;
  508. while (over->frame_requested) {
  509. /* TODO if we had a frame duration, we could guess more accurately */
  510. input = !over->overlay_eof && (over->queue_main.available ||
  511. over->queue_over.available < 2) ?
  512. OVERLAY : MAIN;
  513. ret = ff_request_frame(ctx->inputs[input]);
  514. /* EOF on main is reported immediately */
  515. if (ret == AVERROR_EOF && input == OVERLAY) {
  516. over->overlay_eof = 1;
  517. if (!try_start_next_frame(ctx))
  518. return 0;
  519. ret = 0; /* continue requesting frames on main */
  520. }
  521. if (ret < 0)
  522. return ret;
  523. }
  524. return 0;
  525. }
  526. static void null_draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir) { }
  527. AVFilter avfilter_vf_overlay = {
  528. .name = "overlay",
  529. .description = NULL_IF_CONFIG_SMALL("Overlay a video source on top of the input."),
  530. .init = init,
  531. .uninit = uninit,
  532. .priv_size = sizeof(OverlayContext),
  533. .query_formats = query_formats,
  534. .inputs = (const AVFilterPad[]) {{ .name = "main",
  535. .type = AVMEDIA_TYPE_VIDEO,
  536. .get_video_buffer= get_video_buffer,
  537. .config_props = config_input_main,
  538. .start_frame = start_frame_main,
  539. .draw_slice = draw_slice_main,
  540. .end_frame = end_frame_main,
  541. .min_perms = AV_PERM_READ,
  542. .rej_perms = AV_PERM_REUSE2|AV_PERM_PRESERVE, },
  543. { .name = "overlay",
  544. .type = AVMEDIA_TYPE_VIDEO,
  545. .config_props = config_input_overlay,
  546. .start_frame = start_frame_over,
  547. .draw_slice = null_draw_slice,
  548. .end_frame = end_frame_over,
  549. .min_perms = AV_PERM_READ,
  550. .rej_perms = AV_PERM_REUSE2, },
  551. { .name = NULL}},
  552. .outputs = (const AVFilterPad[]) {{ .name = "default",
  553. .type = AVMEDIA_TYPE_VIDEO,
  554. .config_props = config_output,
  555. .request_frame = request_frame, },
  556. { .name = NULL}},
  557. };