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/idct_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/idct_altivec.c')
-rw-r--r-- | libavcodec/ppc/idct_altivec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/idct_altivec.c b/libavcodec/ppc/idct_altivec.c index e1299be1bd..01c0a12b15 100644 --- a/libavcodec/ppc/idct_altivec.c +++ b/libavcodec/ppc/idct_altivec.c @@ -45,7 +45,7 @@ #include "dsputil_altivec.h" #define vector_s16_t vector signed short -#define const_vector_s16_t const_vector signed short +#define const_vector_s16_t const vector signed short #define vector_u16_t vector unsigned short #define vector_s8_t vector signed char #define vector_u8_t vector unsigned char |