indent
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 17 Jul 2008 23:43:48 +0000 (23:43 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 17 Jul 2008 23:43:48 +0000 (23:43 +0000)
Originally committed as revision 27322 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

libswscale/swscale_template.c

index 221c496..45cd491 100644 (file)
@@ -1006,14 +1006,14 @@ static inline void RENAME(yuv2yuv1)(SwsContext *c, int16_t *lumSrc, int16_t *chr
             );
         }
     }else{
-    while(p--){
-        asm volatile(
-            YSCALEYUV2YV121
-            :: "r" (src[p]), "r" (dst[p] + counter[p]),
-            "g" (-counter[p])
-            : "%"REG_a
-        );
-    }
+        while(p--){
+            asm volatile(
+                YSCALEYUV2YV121
+                :: "r" (src[p]), "r" (dst[p] + counter[p]),
+                "g" (-counter[p])
+                : "%"REG_a
+            );
+        }
     }
 
 #else