mirror of
https://github.com/mpv-player/mpv
synced 2024-12-26 00:42:57 +00:00
srcSliceY % 4 != 0 fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10953 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
f0c904014b
commit
cc80597f63
@ -1928,7 +1928,10 @@ SwsContext *sws_getContext(int srcW, int srcH, int origSrcFormat, int dstW, int
|
||||
int chrI= i*c->chrDstH / dstH;
|
||||
int nextSlice= MAX(c->vLumFilterPos[i ] + c->vLumFilterSize - 1,
|
||||
((c->vChrFilterPos[chrI] + c->vChrFilterSize - 1)<<c->chrSrcVSubSample));
|
||||
if(c->chrSrcVSubSample > 1)
|
||||
nextSlice&= ~3; // Slices start at boundaries which are divisable through 4
|
||||
else
|
||||
nextSlice&= ~1; // Slices start at boundaries which are divisable through 2
|
||||
if(c->vLumFilterPos[i ] + c->vLumBufSize < nextSlice)
|
||||
c->vLumBufSize= nextSlice - c->vLumFilterPos[i ];
|
||||
if(c->vChrFilterPos[chrI] + c->vChrBufSize < (nextSlice>>c->chrSrcVSubSample))
|
||||
|
Loading…
Reference in New Issue
Block a user