Commit 266ea1ff authored by diego's avatar diego

Remove unused variable, fixes the warning:

ppc/vc1dsp_altivec.c: In function ‘vc1_inv_trans_8x8_altivec’:
ppc/vc1dsp_altivec.c:141: warning: unused variable ‘vec_5’


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11006 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ae29f12d
......@@ -138,7 +138,6 @@ static void vc1_inv_trans_8x8_altivec(DCTELEM block[64])
vector signed int t0, t1, t2, t3, t4, t5, t6, t7;
const vector signed int vec_64 = vec_sl(vec_splat_s32(4), vec_splat_u32(4));
const vector unsigned int vec_7 = vec_splat_u32(7);
const vector unsigned int vec_5 = vec_splat_u32(5);
const vector unsigned int vec_4 = vec_splat_u32(4);
const vector signed int vec_4s = vec_splat_s32(4);
const vector unsigned int vec_3 = vec_splat_u32(3);
......
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