Go to the documentation of this file.
68 "Error when parsing the expression '%s' for %s\n",
98 uint8_t *
src,
int src_linesize,
100 int logo_x,
int logo_y,
int logo_w,
int logo_h,
101 unsigned int band,
int show,
int direct)
104 uint64_t
interp, weightl, weightr, weightt, weightb,
weight;
105 uint8_t *xdst, *xsrc;
107 uint8_t *topleft, *botleft, *topright;
108 unsigned int left_sample, right_sample;
109 int xclipl, xclipr, yclipt, yclipb;
110 int logo_x1, logo_x2, logo_y1, logo_y2;
112 xclipl =
FFMAX(-logo_x, 0);
113 xclipr =
FFMAX(logo_x+logo_w-
w, 0);
114 yclipt =
FFMAX(-logo_y, 0);
115 yclipb =
FFMAX(logo_y+logo_h-
h, 0);
117 logo_x1 = logo_x + xclipl;
118 logo_x2 = logo_x + logo_w - xclipr - 1;
119 logo_y1 = logo_y + yclipt;
120 logo_y2 = logo_y + logo_h - yclipb - 1;
122 topleft =
src+logo_y1 * src_linesize+logo_x1;
123 topright =
src+logo_y1 * src_linesize+logo_x2;
124 botleft =
src+logo_y2 * src_linesize+logo_x1;
129 dst += (logo_y1 + 1) * dst_linesize;
130 src += (logo_y1 + 1) * src_linesize;
132 for (y = logo_y1+1; y < logo_y2; y++) {
133 left_sample = topleft[src_linesize*(y-logo_y1)] +
134 topleft[src_linesize*(y-logo_y1-1)] +
135 topleft[src_linesize*(y-logo_y1+1)];
136 right_sample = topright[src_linesize*(y-logo_y1)] +
137 topright[src_linesize*(y-logo_y1-1)] +
138 topright[src_linesize*(y-logo_y1+1)];
141 xdst =
dst+logo_x1+1,
142 xsrc =
src+logo_x1+1; x < logo_x2; x++, xdst++, xsrc++) {
144 if (show && (y == logo_y1+1 || y == logo_y2-1 ||
145 x == logo_x1+1 || x == logo_x2-1)) {
151 weightl = (uint64_t) (logo_x2-x) * (y-logo_y1) * (logo_y2-y) * sar.
den;
152 weightr = (uint64_t)(x-logo_x1) * (y-logo_y1) * (logo_y2-y) * sar.
den;
153 weightt = (uint64_t)(x-logo_x1) * (logo_x2-x) * (logo_y2-y) * sar.
num;
154 weightb = (uint64_t)(x-logo_x1) * (logo_x2-x) * (y-logo_y1) * sar.
num;
157 left_sample * weightl
159 right_sample * weightr
161 (topleft[x-logo_x1] +
162 topleft[x-logo_x1-1] +
163 topleft[x-logo_x1+1]) * weightt
165 (botleft[x-logo_x1] +
166 botleft[x-logo_x1-1] +
167 botleft[x-logo_x1+1]) * weightb;
168 weight = (weightl + weightr + weightt + weightb) * 3
U;
171 if (y >= logo_y+band && y < logo_y+logo_h-band &&
172 x >= logo_x+band && x < logo_x+logo_w-band) {
178 dist =
FFMAX(dist, logo_x-x+band);
179 else if (x >= logo_x+logo_w-band)
180 dist =
FFMAX(dist, x-(logo_x+logo_w-1-band));
183 dist =
FFMAX(dist, logo_y-y+band);
184 else if (y >= logo_y+logo_h-band)
185 dist =
FFMAX(dist, y-(logo_y+logo_h-1-band));
187 *xdst = (*xsrc*dist +
interp*(band-dist))/band;
204 #define OFFSET(x) offsetof(DelogoContext, x)
205 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
250 #define CHECK_UNSET_OPT(opt) \
251 if (s->opt == -1) { \
252 av_log(s, AV_LOG_ERROR, "Option %s was not set.\n", #opt); \
253 return AVERROR(EINVAL); \
263 s->x,
s->y,
s->w,
s->h,
s->band,
s->show);
278 if (
s->x + (
s->band - 1) < 0 ||
s->x +
s->w - (
s->band*2 - 2) >
inlink->w ||
279 s->y + (
s->band - 1) < 0 ||
s->y +
s->h - (
s->band*2 - 2) >
inlink->h) {
294 int hsub0 =
desc->log2_chroma_w;
295 int vsub0 =
desc->log2_chroma_h;
308 if (
s->x + (
s->band - 1) <= 0 ||
s->x +
s->w - (
s->band*2 - 2) >
inlink->w ||
309 s->y + (
s->band - 1) <= 0 ||
s->y +
s->h - (
s->band*2 - 2) >
inlink->h) {
311 " auto set the area inside of the frame\n");
314 if (
s->x + (
s->band - 1) <= 0)
316 if (
s->y + (
s->band - 1) <= 0)
318 if (
s->x +
s->w - (
s->band*2 - 2) >
inlink->w)
319 s->w =
inlink->w -
s->x - (
s->band*2 - 2);
320 if (
s->y +
s->h - (
s->band*2 - 2) >
inlink->h)
321 s->h =
inlink->h -
s->y - (
s->band*2 - 2);
352 for (plane = 0; plane <
desc->nb_components; plane++) {
353 int hsub = plane == 1 || plane == 2 ? hsub0 : 0;
354 int vsub = plane == 1 || plane == 2 ? vsub0 : 0;
360 sar,
s->x>>
hsub,
s->y>>vsub,
388 .priv_class = &delogo_class,
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
const AVFilter ff_vf_delogo
#define AV_LOG_WARNING
Something somehow does not look correct.
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
#define FILTER_PIXFMTS_ARRAY(array)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
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
#define CHECK_UNSET_OPT(opt)
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define FILTER_INPUTS(array)
This structure describes decoded (raw) audio or video data.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
double var_values[VAR_VARS_NB]
#define AV_LOG_VERBOSE
Detailed information.
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
const char * name
Filter name.
A link between two filters.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
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.
Link properties exposed to filter code, but not external callers.
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
static const AVFilterPad avfilter_vf_delogo_inputs[]
static av_cold int init(AVFilterContext *ctx)
const h264_weight_func weight
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
A filter pad used for either input or output.
static int config_input(AVFilterLink *inlink)
#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 int filter_frame(AVFilterLink *inlink, AVFrame *in)
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
#define AV_CEIL_RSHIFT(a, b)
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FILTER_OUTPUTS(array)
static void apply_delogo(uint8_t *dst, int dst_linesize, uint8_t *src, int src_linesize, int w, int h, AVRational sar, int logo_x, int logo_y, int logo_w, int logo_h, unsigned int band, int show, int direct)
Apply a simple delogo algorithm to the image in src and put the result in dst.
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.
Rational number (pair of numerator and denominator).
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
static FilterLink * ff_filter_link(AVFilterLink *link)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
int w
agreed upon image width
const char * name
Pad name.
static av_cold void uninit(AVFilterContext *ctx)
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
int h
agreed upon image height
static const AVOption delogo_options[]
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
static enum AVPixelFormat pix_fmts[]
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
@ 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...
static const char *const var_names[]
static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *log_ctx)
AVFILTER_DEFINE_CLASS(delogo)