summaryrefslogtreecommitdiff
path: root/libavutil/mem.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-02-25 14:53:55 +0000
committerDiego Biurrun <diego@biurrun.de>2008-02-25 14:53:55 +0000
commit4bfc91a07b32dab65f5ac4c61ed7264d86b63df0 (patch)
tree71e12fe9b3c68347fe04e77065c6fa550b5c9855 /libavutil/mem.h
parent5b0d04d308318082cfa4ca458583db6b06c036ab (diff)
cosmetics: prettyprint
Originally committed as revision 12213 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r--libavutil/mem.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h
index 09159f7ee8..4898b085af 100644
--- a/libavutil/mem.h
+++ b/libavutil/mem.h
@@ -27,18 +27,18 @@
#define FFMPEG_MEM_H
#ifdef __ICC
- #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
- #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
+ #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
+ #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
#elif defined(__GNUC__)
- #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
- #define DECLARE_ASM_CONST(n,t,v) static const t v attribute_used __attribute__ ((aligned (n)))
+ #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
+ #define DECLARE_ASM_CONST(n,t,v) static const t v attribute_used __attribute__ ((aligned (n)))
#elif defined(_MSVC)
- #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
- #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
+ #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
+ #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
#else
- #warning No align and asm directives, this might fail.
- #define DECLARE_ALIGNED(n,t,v) t v
- #define DECLARE_ASM_CONST(n,t,v) static const t v
+ #warning No align and asm directives, this might fail.
+ #define DECLARE_ALIGNED(n,t,v) t v
+ #define DECLARE_ASM_CONST(n,t,v) static const t v
#endif
/**