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) * 3U;
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
239 if ((ret =
set_expr(&
s->x_pexpr,
s->x_expr,
"x",
ctx)) < 0 ||
250#define CHECK_UNSET_OPT(opt) \
251 if (s->opt == -1) { \
252 av_log(ctx, 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);
279 if (
s->x + (
s->band - 1) < 0 ||
s->x +
s->w - (
s->band*2 - 2) > inlink->
w ||
280 s->y + (
s->band - 1) < 0 ||
s->y +
s->h - (
s->band*2 - 2) > inlink->
h) {
296 int hsub0 =
desc->log2_chroma_w;
297 int vsub0 =
desc->log2_chroma_h;
310 if (
s->x + (
s->band - 1) <= 0 ||
s->x +
s->w - (
s->band*2 - 2) > inlink->
w ||
311 s->y + (
s->band - 1) <= 0 ||
s->y +
s->h - (
s->band*2 - 2) > inlink->
h) {
313 " auto set the area inside of the frame\n");
316 if (
s->x + (
s->band - 1) <= 0)
318 if (
s->y + (
s->band - 1) <= 0)
320 if (
s->x +
s->w - (
s->band*2 - 2) > inlink->
w)
321 s->w = inlink->
w -
s->x - (
s->band*2 - 2);
322 if (
s->y +
s->h - (
s->band*2 - 2) > inlink->
h)
323 s->h = inlink->
h -
s->y - (
s->band*2 - 2);
354 for (plane = 0; plane <
desc->nb_components; plane++) {
355 int hsub = plane == 1 || plane == 2 ? hsub0 : 0;
356 int vsub = plane == 1 || plane == 2 ? vsub0 : 0;
362 sar,
s->x>>
hsub,
s->y>>vsub,
389 .p.priv_class = &delogo_class,
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static int config_input(AVFilterLink *inlink)
static int set_expr(AVExpr **pexpr, const char *expr, void *log_ctx)
const FFFilter ff_vf_delogo
static AVFormatContext * ctx
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Main libavfilter public API header.
common internal and external API header
#define AV_CEIL_RSHIFT(a, b)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
int(* init)(AVBSFContext *ctx)
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
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.
simple arithmetic expression evaluator
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
@ 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...
#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 av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_VERBOSE
Detailed information.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
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 av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FILTER_PIXFMTS_ARRAY(array)
static FilterLink * ff_filter_link(AVFilterLink *link)
#define AVFILTER_DEFINE_CLASS(fname)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static enum AVPixelFormat pix_fmts[]
static const char *const var_names[]
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
AVPixelFormat
Pixel format.
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
const h264_weight_func weight
Describe the class of an AVClass context structure.
AVFilterLink ** outputs
array of pointers to output links
A link between two filters.
int w
agreed upon image width
int h
agreed upon image height
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
AVFilterContext * dst
dest filter
int format
agreed upon media format
A filter pad used for either input or output.
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).
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Rational number (pair of numerator and denominator).
double var_values[VAR_VARS_NB]
Link properties exposed to filter code, but not external callers.
static const AVFilterPad avfilter_vf_delogo_inputs[]
static int config_input(AVFilterLink *inlink)
#define CHECK_UNSET_OPT(opt)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static int set_expr(AVExpr **pexpr, const char *expr, const char *option, void *log_ctx)
static av_cold void uninit(AVFilterContext *ctx)
static const AVOption delogo_options[]
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.
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.