You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
vsrc_mandelbrot: detect edges in interpol()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -252,6 +252,8 @@ static int interpol(MBContext *mb, uint32_t *color, int x, int y, int linesize)
|
||||
int ipolcd= (cc + dc);
|
||||
if(FFABS(ipolab - ipolcd) > 5)
|
||||
return 0;
|
||||
if(FFABS(ac-bc)+FFABS(cc-dc) > 20)
|
||||
return 0;
|
||||
ipol |= ((ipolab + ipolcd + 2)/4)<<s;
|
||||
}
|
||||
color[x + y*linesize]= ipol;
|
||||
|
Reference in New Issue
Block a user