[Mplayer-cvslog] CVS: main/libmpcodecs vf_spp.c,1.2,1.3

Michael Niedermayer CVS michael at mplayerhq.hu
Mon Oct 27 01:15:01 CET 2003


Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv9669

Modified Files:
	vf_spp.c 
Log Message:
120l


Index: vf_spp.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_spp.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vf_spp.c	26 Oct 2003 23:35:46 -0000	1.2
+++ vf_spp.c	27 Oct 2003 00:14:33 -0000	1.3
@@ -128,7 +128,7 @@
 	int x, y, i;
 	const int count= 1<<p->log2_count;
 	const int log2_scale= 6-p->log2_count;
-	const int stride= p->temp_stride;
+	const int stride= p->temp_stride; //FIXME
 	uint64_t block_align[32];
 	DCTELEM *block = (DCTELEM *)block_align;
 	DCTELEM *block2= (DCTELEM *)(block_align+16);
@@ -144,7 +144,7 @@
 	}
 	for(y=0; y<8; y++){
 		memcpy(p->src + (      7-y)*stride, p->src + (      y+8)*stride, stride);
-		memcpy(p->src + (width+8+y)*stride, p->src + (width-y+7)*stride, stride);
+		memcpy(p->src + (height+8+y)*stride, p->src + (height-y+7)*stride, stride);
 	}
 	//FIXME (try edge emu)
 



More information about the MPlayer-cvslog mailing list