FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
vf_removelogo.c File Reference

Advanced blur-based logo removing filter. More...

#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
#include "bbox.h"
#include "lavfutils.h"
#include "lswsutils.h"

Go to the source code of this file.

Data Structures

struct  RemovelogoContext
 This code implements a filter to remove annoying TV logos and other annoying images placed onto a video stream. More...
 

Macros

#define OFFSET(x)   offsetof(RemovelogoContext, x)
 
#define FLAGS   AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 
#define apply_mask_fudge_factor(x)   (((x) >> 2) + (x))
 Choose a slightly larger mask size to improve performance. More...
 
#define SHOW_LOGO_INFO(mask_type)
 

Functions

 AVFILTER_DEFINE_CLASS (removelogo)
 
static void convert_mask_to_strength_mask (uint8_t *data, int linesize, int w, int h, int min_val, int *max_mask_size)
 Pre-process an image to give distance information. More...
 
static int query_formats (AVFilterContext *ctx)
 
static int load_mask (uint8_t **mask, int *w, int *h, const char *filename, void *log_ctx)
 
static void generate_half_size_image (const uint8_t *src_data, int src_linesize, uint8_t *dst_data, int dst_linesize, int src_w, int src_h, int *max_mask_size)
 Generate a scaled down image with half width, height, and intensity. More...
 
static av_cold int init (AVFilterContext *ctx)
 
static int config_props_input (AVFilterLink *inlink)
 
static unsigned int blur_pixel (int ***mask, const uint8_t *mask_data, int mask_linesize, uint8_t *image_data, int image_linesize, int w, int h, int x, int y)
 Blur image. More...
 
static void blur_image (int ***mask, const uint8_t *src_data, int src_linesize, uint8_t *dst_data, int dst_linesize, const uint8_t *mask_data, int mask_linesize, int w, int h, int direct, FFBoundingBox *bbox)
 Blur image plane using a mask. More...
 
static int filter_frame (AVFilterLink *inlink, AVFrame *inpicref)
 
static av_cold void uninit (AVFilterContext *ctx)
 

Variables

static const AVOption removelogo_options []
 
static const AVFilterPad removelogo_inputs []
 
static const AVFilterPad removelogo_outputs []
 
AVFilter ff_vf_removelogo
 

Detailed Description

Advanced blur-based logo removing filter.

This filter loads an image mask file showing where a logo is and uses a blur transform to remove the logo.

Based on the libmpcodecs remove-logo filter by Robert Edele.

Definition in file vf_removelogo.c.

Macro Definition Documentation

#define OFFSET (   x)    offsetof(RemovelogoContext, x)

Definition at line 97 of file vf_removelogo.c.

Definition at line 98 of file vf_removelogo.c.

#define apply_mask_fudge_factor (   x)    (((x) >> 2) + (x))

Choose a slightly larger mask size to improve performance.

This function maps the absolute minimum mask size needed to the mask size we'll actually use. f(x) = x (the smallest that will work) will produce the sharpest results, but will be quite jittery. f(x) = 1.25x (what I'm using) is a good tradeoff in my opinion. This will calculate only at init-time, so you can put a long expression here without effecting performance.

Definition at line 117 of file vf_removelogo.c.

Referenced by convert_mask_to_strength_mask().

#define SHOW_LOGO_INFO (   mask_type)
Value:
av_log(ctx, AV_LOG_VERBOSE, #mask_type " x1:%d x2:%d y1:%d y2:%d max_mask_size:%d\n", \
s->mask_type##_mask_bbox.x1, s->mask_type##_mask_bbox.x2, \
s->mask_type##_mask_bbox.y1, s->mask_type##_mask_bbox.y2, \
mask_type##_max_mask_size);
const char * s
Definition: avisynth_c.h:768
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
mask_type
Definition: iff.c:39
#define av_log(a,...)
AVFormatContext * ctx
Definition: movenc.c:48

Referenced by init().

Function Documentation

AVFILTER_DEFINE_CLASS ( removelogo  )
static void convert_mask_to_strength_mask ( uint8_t data,
int  linesize,
int  w,
int  h,
int  min_val,
int *  max_mask_size 
)
static

Pre-process an image to give distance information.

This function takes a bitmap image and converts it in place into a distance image. A distance image is zero for pixels outside of the logo and is the Manhattan distance (|dx| + |dy|) from the logo edge for pixels inside of the logo. This will overestimate the distance, but that is safe, and is far easier to implement than a proper pythagorean distance since I'm using a modified erosion algorithm to compute the distances.

Parameters
maskimage which will be converted from a greyscale image into a distance image.

Definition at line 133 of file vf_removelogo.c.

Referenced by generate_half_size_image(), and init().

static int query_formats ( AVFilterContext ctx)
static

Definition at line 206 of file vf_removelogo.c.

static int load_mask ( uint8_t **  mask,
int *  w,
int *  h,
const char *  filename,
void log_ctx 
)
static

Definition at line 215 of file vf_removelogo.c.

Referenced by init().

static void generate_half_size_image ( const uint8_t src_data,
int  src_linesize,
uint8_t dst_data,
int  dst_linesize,
int  src_w,
int  src_h,
int *  max_mask_size 
)
static

Generate a scaled down image with half width, height, and intensity.

This function not only scales down an image, but halves the value in each pixel too. The purpose of this is to produce a chroma filter image out of a luma filter image. The pixel values store the distance to the edge of the logo and halving the dimensions halves the distance. This function rounds up, because a downwards rounding error could cause the filter to fail, but an upwards rounding error will only cause a minor amount of excess blur in the chroma planes.

Definition at line 256 of file vf_removelogo.c.

Referenced by init().

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 282 of file vf_removelogo.c.

static int config_props_input ( AVFilterLink inlink)
static

Definition at line 359 of file vf_removelogo.c.

static unsigned int blur_pixel ( int ***  mask,
const uint8_t mask_data,
int  mask_linesize,
uint8_t image_data,
int  image_linesize,
int  w,
int  h,
int  x,
int  y 
)
static

Blur image.

It takes a pixel that is inside the mask and blurs it. It does so by finding the average of all the pixels within the mask and outside of the mask.

Parameters
mask_datathe mask plane to use for averaging
image_datathe image plane to blur
wwidth of the image
hheight of the image
xx-coordinate of the pixel to blur
yy-coordinate of the pixel to blur

Definition at line 388 of file vf_removelogo.c.

Referenced by blur_image().

static void blur_image ( int ***  mask,
const uint8_t src_data,
int  src_linesize,
uint8_t dst_data,
int  dst_linesize,
const uint8_t mask_data,
int  mask_linesize,
int  w,
int  h,
int  direct,
FFBoundingBox bbox 
)
static

Blur image plane using a mask.

Parameters
sourceThe image to have it's logo removed.
destinationWhere the output image will be stored.
source_strideHow far apart (in memory) two consecutive lines are.
destinationSame as source_stride, but for the destination image.
widthWidth of the image. This is the same for source and destination.
heightHeight of the image. This is the same for source and destination.
is_image_directIf the image is direct, then source and destination are the same and we can save a lot of time by not copying pixels that haven't changed.
filterThe image that stores the distance to the edge of the logo for each pixel.
logo_start_xsmallest x-coordinate that contains at least 1 logo pixel.
logo_start_ysmallest y-coordinate that contains at least 1 logo pixel.
logo_end_xlargest x-coordinate that contains at least 1 logo pixel.
logo_end_ylargest y-coordinate that contains at least 1 logo pixel.

This function processes an entire plane. Pixels outside of the logo are copied to the output without change, and pixels inside the logo have the de-blurring function applied.

Definition at line 461 of file vf_removelogo.c.

Referenced by filter_frame().

static int filter_frame ( AVFilterLink inlink,
AVFrame inpicref 
)
static

Definition at line 495 of file vf_removelogo.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 536 of file vf_removelogo.c.

Variable Documentation

const AVOption removelogo_options[]
static
Initial value:
= {
{ "filename", "set bitmap filename", OFFSET(filename), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
{ "f", "set bitmap filename", OFFSET(filename), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
{ NULL }
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
Definition: vf_removelogo.c:97
#define FLAGS
Definition: vf_removelogo.c:98

Definition at line 99 of file vf_removelogo.c.

const AVFilterPad removelogo_inputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_props_input,
.filter_frame = filter_frame,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
static int config_props_input(AVFilterLink *inlink)

Definition at line 558 of file vf_removelogo.c.

const AVFilterPad removelogo_outputs[]
static
Initial value:
= {
{
.name = "default",
},
{ NULL }
}
#define NULL
Definition: coverity.c:32

Definition at line 568 of file vf_removelogo.c.

AVFilter ff_vf_removelogo
Initial value:
= {
.name = "removelogo",
.description = NULL_IF_CONFIG_SMALL("Remove a TV logo based on a mask image."),
.priv_size = sizeof(RemovelogoContext),
.init = init,
.priv_class = &removelogo_class,
}
This code implements a filter to remove annoying TV logos and other annoying images placed onto a vid...
Definition: vf_removelogo.c:82
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:125
static av_cold void uninit(AVFilterContext *ctx)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static const AVFilterPad removelogo_outputs[]
static av_cold int init(AVFilterContext *ctx)
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:386
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:376
static const AVFilterPad removelogo_inputs[]
static int flags
Definition: cpu.c:47
static int query_formats(AVFilterContext *ctx)

Definition at line 576 of file vf_removelogo.c.