diff options
author | Diego Biurrun | 2006-10-09 22:36:38 +0000 |
---|---|---|
committer | Diego Biurrun | 2006-10-09 22:36:38 +0000 |
commit | c6a9271c564c35211498e9bef2309cd8f63814a4 (patch) | |
tree | 5a160f7495aa313545fbe95757c3564ad8f9a3dc /libpostproc | |
parent | ef85972ba5db3ffc45d7d924b43700e81811bee0 (diff) |
Remove gcc-workaround that is already present in libavutil/common.h.
Originally committed as revision 6614 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 3cafdb0e65..1b7f5211b5 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -110,14 +110,6 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks #define TEMP_STRIDE 8 //#define NUM_BLOCKS_AT_ONCE 16 //not used yet -#if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0) -# define attribute_used __attribute__((used)) -# define always_inline __attribute__((always_inline)) inline -#else -# define attribute_used -# define always_inline inline -#endif - #if defined(ARCH_X86) || defined(ARCH_X86_64) static uint64_t __attribute__((aligned(8))) attribute_used w05= 0x0005000500050005LL; static uint64_t __attribute__((aligned(8))) attribute_used w04= 0x0004000400040004LL; |