This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_datascope: reduce block height
So it match minimal input video size requirement.
tags/n4.1
Paul B Mahol
7 years ago
parent
06e990ce89
commit
492b312ddd
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavfilter/vf_datascope.c
+ 1
- 1
libavfilter/vf_datascope.c
View File
@@ -506,7 +506,7 @@ static int pixscope_config_input(AVFilterLink *inlink)
}
s->ww = 300;
s->wh = 300 * 1.6
180
;
s->wh = 300 * 1.6;
s->x = s->xpos * (inlink->w - 1);
s->y = s->ypos * (inlink->h - 1);
if (s->x + s->w >= inlink->w || s->y + s->h >= inlink->h) {
Write
Preview
Loading…
Cancel
Save