[FFmpeg-cvslog] r16451 - trunk/libavcodec/ppc/float_altivec.c

gpoirier subversion
Tue Jan 6 13:51:35 CET 2009


Author: gpoirier
Date: Tue Jan  6 13:51:35 2009
New Revision: 16451

Log:
Fix float_to_int16_altivec prototype to match float_to_int16's in dsputil.h
(parameter 'len' is a long not an int).
Patch by David Conrad % lessen42 A gmail P com %

Modified:
   trunk/libavcodec/ppc/float_altivec.c

Modified: trunk/libavcodec/ppc/float_altivec.c
==============================================================================
--- trunk/libavcodec/ppc/float_altivec.c	Tue Jan  6 11:44:45 2009	(r16450)
+++ trunk/libavcodec/ppc/float_altivec.c	Tue Jan  6 13:51:35 2009	(r16451)
@@ -184,7 +184,7 @@ float_to_int16_one_altivec(const float *
     return vec_packs(t0,t1);
 }
 
-static void float_to_int16_altivec(int16_t *dst, const float *src, int len)
+static void float_to_int16_altivec(int16_t *dst, const float *src, long len)
 {
     int i;
     vector signed short d0, d1, d;




More information about the ffmpeg-cvslog mailing list