Skip to content
Snippets Groups Projects
Commit b4cc7d67 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avfilter/vf_cover_rect: clip rectangle if it is partly outside the input

parent 0eec40b7
No related branches found
No related tags found
No related merge requests found
...@@ -163,6 +163,17 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) ...@@ -163,6 +163,17 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
return ff_filter_frame(ctx->outputs[0], in); return ff_filter_frame(ctx->outputs[0], in);
} }
if (x < 0) {
w += x;
x = 0;
}
if (y < 0) {
h += y;
y = 0;
}
w = FFMIN(w, in->width - x);
h = FFMIN(h, in->height - y);
if (w > in->width || h > in->height || w <= 0 || h <= 0) if (w > in->width || h > in->height || w <= 0 || h <= 0)
return AVERROR(EINVAL); return AVERROR(EINVAL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment