Mercurial > mplayer.hg
comparison libaf/af_mp.h @ 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 | d88f5f82826e |
children | 4129c8cfa742 |
comparison
equal
deleted
inserted
replaced
26005:620976e4f865 | 26006:ac00f0e343df |
---|