summaryrefslogtreecommitdiff
path: root/libswscale/swscale.c
diff options
context:
space:
mode:
authorZuxy Meng <zuxy.meng@gmail.com>2008-03-17 06:01:58 +0000
committerZuxy Meng <zuxy.meng@gmail.com>2008-03-17 06:01:58 +0000
commit5a352b14e7d14358e1e734a161e77def9580a3c3 (patch)
tree48c01d680be2a0e0d19cf10fa934598d6a0aa92c /libswscale/swscale.c
parentd85d7a0be77449f36f28ffeaffb2624d4756331e (diff)
Fix a typo that causes an assertion to always fail.
Reported by Alexander Bokovikov (openworld AT uralweb DOT ru) Originally committed as revision 26257 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r--libswscale/swscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 5e3c0a9baa..e6cb3f4c8f 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -2395,7 +2395,7 @@ SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, int dstH
//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)