[MPlayer-cvslog] r26257 - trunk/libswscale/swscale.c

zuxy subversion at mplayerhq.hu
Mon Mar 17 07:01:58 CET 2008


Author: zuxy
Date: Mon Mar 17 07:01:58 2008
New Revision: 26257

Log:
Fix a typo that causes an assertion to always fail.
Reported by Alexander Bokovikov (openworld AT uralweb DOT ru)


Modified:
   trunk/libswscale/swscale.c

Modified: trunk/libswscale/swscale.c
==============================================================================
--- trunk/libswscale/swscale.c	(original)
+++ trunk/libswscale/swscale.c	Mon Mar 17 07:01:58 2008
@@ -2395,7 +2395,7 @@ SwsContext *sws_getContext(int srcW, int
     //try to avoid drawing green stuff between the right end and the stride end
     for (i=0; i<c->vChrBufSize; i++) memset(c->chrPixBuf[i], 64, (VOF+1)*2);
 
-    assert(2*VOF == VOFW);
+    assert(2*VOFW == VOF);
 
     ASSERT(c->chrDstH <= dstH)
 



More information about the MPlayer-cvslog mailing list