Libav
vf_drawbox.c
Go to the documentation of this file.
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 
27 #include "libavutil/colorspace.h"
28 #include "libavutil/common.h"
29 #include "libavutil/opt.h"
30 #include "libavutil/pixdesc.h"
31 #include "libavutil/parseutils.h"
32 #include "avfilter.h"
33 #include "formats.h"
34 #include "internal.h"
35 #include "video.h"
36 
37 enum { Y, U, V, A };
38 
39 typedef struct DrawBoxContext {
40  const AVClass *class;
41  int x, y, w_opt, h_opt, w, h;
42  char *color_str;
43  unsigned char yuv_color[4];
44  int vsub, hsub;
46 
47 static av_cold int init(AVFilterContext *ctx)
48 {
49  DrawBoxContext *s = ctx->priv;
50  uint8_t rgba_color[4];
51 
52  if (av_parse_color(rgba_color, s->color_str, -1, ctx) < 0)
53  return AVERROR(EINVAL);
54 
55  s->yuv_color[Y] = RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
56  s->yuv_color[U] = RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
57  s->yuv_color[V] = RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
58  s->yuv_color[A] = rgba_color[3];
59 
60  return 0;
61 }
62 
64 {
65  enum AVPixelFormat pix_fmts[] = {
71  };
72 
74  return 0;
75 }
76 
77 static int config_input(AVFilterLink *inlink)
78 {
79  DrawBoxContext *s = inlink->dst->priv;
80  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
81 
82  s->hsub = desc->log2_chroma_w;
83  s->vsub = desc->log2_chroma_h;
84 
85  s->w = (s->w_opt > 0) ? s->w_opt : inlink->w;
86  s->h = (s->h_opt > 0) ? s->h_opt : inlink->h;
87 
88  av_log(inlink->dst, AV_LOG_VERBOSE, "x:%d y:%d w:%d h:%d color:0x%02X%02X%02X%02X\n",
89  s->w, s->y, s->w, s->h,
90  s->yuv_color[Y], s->yuv_color[U], s->yuv_color[V], s->yuv_color[A]);
91 
92  return 0;
93 }
94 
95 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
96 {
97  DrawBoxContext *s = inlink->dst->priv;
98  int plane, x, y, xb = s->x, yb = s->y;
99  unsigned char *row[4];
100 
101  for (y = FFMAX(yb, 0); y < frame->height && y < (yb + s->h); y++) {
102  row[0] = frame->data[0] + y * frame->linesize[0];
103 
104  for (plane = 1; plane < 3; plane++)
105  row[plane] = frame->data[plane] +
106  frame->linesize[plane] * (y >> s->vsub);
107 
108  for (x = FFMAX(xb, 0); x < (xb + s->w) && x < frame->width; x++) {
109  double alpha = (double)s->yuv_color[A] / 255;
110 
111  if ((y - yb < 3) || (yb + s->h - y < 4) ||
112  (x - xb < 3) || (xb + s->w - x < 4)) {
113  row[0][x ] = (1 - alpha) * row[0][x ] + alpha * s->yuv_color[Y];
114  row[1][x >> s->hsub] = (1 - alpha) * row[1][x >> s->hsub] + alpha * s->yuv_color[U];
115  row[2][x >> s->hsub] = (1 - alpha) * row[2][x >> s->hsub] + alpha * s->yuv_color[V];
116  }
117  }
118  }
119 
120  return ff_filter_frame(inlink->dst->outputs[0], frame);
121 }
122 
123 #define OFFSET(x) offsetof(DrawBoxContext, x)
124 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM
125 static const AVOption options[] = {
126  { "x", "Horizontal position of the left box edge", OFFSET(x), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FLAGS },
127  { "y", "Vertical position of the top box edge", OFFSET(y), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, FLAGS },
128  { "width", "Width of the box", OFFSET(w_opt), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
129  { "height", "Height of the box", OFFSET(h_opt), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS },
130  { "color", "Color of the box", OFFSET(color_str), AV_OPT_TYPE_STRING, { .str = "black" }, .flags = FLAGS },
131  { NULL },
132 };
133 
134 static const AVClass drawbox_class = {
135  .class_name = "drawbox",
136  .item_name = av_default_item_name,
137  .option = options,
138  .version = LIBAVUTIL_VERSION_INT,
139 };
140 
142  {
143  .name = "default",
144  .type = AVMEDIA_TYPE_VIDEO,
145  .config_props = config_input,
146  .get_video_buffer = ff_null_get_video_buffer,
147  .filter_frame = filter_frame,
148  .needs_writable = 1,
149  },
150  { NULL }
151 };
152 
154  {
155  .name = "default",
156  .type = AVMEDIA_TYPE_VIDEO,
157  },
158  { NULL }
159 };
160 
162  .name = "drawbox",
163  .description = NULL_IF_CONFIG_SMALL("Draw a colored box on the input video."),
164  .priv_size = sizeof(DrawBoxContext),
165  .priv_class = &drawbox_class,
166  .init = init,
167 
169  .inputs = avfilter_vf_drawbox_inputs,
170  .outputs = avfilter_vf_drawbox_outputs,
171 };
Definition: vf_drawbox.c:37
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:1599
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
AVOption.
Definition: opt.h:234
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:70
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:232
Main libavfilter public API header.
char * color_str
Definition: vf_drawbox.c:42
Various defines for YUV<->RGB conversion.
AVFrame * ff_null_get_video_buffer(AVFilterLink *link, int w, int h)
Definition: video.c:30
uint8_t log2_chroma_w
Amount to shift the luma width right to find the chroma width.
Definition: pixdesc.h:80
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:165
const char * name
Pad name.
Definition: internal.h:42
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:38
#define OFFSET(x)
Definition: vf_drawbox.c:123
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:733
uint8_t
#define av_cold
Definition: attributes.h:66
AVOptions.
static int query_formats(AVFilterContext *ctx)
Definition: vf_drawbox.c:63
#define FLAGS
Definition: vf_drawbox.c:124
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of PIX_FMT_YUV440P and setting color_range ...
Definition: pixfmt.h:103
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV422P and setting color_...
Definition: pixfmt.h:78
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:139
static const AVFilterPad avfilter_vf_drawbox_outputs[]
Definition: vf_drawbox.c:153
void ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:379
int av_parse_color(uint8_t *rgba_color, const char *color_string, int slen, void *log_ctx)
Put the RGBA values that correspond to color_string in rgba_color.
Definition: parseutils.c:300
A filter pad used for either input or output.
Definition: internal.h:36
Definition: vf_drawbox.c:37
static int config_input(AVFilterLink *inlink)
Definition: vf_drawbox.c:77
uint8_t log2_chroma_h
Amount to shift the luma height right to find the chroma height.
Definition: pixdesc.h:89
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:150
void * priv
private data for use by the filter
Definition: avfilter.h:584
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:168
#define FFMAX(a, b)
Definition: common.h:55
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:69
static const AVFilterPad avfilter_vf_drawbox_inputs[]
Definition: vf_drawbox.c:141
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV420P and setting color_...
Definition: pixfmt.h:77
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
Definition: vf_drawbox.c:37
if(ac->has_optimized_func)
NULL
Definition: eval.c:55
static int width
Definition: utils.c:156
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:153
av_default_item_name
Definition: dnxhdenc.c:52
static const AVOption options[]
Definition: vf_drawbox.c:125
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
int hsub
chroma subsampling
Definition: vf_drawbox.c:44
AVFilter ff_vf_drawbox
Definition: vf_drawbox.c:161
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition: pixfmt.h:71
Describe the class of an AVClass context structure.
Definition: log.h:33
Filter definition.
Definition: avfilter.h:421
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:221
const char * name
Filter name.
Definition: avfilter.h:425
misc parsing utilities
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:578
static const AVClass drawbox_class
Definition: vf_drawbox.c:134
#define RGB_TO_U_CCIR(r1, g1, b1, shift)
Definition: colorspace.h:103
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:141
#define RGB_TO_V_CCIR(r1, g1, b1, shift)
Definition: colorspace.h:107
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:65
common internal and external API header
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV444P and setting color_...
Definition: pixfmt.h:79
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:72
static av_cold int init(AVFilterContext *ctx)
Definition: vf_drawbox.c:47
#define RGB_TO_Y_CCIR(r, g, b)
Definition: colorspace.h:99
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: vf_drawbox.c:95
An instance of a filter.
Definition: avfilter.h:563
int height
Definition: frame.h:174
unsigned char yuv_color[4]
Definition: vf_drawbox.c:43
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
Definition: pixfmt.h:102
internal API functions
AVPixelFormat
Pixel format.
Definition: pixfmt.h:63
Definition: vf_drawbox.c:37