Mercurial > mplayer.hg
comparison tremor/Makefile @ 26006:ac00f0e343df
vf_sab mirrors coefficients past the edge of the picture instead of cropping:
if (iy<0) iy= -iy;
if(iy>=h) iy= h-iy-1;
This produces -1,-2,-3... as it goes further past the end of an image, which
crashes. Change this to h-1,h-2,h-3.. to avoid the crash.
patch by Alexander Strange, astrange ithinksw com
author | diego |
---|---|
date | Wed, 20 Feb 2008 08:24:26 +0000 |
parents | 795791668295 |
children | d4f4ce3534c3 |
comparison
equal
deleted
inserted
replaced
26005:620976e4f865 | 26006:ac00f0e343df |
---|