OSDN Git Service

Avoid crash on planarCopy to a destination without alpha.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Fri, 20 Mar 2009 17:22:03 +0000 (17:22 +0000)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Fri, 20 Mar 2009 17:22:03 +0000 (17:22 +0000)
Makes regression tests run again, though the results are still wrong.

Originally committed as revision 29018 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale.c

index 3b0cd97..e9b65c4 100644 (file)
@@ -2117,7 +2117,8 @@ static int planarCopy(SwsContext *c, uint8_t* src[], int srcStride[], int srcSli
         int y=      (plane==0 || plane==3) ? srcSliceY: -((-srcSliceY)>>c->chrDstVSubSample);
         int height= (plane==0 || plane==3) ? srcSliceH: -((-srcSliceH)>>c->chrDstVSubSample);
 
-        if (dst[plane] && !src[plane])
+        if (!dst[plane]) continue;
+        if (!src[plane])
             fillPlane(dst[plane], dstStride[plane], length, height, y, (plane==3) ? 255 : 128);
         else
         {