Go to the documentation of this file.
   97 #define OFFSET(x) offsetof(RemovelogoContext, x) 
   98 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM 
  117 #define apply_mask_fudge_factor(x) (((x) >> 2) + (x)) 
  134                                           int w, 
int h, 
int min_val,
 
  141     int current_pass = 0;
 
  144     for (y = 0; y < 
h; y++)
 
  145         for (x = 0; x < 
w; x++)
 
  146             data[y*linesize + x] = 
data[y*linesize + x] > min_val;
 
  156         int has_anything_changed = 0;
 
  157         uint8_t *current_pixel0 = 
data + 1 + linesize, *current_pixel;
 
  160         for (y = 1; y < 
h-1; y++) {
 
  161             current_pixel = current_pixel0;
 
  162             for (x = 1; x < 
w-1; x++) {
 
  174                 if ( *current_pixel      >= current_pass &&
 
  175                     *(current_pixel + 1) >= current_pass &&
 
  176                     *(current_pixel - 1) >= current_pass &&
 
  177                     *(current_pixel + linesize) >= current_pass &&
 
  178                     *(current_pixel - linesize) >= current_pass) {
 
  183                     has_anything_changed = 1;
 
  187             current_pixel0 += linesize;
 
  189         if (!has_anything_changed)
 
  195     for (y = 1; y < 
h - 1; y++)
 
  196         for (x = 1; x < 
w - 1; x++)
 
  207                      const char *filename, 
void *log_ctx)
 
  211     uint8_t *src_data[4], *gray_data[4];
 
  212     int src_linesize[4], gray_linesize[4];
 
  248                                      uint8_t *dst_data, 
int dst_linesize,
 
  249                                      int src_w, 
int src_h,
 
  256     for (y = 0; y < src_h/2; y++) {
 
  257         for (x = 0; x < src_w/2; x++) {
 
  260             dst_data[(y * dst_linesize) + x] =
 
  261                 src_data[((y << 1) * src_linesize) + (x << 1)] ||
 
  262                 src_data[((y << 1) * src_linesize) + (x << 1) + 1] ||
 
  263                 src_data[(((y << 1) + 1) * src_linesize) + (x << 1)] ||
 
  264                 src_data[(((y << 1) + 1) * src_linesize) + (x << 1) + 1];
 
  265             dst_data[(y * dst_linesize) + x] = 
FFMIN(1, dst_data[(y * dst_linesize) + x]);
 
  270                                   src_w/2, src_h/2, 0, max_mask_size);
 
  279     int full_max_mask_size, half_max_mask_size;
 
  293                                   16, &full_max_mask_size);
 
  299                              s->half_mask_data, 
w/2,
 
  300                              w, 
h, &half_max_mask_size);
 
  302     s->max_mask_size = 
FFMAX(full_max_mask_size, half_max_mask_size);
 
  312     for (
a = 0; 
a <= 
s->max_mask_size; 
a++) {
 
  318         for (
b = -
a; 
b <= 
a; 
b++) {
 
  324             for (
c = -
a; 
c <= 
a; 
c++) {
 
  325                 if ((
b * 
b) + (
c * 
c) <= (
a * 
a)) 
 
  339 #define SHOW_LOGO_INFO(mask_type)                                       \ 
  340     av_log(ctx, AV_LOG_VERBOSE, #mask_type " x1:%d x2:%d y1:%d y2:%d max_mask_size:%d\n", \ 
  341            s->mask_type##_mask_bbox.x1, s->mask_type##_mask_bbox.x2, \ 
  342            s->mask_type##_mask_bbox.y1, s->mask_type##_mask_bbox.y2, \ 
  343            mask_type##_max_mask_size); 
  357                "Mask image size %dx%d does not match with the input video size %dx%d\n",
 
  380                                const uint8_t *mask_data, 
int mask_linesize,
 
  381                                uint8_t       *image_data, 
int image_linesize,
 
  382                                int w, 
int h, 
int x, 
int y)
 
  387     int start_posx, start_posy, end_posx, end_posy;
 
  391     const uint8_t *image_read_position;
 
  393     const uint8_t *mask_read_position;
 
  396     mask_size  = mask_data[y * mask_linesize + x];
 
  397     start_posx = 
FFMAX(0, x - mask_size);
 
  398     start_posy = 
FFMAX(0, y - mask_size);
 
  399     end_posx   = 
FFMIN(
w - 1, x + mask_size);
 
  400     end_posy   = 
FFMIN(
h - 1, y + mask_size);
 
  402     image_read_position = image_data + image_linesize * start_posy + start_posx;
 
  403     mask_read_position  = mask_data  + mask_linesize  * start_posy + start_posx;
 
  405     for (j = start_posy; j <= end_posy; j++) {
 
  406         for (
i = start_posx; 
i <= end_posx; 
i++) {
 
  409             if (!(*mask_read_position) && 
mask[mask_size][
i - start_posx][j - start_posy]) {
 
  414             image_read_position++;
 
  415             mask_read_position++;
 
  418         image_read_position += (image_linesize - ((end_posx + 1) - start_posx));
 
  419         mask_read_position  += (mask_linesize - ((end_posx + 1) - start_posx));
 
  425     return divisor == 0 ? 255:
 
  453                        const uint8_t *src_data,  
int src_linesize,
 
  454                              uint8_t *dst_data,  
int dst_linesize,
 
  455                        const uint8_t *mask_data, 
int mask_linesize,
 
  456                        int w, 
int h, 
int direct,
 
  461     const uint8_t *src_line;
 
  466     for (y = bbox->
y1; y <= bbox->y2; y++) {
 
  467         src_line = src_data + src_linesize * y;
 
  468         dst_line = dst_data + dst_linesize * y;
 
  470         for (x = bbox->
x1; x <= bbox->x2; x++) {
 
  471              if (mask_data[y * mask_linesize + x]) {
 
  474                                           mask_data, mask_linesize,
 
  475                                           dst_data, dst_linesize,
 
  480                     dst_line[x] = src_line[x];
 
  495         outpicref = inpicref;
 
  513                s->half_mask_data, 
inlink->w/2,
 
  518                s->half_mask_data, 
inlink->w/2,
 
  537         for (
a = 0; 
a <= 
s->max_mask_size; 
a++) {
 
  539             for (
b = -
a; 
b <= 
a; 
b++) {
 
  559     .
p.
name        = 
"removelogo",
 
  561     .p.priv_class  = &removelogo_class,
 
  
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
 
AVFILTER_DEFINE_CLASS(removelogo)
 
AVPixelFormat
Pixel format.
 
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
 
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
 
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
 
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
 
static const AVFilterPad removelogo_inputs[]
 
#define FILTER_INPUTS(array)
 
FFBoundingBox full_mask_bbox
 
This structure describes decoded (raw) audio or video data.
 
int ff_calculate_bounding_box(FFBoundingBox *bbox, const uint8_t *data, int linesize, int w, int h, int min_val, int depth)
Calculate the smallest rectangle that will encompass the region with values > min_val.
 
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.
 
static uint8_t half(int a, int b)
 
static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
 
const char * name
Filter name.
 
A link between two filters.
 
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
 
static int config_props_input(AVFilterLink *inlink)
 
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
 
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.
 
A filter pad used for either input or output.
 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
 
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
 
static enum AVPixelFormat pix_fmt
 
static const AVOption removelogo_options[]
 
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
 
#define FILTER_OUTPUTS(array)
 
Describe the class of an AVClass context structure.
 
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
 
#define apply_mask_fudge_factor(x)
Choose a slightly larger mask size to improve performance.
 
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
 
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
 
FFBoundingBox half_mask_bbox
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
 
#define SHOW_LOGO_INFO(mask_type)
 
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.
 
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
 
int ff_load_image(uint8_t *data[4], int linesize[4], int *w, int *h, enum AVPixelFormat *pix_fmt, const char *filename, void *log_ctx)
Load image from filename and put the resulting image in data.
 
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
 
#define AV_LOG_INFO
Standard information.
 
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
 
#define i(width, name, range_min, range_max)
 
int w
agreed upon image width
 
static av_cold void uninit(AVFilterContext *ctx)
 
#define av_malloc_array(a, b)
 
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
 
const char * name
Pad name.
 
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.
 
int h
agreed upon image height
 
This code implements a filter to remove annoying TV logos and other annoying images placed onto a vid...
 
const FFFilter ff_vf_removelogo
 
static av_cold int init(AVFilterContext *ctx)
 
AVFilter p
The public AVFilter.
 
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
 
static int load_mask(uint8_t **mask, int *w, int *h, const char *filename, void *log_ctx)
 
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
 
int ff_scale_image(uint8_t *dst_data[4], int dst_linesize[4], int dst_w, int dst_h, enum AVPixelFormat dst_pix_fmt, uint8_t *const src_data[4], int src_linesize[4], int src_w, int src_h, enum AVPixelFormat src_pix_fmt, void *log_ctx)
Scale image using libswscale.
 
#define FILTER_SINGLE_PIXFMT(pix_fmt_)