diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-01 14:23:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-01 14:23:36 +0000 |
commit | 7fd7259a3f1c389cc38e9e102ac3b8aa6808456c (patch) | |
tree | c7e189396f99b976494eb783c84b71a87bb5fc33 /libavcodec/ppc/gmc_altivec.c | |
parent | cd195f14c6d9a20a932ff94f9d02f470de13cd14 (diff) | |
download | ffmpeg-7fd7259a3f1c389cc38e9e102ac3b8aa6808456c.tar.gz |
Remove const vector macro indirection that is useless and obfuscating
now that the Metrowerks workarounds are gone.
Originally committed as revision 10633 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ppc/gmc_altivec.c')
-rw-r--r-- | libavcodec/ppc/gmc_altivec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/gmc_altivec.c b/libavcodec/ppc/gmc_altivec.c index 35360b2d35..1126eb89ca 100644 --- a/libavcodec/ppc/gmc_altivec.c +++ b/libavcodec/ppc/gmc_altivec.c @@ -45,8 +45,8 @@ POWERPC_PERF_DECLARE(altivec_gmc1_num, GMC1_PERF_COND); ( x16)*( y16), /* D */ 0, 0, 0, 0 /* padding */ }; - register const_vector unsigned char vczero = (const_vector unsigned char)vec_splat_u8(0); - register const_vector unsigned short vcsr8 = (const_vector unsigned short)vec_splat_u16(8); + register const vector unsigned char vczero = (const vector unsigned char)vec_splat_u8(0); + register const vector unsigned short vcsr8 = (const vector unsigned short)vec_splat_u16(8); register vector unsigned char dstv, dstv2, src_0, src_1, srcvA, srcvB, srcvC, srcvD; register vector unsigned short Av, Bv, Cv, Dv, rounderV, tempA, tempB, tempC, tempD; int i; |