[SCM] libav/experimental: cosmetics: prettyprint

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:15:37 UTC 2013


The following commit has been merged in the experimental branch:
commit 4bfc91a07b32dab65f5ac4c61ed7264d86b63df0
Author: Diego Biurrun <diego at biurrun.de>
Date:   Mon Feb 25 14:53:55 2008 +0000

    cosmetics: prettyprint
    
    Originally committed as revision 12213 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavutil/mem.h b/libavutil/mem.h
index 09159f7..4898b08 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
 
 /**

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list