[MPlayer-cvslog] r21594 - trunk/libmpcodecs/vf_fspp.c
henry
subversion at mplayerhq.hu
Mon Dec 11 19:50:53 CET 2006
Author: henry
Date: Mon Dec 11 19:50:52 2006
New Revision: 21594
Modified:
trunk/libmpcodecs/vf_fspp.c
Log:
count needs to be even
Modified: trunk/libmpcodecs/vf_fspp.c
==============================================================================
--- trunk/libmpcodecs/vf_fspp.c (original)
+++ trunk/libmpcodecs/vf_fspp.c Mon Dec 11 19:50:52 2006
@@ -463,7 +463,7 @@
es=width+8-x0; // 8, ...
if (es>8)
row_fdct_s(block+8*8, p->src + y*stride+8+x0 +2-(y&1), stride, (es-4)>>2);
- column_fidct_s((int16_t*)(&p->threshold_mtx[0]), block, block3, es-0);
+ column_fidct_s((int16_t*)(&p->threshold_mtx[0]), block, block3, es&(~1));
row_idct_s(block3+0*8, p->temp + (y&15)*stride+x0+2-(y&1), stride, es>>2);
{const int y1=y-8+step;//l5-7 l4-6
if (!(y1&7) && y1) {
More information about the MPlayer-cvslog
mailing list