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.

187 lines
6.5KB

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