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.

158 lines
5.2KB

  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/pixdesc.h"
  28. #include "libavutil/parseutils.h"
  29. #include "avfilter.h"
  30. #include "formats.h"
  31. #include "internal.h"
  32. #include "video.h"
  33. enum { Y, U, V, A };
  34. typedef struct {
  35. int x, y, w, h;
  36. unsigned char yuv_color[4];
  37. int vsub, hsub; ///< chroma subsampling
  38. } DrawBoxContext;
  39. static av_cold int init(AVFilterContext *ctx, const char *args)
  40. {
  41. DrawBoxContext *drawbox= ctx->priv;
  42. char color_str[1024] = "black";
  43. uint8_t rgba_color[4];
  44. drawbox->x = drawbox->y = drawbox->w = drawbox->h = 0;
  45. if (args)
  46. sscanf(args, "%d:%d:%d:%d:%s",
  47. &drawbox->x, &drawbox->y, &drawbox->w, &drawbox->h, color_str);
  48. if (av_parse_color(rgba_color, color_str, -1, ctx) < 0)
  49. return AVERROR(EINVAL);
  50. drawbox->yuv_color[Y] = RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
  51. drawbox->yuv_color[U] = RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  52. drawbox->yuv_color[V] = RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  53. drawbox->yuv_color[A] = rgba_color[3];
  54. return 0;
  55. }
  56. static int query_formats(AVFilterContext *ctx)
  57. {
  58. enum AVPixelFormat pix_fmts[] = {
  59. AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
  60. AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
  61. AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P,
  62. AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
  63. AV_PIX_FMT_NONE
  64. };
  65. ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
  66. return 0;
  67. }
  68. static int config_input(AVFilterLink *inlink)
  69. {
  70. DrawBoxContext *drawbox = inlink->dst->priv;
  71. const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
  72. drawbox->hsub = desc->log2_chroma_w;
  73. drawbox->vsub = desc->log2_chroma_h;
  74. if (drawbox->w == 0) drawbox->w = inlink->w;
  75. if (drawbox->h == 0) drawbox->h = inlink->h;
  76. av_log(inlink->dst, AV_LOG_VERBOSE, "x:%d y:%d w:%d h:%d color:0x%02X%02X%02X%02X\n",
  77. drawbox->w, drawbox->y, drawbox->w, drawbox->h,
  78. drawbox->yuv_color[Y], drawbox->yuv_color[U], drawbox->yuv_color[V], drawbox->yuv_color[A]);
  79. return 0;
  80. }
  81. static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *frame)
  82. {
  83. DrawBoxContext *drawbox = inlink->dst->priv;
  84. int plane, x, y, xb = drawbox->x, yb = drawbox->y;
  85. unsigned char *row[4];
  86. for (y = FFMAX(yb, 0); y < frame->video->h && y < (yb + drawbox->h); y++) {
  87. row[0] = frame->data[0] + y * frame->linesize[0];
  88. for (plane = 1; plane < 3; plane++)
  89. row[plane] = frame->data[plane] +
  90. frame->linesize[plane] * (y >> drawbox->vsub);
  91. for (x = FFMAX(xb, 0); x < (xb + drawbox->w) && x < frame->video->w; x++) {
  92. double alpha = (double)drawbox->yuv_color[A] / 255;
  93. if ((y - yb < 3) || (yb + drawbox->h - y < 4) ||
  94. (x - xb < 3) || (xb + drawbox->w - x < 4)) {
  95. row[0][x ] = (1 - alpha) * row[0][x ] + alpha * drawbox->yuv_color[Y];
  96. row[1][x >> drawbox->hsub] = (1 - alpha) * row[1][x >> drawbox->hsub] + alpha * drawbox->yuv_color[U];
  97. row[2][x >> drawbox->hsub] = (1 - alpha) * row[2][x >> drawbox->hsub] + alpha * drawbox->yuv_color[V];
  98. }
  99. }
  100. }
  101. return ff_filter_frame(inlink->dst->outputs[0], frame);
  102. }
  103. static const AVFilterPad avfilter_vf_drawbox_inputs[] = {
  104. {
  105. .name = "default",
  106. .type = AVMEDIA_TYPE_VIDEO,
  107. .config_props = config_input,
  108. .get_video_buffer = ff_null_get_video_buffer,
  109. .filter_frame = filter_frame,
  110. .min_perms = AV_PERM_WRITE | AV_PERM_READ,
  111. .rej_perms = AV_PERM_PRESERVE
  112. },
  113. { NULL }
  114. };
  115. static const AVFilterPad avfilter_vf_drawbox_outputs[] = {
  116. {
  117. .name = "default",
  118. .type = AVMEDIA_TYPE_VIDEO,
  119. },
  120. { NULL }
  121. };
  122. AVFilter avfilter_vf_drawbox = {
  123. .name = "drawbox",
  124. .description = NULL_IF_CONFIG_SMALL("Draw a colored box on the input video."),
  125. .priv_size = sizeof(DrawBoxContext),
  126. .init = init,
  127. .query_formats = query_formats,
  128. .inputs = avfilter_vf_drawbox_inputs,
  129. .outputs = avfilter_vf_drawbox_outputs,
  130. };