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.

185 lines
7.3KB

  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/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 {
  36. const AVClass *class;
  37. int x, y, w, h, thickness;
  38. char *color_str;
  39. unsigned char yuv_color[4];
  40. int invert_color; ///< invert luma color
  41. int vsub, hsub; ///< chroma subsampling
  42. } DrawBoxContext;
  43. static av_cold int init(AVFilterContext *ctx)
  44. {
  45. DrawBoxContext *drawbox = ctx->priv;
  46. uint8_t rgba_color[4];
  47. if (!strcmp(drawbox->color_str, "invert"))
  48. drawbox->invert_color = 1;
  49. else if (av_parse_color(rgba_color, drawbox->color_str, -1, ctx) < 0)
  50. return AVERROR(EINVAL);
  51. if (!drawbox->invert_color) {
  52. drawbox->yuv_color[Y] = RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
  53. drawbox->yuv_color[U] = RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  54. drawbox->yuv_color[V] = RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  55. drawbox->yuv_color[A] = rgba_color[3];
  56. }
  57. return 0;
  58. }
  59. static int query_formats(AVFilterContext *ctx)
  60. {
  61. static const enum AVPixelFormat pix_fmts[] = {
  62. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  63. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  64. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P,
  65. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
  66. AV_PIX_FMT_NONE
  67. };
  68. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  69. return 0;
  70. }
  71. static int config_input(AVFilterLink *inlink)
  72. {
  73. DrawBoxContext *drawbox = inlink->dst->priv;
  74. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  75. drawbox->hsub = desc->log2_chroma_w;
  76. drawbox->vsub = desc->log2_chroma_h;
  77. if (drawbox->w == 0) drawbox->w = inlink->w;
  78. if (drawbox->h == 0) drawbox->h = inlink->h;
  79. av_log(inlink->dst, AV_LOG_VERBOSE, "x:%d y:%d w:%d h:%d color:0x%02X%02X%02X%02X\n",
  80. drawbox->x, drawbox->y, drawbox->w, drawbox->h,
  81. drawbox->yuv_color[Y], drawbox->yuv_color[U], drawbox->yuv_color[V], drawbox->yuv_color[A]);
  82. return 0;
  83. }
  84. static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
  85. {
  86. DrawBoxContext *drawbox = inlink->dst->priv;
  87. int plane, x, y, xb = drawbox->x, yb = drawbox->y;
  88. unsigned char *row[4];
  89. for (y = FFMAX(yb, 0); y < frame->height && y < (yb + drawbox->h); y++) {
  90. row[0] = frame->data[0] + y * frame->linesize[0];
  91. for (plane = 1; plane < 3; plane++)
  92. row[plane] = frame->data[plane] +
  93. frame->linesize[plane] * (y >> drawbox->vsub);
  94. if (drawbox->invert_color) {
  95. for (x = FFMAX(xb, 0); x < xb + drawbox->w && x < frame->width; x++)
  96. if ((y - yb < drawbox->thickness-1) || (yb + drawbox->h - y < drawbox->thickness) ||
  97. (x - xb < drawbox->thickness-1) || (xb + drawbox->w - x < drawbox->thickness))
  98. row[0][x] = 0xff - row[0][x];
  99. } else {
  100. for (x = FFMAX(xb, 0); x < xb + drawbox->w && x < frame->width; x++) {
  101. double alpha = (double)drawbox->yuv_color[A] / 255;
  102. if ((y - yb < drawbox->thickness-1) || (yb + drawbox->h - y < drawbox->thickness) ||
  103. (x - xb < drawbox->thickness-1) || (xb + drawbox->w - x < drawbox->thickness)) {
  104. row[0][x ] = (1 - alpha) * row[0][x ] + alpha * drawbox->yuv_color[Y];
  105. row[1][x >> drawbox->hsub] = (1 - alpha) * row[1][x >> drawbox->hsub] + alpha * drawbox->yuv_color[U];
  106. row[2][x >> drawbox->hsub] = (1 - alpha) * row[2][x >> drawbox->hsub] + alpha * drawbox->yuv_color[V];
  107. }
  108. }
  109. }
  110. }
  111. return ff_filter_frame(inlink->dst->outputs[0], frame);
  112. }
  113. #define OFFSET(x) offsetof(DrawBoxContext, x)
  114. #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
  115. static const AVOption drawbox_options[] = {
  116. { "x", "Horizontal position of the left box edge", OFFSET(x), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FLAGS },
  117. { "y", "Vertical position of the top box edge", OFFSET(y), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FLAGS },
  118. { "width", "Width of the box", OFFSET(w), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
  119. { "w", "Width of the box", OFFSET(w), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
  120. { "height", "Height of the box", OFFSET(h), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
  121. { "h", "Height of the box", OFFSET(h), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
  122. { "color", "Color of the box", OFFSET(color_str), AV_OPT_TYPE_STRING, { .str = "black" }, CHAR_MIN, CHAR_MAX, .flags = FLAGS },
  123. { "c", "Color of the box", OFFSET(color_str), AV_OPT_TYPE_STRING, { .str = "black" }, CHAR_MIN, CHAR_MAX, .flags = FLAGS },
  124. { "thickness", "set the box maximum thickness", OFFSET(thickness), AV_OPT_TYPE_INT, {.i64=4}, 0, INT_MAX, FLAGS },
  125. { "t", "set the box maximum thickness", OFFSET(thickness), AV_OPT_TYPE_INT, {.i64=4}, 0, INT_MAX, FLAGS },
  126. { NULL },
  127. };
  128. AVFILTER_DEFINE_CLASS(drawbox);
  129. static const AVFilterPad avfilter_vf_drawbox_inputs[] = {
  130. {
  131. .name = "default",
  132. .type = AVMEDIA_TYPE_VIDEO,
  133. .config_props = config_input,
  134. .get_video_buffer = ff_null_get_video_buffer,
  135. .filter_frame = filter_frame,
  136. .needs_writable = 1,
  137. },
  138. { NULL }
  139. };
  140. static const AVFilterPad avfilter_vf_drawbox_outputs[] = {
  141. {
  142. .name = "default",
  143. .type = AVMEDIA_TYPE_VIDEO,
  144. },
  145. { NULL }
  146. };
  147. AVFilter avfilter_vf_drawbox = {
  148. .name = "drawbox",
  149. .description = NULL_IF_CONFIG_SMALL("Draw a colored box on the input video."),
  150. .priv_size = sizeof(DrawBoxContext),
  151. .priv_class = &drawbox_class,
  152. .init = init,
  153. .query_formats = query_formats,
  154. .inputs = avfilter_vf_drawbox_inputs,
  155. .outputs = avfilter_vf_drawbox_outputs,
  156. };