vf_drawbox.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /*
  2. * Copyright (c) 2008 Affine Systems, Inc (Michael Sullivan, Bobby Impollonia)
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; 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/common.h"
  27. #include "libavutil/opt.h"
  28. #include "libavutil/pixdesc.h"
  29. #include "libavutil/parseutils.h"
  30. #include "avfilter.h"
  31. #include "formats.h"
  32. #include "internal.h"
  33. #include "video.h"
  34. enum { Y, U, V, A };
  35. typedef struct DrawBoxContext {
  36. const AVClass *class;
  37. int x, y, w_opt, h_opt, w, h;
  38. char *color_str;
  39. unsigned char yuv_color[4];
  40. int vsub, hsub; ///< chroma subsampling
  41. } DrawBoxContext;
  42. static av_cold int init(AVFilterContext *ctx)
  43. {
  44. DrawBoxContext *s = ctx->priv;
  45. uint8_t rgba_color[4];
  46. if (av_parse_color(rgba_color, s->color_str, -1, ctx) < 0)
  47. return AVERROR(EINVAL);
  48. s->yuv_color[Y] = RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
  49. s->yuv_color[U] = RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  50. s->yuv_color[V] = RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  51. s->yuv_color[A] = rgba_color[3];
  52. return 0;
  53. }
  54. static int query_formats(AVFilterContext *ctx)
  55. {
  56. enum AVPixelFormat pix_fmts[] = {
  57. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  58. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  59. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P,
  60. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
  61. AV_PIX_FMT_NONE
  62. };
  63. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  64. return 0;
  65. }
  66. static int config_input(AVFilterLink *inlink)
  67. {
  68. DrawBoxContext *s = inlink->dst->priv;
  69. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  70. s->hsub = desc->log2_chroma_w;
  71. s->vsub = desc->log2_chroma_h;
  72. s->w = (s->w_opt > 0) ? s->w_opt : inlink->w;
  73. s->h = (s->h_opt > 0) ? s->h_opt : inlink->h;
  74. av_log(inlink->dst, AV_LOG_VERBOSE, "x:%d y:%d w:%d h:%d color:0x%02X%02X%02X%02X\n",
  75. s->w, s->y, s->w, s->h,
  76. s->yuv_color[Y], s->yuv_color[U], s->yuv_color[V], s->yuv_color[A]);
  77. return 0;
  78. }
  79. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  80. {
  81. DrawBoxContext *s = inlink->dst->priv;
  82. int plane, x, y, xb = s->x, yb = s->y;
  83. unsigned char *row[4];
  84. for (y = FFMAX(yb, 0); y < frame->height && y < (yb + s->h); y++) {
  85. row[0] = frame->data[0] + y * frame->linesize[0];
  86. for (plane = 1; plane < 3; plane++)
  87. row[plane] = frame->data[plane] +
  88. frame->linesize[plane] * (y >> s->vsub);
  89. for (x = FFMAX(xb, 0); x < (xb + s->w) && x < frame->width; x++) {
  90. double alpha = (double)s->yuv_color[A] / 255;
  91. if ((y - yb < 3) || (yb + s->h - y < 4) ||
  92. (x - xb < 3) || (xb + s->w - x < 4)) {
  93. row[0][x ] = (1 - alpha) * row[0][x ] + alpha * s->yuv_color[Y];
  94. row[1][x >> s->hsub] = (1 - alpha) * row[1][x >> s->hsub] + alpha * s->yuv_color[U];
  95. row[2][x >> s->hsub] = (1 - alpha) * row[2][x >> s->hsub] + alpha * s->yuv_color[V];
  96. }
  97. }
  98. }
  99. return ff_filter_frame(inlink->dst->outputs[0], frame);
  100. }
  101. #define OFFSET(x) offsetof(DrawBoxContext, x)
  102. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM
  103. static const AVOption options[] = {
  104. { "x", "Horizontal position of the left box edge", OFFSET(x), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FLAGS },
  105. { "y", "Vertical position of the top box edge", OFFSET(y), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FLAGS },
  106. { "width", "Width of the box", OFFSET(w_opt), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
  107. { "height", "Height of the box", OFFSET(h_opt), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
  108. { "color", "Color of the box", OFFSET(color_str), AV_OPT_TYPE_STRING, { .str = "black" }, .flags = FLAGS },
  109. { NULL },
  110. };
  111. static const AVClass drawbox_class = {
  112. .class_name = "drawbox",
  113. .item_name = av_default_item_name,
  114. .option = options,
  115. .version = LIBAVUTIL_VERSION_INT,
  116. };
  117. static const AVFilterPad avfilter_vf_drawbox_inputs[] = {
  118. {
  119. .name = "default",
  120. .type = AVMEDIA_TYPE_VIDEO,
  121. .config_props = config_input,
  122. .get_video_buffer = ff_null_get_video_buffer,
  123. .filter_frame = filter_frame,
  124. .needs_writable = 1,
  125. },
  126. { NULL }
  127. };
  128. static const AVFilterPad avfilter_vf_drawbox_outputs[] = {
  129. {
  130. .name = "default",
  131. .type = AVMEDIA_TYPE_VIDEO,
  132. },
  133. { NULL }
  134. };
  135. AVFilter ff_vf_drawbox = {
  136. .name = "drawbox",
  137. .description = NULL_IF_CONFIG_SMALL("Draw a colored box on the input video."),
  138. .priv_size = sizeof(DrawBoxContext),
  139. .priv_class = &drawbox_class,
  140. .init = init,
  141. .query_formats = query_formats,
  142. .inputs = avfilter_vf_drawbox_inputs,
  143. .outputs = avfilter_vf_drawbox_outputs,
  144. };