2010-09-28 16:16:40 +03:00
|
|
|
/*
|
2010-11-28 12:22:58 +02:00
|
|
|
* Copyright (c) 2008 Affine Systems, Inc (Michael Sullivan, Bobby Impollonia)
|
2010-09-28 16:16:40 +03:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Box drawing filter. Also a nice template for a filter that needs to
|
|
|
|
* write in the input frame.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libavutil/colorspace.h"
|
2012-08-06 16:49:32 +03:00
|
|
|
#include "libavutil/common.h"
|
2012-10-30 21:42:40 +03:00
|
|
|
#include "libavutil/opt.h"
|
2010-09-28 16:16:40 +03:00
|
|
|
#include "libavutil/pixdesc.h"
|
2011-02-07 15:37:08 +02:00
|
|
|
#include "libavutil/parseutils.h"
|
2010-09-28 16:16:40 +03:00
|
|
|
#include "avfilter.h"
|
2012-05-30 11:12:55 +03:00
|
|
|
#include "formats.h"
|
2012-06-12 21:12:42 +03:00
|
|
|
#include "internal.h"
|
2012-05-19 11:37:56 +03:00
|
|
|
#include "video.h"
|
2010-09-28 16:16:40 +03:00
|
|
|
|
|
|
|
enum { Y, U, V, A };
|
|
|
|
|
|
|
|
typedef struct {
|
2012-10-30 21:42:40 +03:00
|
|
|
const AVClass *class;
|
2010-09-28 16:16:40 +03:00
|
|
|
int x, y, w, h;
|
2012-10-30 21:42:40 +03:00
|
|
|
char *color_str;
|
2010-09-28 16:16:40 +03:00
|
|
|
unsigned char yuv_color[4];
|
2012-10-30 22:14:07 +03:00
|
|
|
int invert_color; ///< invert luma color
|
2011-08-05 14:15:04 +03:00
|
|
|
int vsub, hsub; ///< chroma subsampling
|
2010-09-28 16:16:40 +03:00
|
|
|
} DrawBoxContext;
|
|
|
|
|
2012-10-30 21:42:40 +03:00
|
|
|
#define OFFSET(x) offsetof(DrawBoxContext, x)
|
|
|
|
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
|
|
|
|
|
|
|
|
static const AVOption drawbox_options[] = {
|
|
|
|
{ "x", "set the box top-left corner x position", OFFSET(x), AV_OPT_TYPE_INT, {.i64=0}, INT_MIN, INT_MAX, FLAGS },
|
|
|
|
{ "y", "set the box top-left corner y position", OFFSET(y), AV_OPT_TYPE_INT, {.i64=0}, INT_MIN, INT_MAX, FLAGS },
|
|
|
|
{ "w", "set the box width", OFFSET(w), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, FLAGS },
|
|
|
|
{ "h", "set the box heigth", OFFSET(h), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, FLAGS },
|
|
|
|
{ "color", "set the box edge color", OFFSET(color_str), AV_OPT_TYPE_STRING, {.str="black"}, CHAR_MIN, CHAR_MAX, FLAGS },
|
|
|
|
{ "c", "set the box edge color", OFFSET(color_str), AV_OPT_TYPE_STRING, {.str="black"}, CHAR_MIN, CHAR_MAX, FLAGS },
|
|
|
|
{NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
AVFILTER_DEFINE_CLASS(drawbox);
|
|
|
|
|
2012-06-21 08:55:56 +03:00
|
|
|
static av_cold int init(AVFilterContext *ctx, const char *args)
|
2010-09-28 16:16:40 +03:00
|
|
|
{
|
2012-10-30 21:42:40 +03:00
|
|
|
DrawBoxContext *drawbox = ctx->priv;
|
2010-09-28 16:16:40 +03:00
|
|
|
uint8_t rgba_color[4];
|
2012-10-30 21:42:40 +03:00
|
|
|
static const char *shorthand[] = { "x", "y", "w", "h", "color", NULL };
|
|
|
|
int ret;
|
2010-09-28 16:16:40 +03:00
|
|
|
|
2012-10-30 21:42:40 +03:00
|
|
|
drawbox->class = &drawbox_class;
|
|
|
|
av_opt_set_defaults(drawbox);
|
2010-09-28 16:16:40 +03:00
|
|
|
|
2012-10-30 21:42:40 +03:00
|
|
|
if ((ret = av_opt_set_from_string(drawbox, args, shorthand, "=", ":")) < 0)
|
|
|
|
return ret;
|
2010-09-28 16:16:40 +03:00
|
|
|
|
2012-10-30 22:14:07 +03:00
|
|
|
if (!strcmp(drawbox->color_str, "invert"))
|
|
|
|
drawbox->invert_color = 1;
|
|
|
|
else if (av_parse_color(rgba_color, drawbox->color_str, -1, ctx) < 0)
|
2010-09-28 16:16:40 +03:00
|
|
|
return AVERROR(EINVAL);
|
|
|
|
|
|
|
|
drawbox->yuv_color[Y] = RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
|
|
|
|
drawbox->yuv_color[U] = RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
|
|
|
|
drawbox->yuv_color[V] = RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
|
|
|
|
drawbox->yuv_color[A] = rgba_color[3];
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-30 21:42:40 +03:00
|
|
|
static av_cold void uninit(AVFilterContext *ctx)
|
|
|
|
{
|
|
|
|
DrawBoxContext *drawbox = ctx->priv;
|
|
|
|
av_opt_free(drawbox);
|
|
|
|
}
|
|
|
|
|
2010-09-28 16:16:40 +03:00
|
|
|
static int query_formats(AVFilterContext *ctx)
|
|
|
|
{
|
2012-10-06 13:10:34 +03:00
|
|
|
enum AVPixelFormat pix_fmts[] = {
|
|
|
|
AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV420P,
|
|
|
|
AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV410P,
|
|
|
|
AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ422P, AV_PIX_FMT_YUVJ420P,
|
|
|
|
AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ440P,
|
|
|
|
AV_PIX_FMT_NONE
|
2010-09-28 16:16:40 +03:00
|
|
|
};
|
|
|
|
|
2012-05-30 11:12:55 +03:00
|
|
|
ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
|
2010-09-28 16:16:40 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int config_input(AVFilterLink *inlink)
|
|
|
|
{
|
|
|
|
DrawBoxContext *drawbox = inlink->dst->priv;
|
2012-10-06 14:29:37 +03:00
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
|
2010-09-28 16:16:40 +03:00
|
|
|
|
2012-10-06 14:29:37 +03:00
|
|
|
drawbox->hsub = desc->log2_chroma_w;
|
|
|
|
drawbox->vsub = desc->log2_chroma_h;
|
2010-09-28 16:16:40 +03:00
|
|
|
|
|
|
|
if (drawbox->w == 0) drawbox->w = inlink->w;
|
|
|
|
if (drawbox->h == 0) drawbox->h = inlink->h;
|
|
|
|
|
2012-06-25 07:31:38 +03:00
|
|
|
av_log(inlink->dst, AV_LOG_VERBOSE, "x:%d y:%d w:%d h:%d color:0x%02X%02X%02X%02X\n",
|
2012-04-14 00:11:39 +03:00
|
|
|
drawbox->x, drawbox->y, drawbox->w, drawbox->h,
|
2010-09-28 16:16:40 +03:00
|
|
|
drawbox->yuv_color[Y], drawbox->yuv_color[U], drawbox->yuv_color[V], drawbox->yuv_color[A]);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-14 10:25:33 +03:00
|
|
|
static int draw_slice(AVFilterLink *inlink, int y0, int h, int slice_dir)
|
2010-09-28 16:16:40 +03:00
|
|
|
{
|
|
|
|
DrawBoxContext *drawbox = inlink->dst->priv;
|
|
|
|
int plane, x, y, xb = drawbox->x, yb = drawbox->y;
|
|
|
|
unsigned char *row[4];
|
|
|
|
AVFilterBufferRef *picref = inlink->cur_buf;
|
|
|
|
|
|
|
|
for (y = FFMAX(yb, y0); y < (y0 + h) && y < (yb + drawbox->h); y++) {
|
|
|
|
row[0] = picref->data[0] + y * picref->linesize[0];
|
|
|
|
|
|
|
|
for (plane = 1; plane < 3; plane++)
|
|
|
|
row[plane] = picref->data[plane] +
|
|
|
|
picref->linesize[plane] * (y >> drawbox->vsub);
|
|
|
|
|
2012-10-30 22:14:07 +03:00
|
|
|
if (drawbox->invert_color) {
|
|
|
|
for (x = FFMAX(xb, 0); x < (xb + drawbox->w) && x < picref->video->w; x++)
|
|
|
|
if ((y - yb < 3) || (yb + drawbox->h - y < 4) ||
|
|
|
|
(x - xb < 3) || (xb + drawbox->w - x < 4))
|
|
|
|
row[0][x] = 0xff - row[0][x];
|
|
|
|
} else {
|
2010-09-28 16:16:40 +03:00
|
|
|
for (x = FFMAX(xb, 0); x < (xb + drawbox->w) && x < picref->video->w; x++) {
|
|
|
|
double alpha = (double)drawbox->yuv_color[A] / 255;
|
|
|
|
|
|
|
|
if ((y - yb < 3) || (yb + drawbox->h - y < 4) ||
|
|
|
|
(x - xb < 3) || (xb + drawbox->w - x < 4)) {
|
|
|
|
row[0][x ] = (1 - alpha) * row[0][x ] + alpha * drawbox->yuv_color[Y];
|
|
|
|
row[1][x >> drawbox->hsub] = (1 - alpha) * row[1][x >> drawbox->hsub] + alpha * drawbox->yuv_color[U];
|
|
|
|
row[2][x >> drawbox->hsub] = (1 - alpha) * row[2][x >> drawbox->hsub] + alpha * drawbox->yuv_color[V];
|
|
|
|
}
|
|
|
|
}
|
2012-10-30 22:14:07 +03:00
|
|
|
}
|
2010-09-28 16:16:40 +03:00
|
|
|
}
|
|
|
|
|
2012-07-14 10:25:33 +03:00
|
|
|
return ff_draw_slice(inlink->dst->outputs[0], y0, h, 1);
|
2010-09-28 16:16:40 +03:00
|
|
|
}
|
|
|
|
|
2012-07-24 16:14:01 +03:00
|
|
|
static const AVFilterPad avfilter_vf_drawbox_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.config_props = config_input,
|
|
|
|
.get_video_buffer = ff_null_get_video_buffer,
|
|
|
|
.start_frame = ff_null_start_frame,
|
|
|
|
.draw_slice = draw_slice,
|
|
|
|
.end_frame = ff_null_end_frame,
|
|
|
|
.min_perms = AV_PERM_WRITE | AV_PERM_READ,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVFilterPad avfilter_vf_drawbox_outputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2010-09-28 16:16:40 +03:00
|
|
|
AVFilter avfilter_vf_drawbox = {
|
|
|
|
.name = "drawbox",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Draw a colored box on the input video."),
|
|
|
|
.priv_size = sizeof(DrawBoxContext),
|
|
|
|
.init = init,
|
2012-10-30 21:42:40 +03:00
|
|
|
.uninit = uninit,
|
2010-09-28 16:16:40 +03:00
|
|
|
|
|
|
|
.query_formats = query_formats,
|
2012-07-24 16:14:01 +03:00
|
|
|
.inputs = avfilter_vf_drawbox_inputs,
|
|
|
|
.outputs = avfilter_vf_drawbox_outputs,
|
2012-10-30 21:42:40 +03:00
|
|
|
.priv_class = &drawbox_class,
|
2010-09-28 16:16:40 +03:00
|
|
|
};
|