[FFmpeg-cvslog] r15779 - trunk/libavcodec/armv4l/mathops.h

mru subversion
Thu Nov 6 02:33:18 CET 2008


Author: mru
Date: Thu Nov  6 02:33:17 2008
New Revision: 15779

Log:
ARM: mathops.h whitespace cosmetics

Modified:
   trunk/libavcodec/armv4l/mathops.h

Modified: trunk/libavcodec/armv4l/mathops.h
==============================================================================
--- trunk/libavcodec/armv4l/mathops.h	(original)
+++ trunk/libavcodec/armv4l/mathops.h	Thu Nov  6 02:33:17 2008
@@ -55,7 +55,7 @@ static inline av_const int64_t MUL64(int
 {
     union { uint64_t x; unsigned hl[2]; } x;
     __asm__ ("smull %0, %1, %2, %3"
-         : "=r"(x.hl[0]), "=r"(x.hl[1]) : "r"(a), "r"(b));
+             : "=r"(x.hl[0]), "=r"(x.hl[1]) : "r"(a), "r"(b));
     return x.x;
 }
 #define MUL64 MUL64
@@ -64,7 +64,7 @@ static inline av_const int64_t MAC64(int
 {
     union { uint64_t x; unsigned hl[2]; } x = { d };
     __asm__ ("smlal %0, %1, %2, %3"
-         : "+r"(x.hl[0]), "+r"(x.hl[1]) : "r"(a), "r"(b));
+             : "+r"(x.hl[0]), "+r"(x.hl[1]) : "r"(a), "r"(b));
     return x.x;
 }
 #define MAC64(d, a, b) ((d) = MAC64(d, a, b))




More information about the ffmpeg-cvslog mailing list