Browse Source

srcSliceY % 4 != 0 fix

Originally committed as revision 10953 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
54324550b8
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      postproc/swscale.c

+ 4
- 1
postproc/swscale.c View File

@@ -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));
nextSlice&= ~3; // Slices start at boundaries which are divisable through 4
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…
Cancel
Save