Commit f9edc233 authored by Diego Biurrun's avatar Diego Biurrun

Fix trivial mixed declarations and code warning caused by a double semicolon.

Originally committed as revision 10212 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e4506f0c
......@@ -304,7 +304,7 @@ int sad16_altivec(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
int sad8_altivec(void *v, uint8_t *pix1, uint8_t *pix2, int line_size, int h)
{
int i;
DECLARE_ALIGNED_16(int, s);;
DECLARE_ALIGNED_16(int, s);
const_vector unsigned int zero = (const_vector unsigned int)vec_splat_u32(0);
vector unsigned char perm1, perm2, permclear, *pix1v, *pix2v;
vector unsigned char t1, t2, t3,t4, t5;
......
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