vf_drawbox.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright (c) 2008 Affine Systems, Inc (Michael Sullivan, Bobby Impollonia)
  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. /**
  21. * @file
  22. * Box drawing filter. Also a nice template for a filter that needs to
  23. * write in the input frame.
  24. */
  25. #include "libavutil/colorspace.h"
  26. #include "libavutil/pixdesc.h"
  27. #include "libavutil/parseutils.h"
  28. #include "avfilter.h"
  29. enum { Y, U, V, A };
  30. typedef struct {
  31. int x, y, w, h;
  32. unsigned char yuv_color[4];
  33. int vsub, hsub; ///< chroma subsampling
  34. } DrawBoxContext;
  35. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  36. {
  37. DrawBoxContext *drawbox= ctx->priv;
  38. char color_str[1024] = "black";
  39. uint8_t rgba_color[4];
  40. drawbox->x = drawbox->y = drawbox->w = drawbox->h = 0;
  41. if (args)
  42. sscanf(args, "%d:%d:%d:%d:%s",
  43. &drawbox->x, &drawbox->y, &drawbox->w, &drawbox->h, color_str);
  44. if (av_parse_color(rgba_color, color_str, -1, ctx) < 0)
  45. return AVERROR(EINVAL);
  46. drawbox->yuv_color[Y] = RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
  47. drawbox->yuv_color[U] = RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  48. drawbox->yuv_color[V] = RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  49. drawbox->yuv_color[A] = rgba_color[3];
  50. return 0;
  51. }
  52. static int query_formats(AVFilterContext *ctx)
  53. {
  54. enum PixelFormat pix_fmts[] = {
  55. PIX_FMT_YUV444P, PIX_FMT_YUV422P, PIX_FMT_YUV420P,
  56. PIX_FMT_YUV411P, PIX_FMT_YUV410P,
  57. PIX_FMT_YUVJ444P, PIX_FMT_YUVJ422P, PIX_FMT_YUVJ420P,
  58. PIX_FMT_YUV440P, PIX_FMT_YUVJ440P,
  59. PIX_FMT_NONE
  60. };
  61. avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
  62. return 0;
  63. }
  64. static int config_input(AVFilterLink *inlink)
  65. {
  66. DrawBoxContext *drawbox = inlink->dst->priv;
  67. drawbox->hsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_w;
  68. drawbox->vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h;
  69. if (drawbox->w == 0) drawbox->w = inlink->w;
  70. if (drawbox->h == 0) drawbox->h = inlink->h;
  71. av_log(inlink->dst, AV_LOG_INFO, "x:%d y:%d w:%d h:%d color:0x%02X%02X%02X%02X\n",
  72. drawbox->w, drawbox->y, drawbox->w, drawbox->h,
  73. drawbox->yuv_color[Y], drawbox->yuv_color[U], drawbox->yuv_color[V], drawbox->yuv_color[A]);
  74. return 0;
  75. }
  76. static void draw_slice(AVFilterLink *inlink, int y0, int h, int slice_dir)
  77. {
  78. DrawBoxContext *drawbox = inlink->dst->priv;
  79. int plane, x, y, xb = drawbox->x, yb = drawbox->y;
  80. unsigned char *row[4];
  81. AVFilterBufferRef *picref = inlink->cur_buf;
  82. for (y = FFMAX(yb, y0); y < (y0 + h) && y < (yb + drawbox->h); y++) {
  83. row[0] = picref->data[0] + y * picref->linesize[0];
  84. for (plane = 1; plane < 3; plane++)
  85. row[plane] = picref->data[plane] +
  86. picref->linesize[plane] * (y >> drawbox->vsub);
  87. for (x = FFMAX(xb, 0); x < (xb + drawbox->w) && x < picref->video->w; x++) {
  88. double alpha = (double)drawbox->yuv_color[A] / 255;
  89. if ((y - yb < 3) || (yb + drawbox->h - y < 4) ||
  90. (x - xb < 3) || (xb + drawbox->w - x < 4)) {
  91. row[0][x ] = (1 - alpha) * row[0][x ] + alpha * drawbox->yuv_color[Y];
  92. row[1][x >> drawbox->hsub] = (1 - alpha) * row[1][x >> drawbox->hsub] + alpha * drawbox->yuv_color[U];
  93. row[2][x >> drawbox->hsub] = (1 - alpha) * row[2][x >> drawbox->hsub] + alpha * drawbox->yuv_color[V];
  94. }
  95. }
  96. }
  97. avfilter_draw_slice(inlink->dst->outputs[0], y0, h, 1);
  98. }
  99. AVFilter avfilter_vf_drawbox = {
  100. .name = "drawbox",
  101. .description = NULL_IF_CONFIG_SMALL("Draw a colored box on the input video."),
  102. .priv_size = sizeof(DrawBoxContext),
  103. .init = init,
  104. .query_formats = query_formats,
  105. .inputs = (const AVFilterPad[]) {{ .name = "default",
  106. .type = AVMEDIA_TYPE_VIDEO,
  107. .config_props = config_input,
  108. .get_video_buffer = avfilter_null_get_video_buffer,
  109. .start_frame = avfilter_null_start_frame,
  110. .draw_slice = draw_slice,
  111. .end_frame = avfilter_null_end_frame,
  112. .min_perms = AV_PERM_WRITE | AV_PERM_READ,
  113. .rej_perms = AV_PERM_PRESERVE },
  114. { .name = NULL}},
  115. .outputs = (const AVFilterPad[]) {{ .name = "default",
  116. .type = AVMEDIA_TYPE_VIDEO, },
  117. { .name = NULL}},
  118. };