diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-07-24 10:53:32 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-07-24 10:53:32 +0000 |
commit | 80a61f08d2d6059b0aaffa4c8b8120fb0ab0ca75 (patch) | |
tree | 4567552fff1cba203b754fc790485d702414a687 /libavutil | |
parent | ec072669f7398f40d8001c8cb0868880569c6cd9 (diff) | |
download | ffmpeg-80a61f08d2d6059b0aaffa4c8b8120fb0ab0ca75.tar.gz |
Remove AltiVec vector declaration compiler compatibility macros.
The original problem was that FSF and Apple gcc used a different syntax
for vector declarations, i.e. {} vs. (). Nowadays Apple gcc versions support
the standard {} syntax and versions that support {} are available on all
relevant Mac OS X versions. Thus the greater compatibility is no longer
worth cluttering the code with macros.
Originally committed as revision 14366 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/internal.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index ce4983bb2b..cc62d3b221 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -50,14 +50,6 @@ #endif #endif -#ifdef HAVE_ALTIVEC -#ifdef HAVE_ALTIVEC_VECTOR_BRACES -#define AVV(x...) {x} -#else -#define AVV(x...) (x) -#endif -#endif - #ifndef M_PI #define M_PI 3.14159265358979323846 #endif |