diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-07-07 21:04:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-07-07 21:04:29 +0000 |
commit | 560fa9bf51e20039120ffd1bfd7bcde6974264c6 (patch) | |
tree | 6405e931cb856a50a9b76b9f57a5af37db1c0bc4 /libavcodec/dsputil.c | |
parent | 63b737d4f9c118853a4f8d9af641335629bdf3ab (diff) | |
download | ffmpeg-560fa9bf51e20039120ffd1bfd7bcde6974264c6.tar.gz |
Fix x86-64
Originally committed as revision 14103 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 4c07f7e9fe..9ec077e569 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3930,7 +3930,7 @@ void ff_vector_fmul_add_add_c(float *dst, const float *src0, const float *src1, 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]; |