Commit da03ba2e authored by michael's avatar michael

last line messed up in Y800 bugfix


git-svn-id: file:///var/local/repositories/mplayer/trunk/postproc@6616 b3059339-0415-0410-9bf9-f77b7e298cf2
parent c01e59b3
......@@ -2557,9 +2557,9 @@ i--;
{
int16_t **lumSrcPtr= lumPixBuf + lumBufIndex + firstLumSrcY - lastInLumBuf + vLumBufSize;
int16_t **chrSrcPtr= chrPixBuf + chrBufIndex + firstChrSrcY - lastInChrBuf + vChrBufSize;
if(isPlanarYUV(dstFormat)) //YV12
if(isPlanarYUV(dstFormat) || isGray(dstFormat)) //YV12
{
if(dstY&1) uDest=vDest= NULL;
if((dstY&1) || isGray(dstFormat)) uDest=vDest= NULL;
yuv2yuvXinC(
vLumFilter+dstY*vLumFilterSize , lumSrcPtr, vLumFilterSize,
vChrFilter+chrDstY*vChrFilterSize, chrSrcPtr, vChrFilterSize,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment