changeset 24218:d05588d8f817

warning fixes: realcodecs/drv3.c: In function 'build_crc': realcodecs/drv3.c:291: warning: unused variable 'b' realcodecs/drv3.c: In function 'RV20toYUV420Transform': realcodecs/drv3.c:323: warning: unused variable 'crc2' realcodecs/drv3.c:323: warning: unused variable 'crc1' realcodecs/drv3.c:323: warning: unused variable 'len'
author diego
date Mon, 27 Aug 2007 11:05:40 +0000
parents 2d5cf446b8d7
children e6f5634e00a7
files TOOLS/realcodecs/drv3.c
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/realcodecs/drv3.c	Mon Aug 27 11:04:10 2007 +0000
+++ b/TOOLS/realcodecs/drv3.c	Mon Aug 27 11:05:40 2007 +0000
@@ -288,7 +288,8 @@
 }
 
 unsigned long build_crc(unsigned char *pch, unsigned long len) {
-	unsigned long crc=0, a, b;
+	unsigned long crc=0, a;
+//	unsigned long b;
 	// it's not the real crc function, but so what...
 	while (len--) {
 		a=*(pch++);
@@ -320,7 +321,8 @@
 	ulong temp[128];
 	int i;
 
-	unsigned long len,crc_src, crc0, crc1, crc2;
+	unsigned long crc_src, crc0;
+//	unsigned long len, crc1, crc2;
 	unsigned char *pch=(char *)p1;
 	fprintf(stderr, "#R# RV20toYUV420Transform(in=%p,out=%p,tin=%p,tout=%p,yuv=%p)\n",p1,p2,p3,p4,p5);
 	// input data, length=*p3