Mercurial > mplayer.hg
changeset 26225:aa1dee3df0c2
Fix a typo that causes an assertion to always fail.
Reported by Alexander Bokovikov (openworld AT uralweb DOT ru)
author | zuxy |
---|---|
date | Mon, 17 Mar 2008 06:01:58 +0000 |
parents | d9db4bfa14af |
children | 8eb40cd093a3 |
files | libswscale/swscale.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/swscale.c Sun Mar 16 17:27:05 2008 +0000 +++ b/libswscale/swscale.c Mon Mar 17 06:01:58 2008 +0000 @@ -2395,7 +2395,7 @@ //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)