comparison indeo3.c @ 3776:1843a85123b7 libavcodec

fix some signedness warnings
author mru
date Wed, 27 Sep 2006 19:47:39 +0000
parents 0b546eab515d
children c8c591fe26f8
comparison
equal deleted inserted replaced
3775:8e1ed8300165 3776:1843a85123b7
379 continue; 379 continue;
380 } 380 }
381 } else if(cmd == 3) { 381 } else if(cmd == 3) {
382 if(strip->usl7 == 0) { 382 if(strip->usl7 == 0) {
383 strip->usl7 = 1; 383 strip->usl7 = 1;
384 ref_vectors = buf2 + (*buf1 * 2); 384 ref_vectors = (signed char*)buf2 + (*buf1 * 2);
385 buf1++; 385 buf1++;
386 continue; 386 continue;
387 } 387 }
388 } 388 }
389 389