diff dsputil.c @ 7218:7f3d6509628b libavcodec

Fix x86-64
author michael
date Mon, 07 Jul 2008 21:04:29 +0000
parents 87b1dfb5a98d
children 032a49f033e8
line wrap: on
line diff
--- a/dsputil.c	Mon Jul 07 20:46:03 2008 +0000
+++ b/dsputil.c	Mon Jul 07 21:04:29 2008 +0000
@@ -3930,7 +3930,7 @@
         dst[i*step] = src0[i] * src1[i] + src2[i] + src3;
 }
 
-void ff_float_to_int16_c(int16_t *dst, const float *src, int len){
+void ff_float_to_int16_c(int16_t *dst, const float *src, long len){
     int i;
     for(i=0; i<len; i++) {
         int_fast32_t tmp = ((const int32_t*)src)[i];