Commit 53a6c87b authored by gpoirier's avatar gpoirier

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 %


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16451 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2d9f7c16
......@@ -184,7 +184,7 @@ float_to_int16_one_altivec(const float *src)
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment