]> git.sesse.net Git - ffmpeg/commitdiff
swscale/ppc: Indent
authorLauri Kasanen <cand@gmx.com>
Tue, 30 Apr 2019 10:24:49 +0000 (13:24 +0300)
committerLauri Kasanen <cand@gmx.com>
Tue, 7 May 2019 07:08:16 +0000 (10:08 +0300)
libswscale/ppc/swscale_vsx.c

index a82cf95ae473621939bd450d60145a837167f679..17c15a20ec7fd5278efb0c25e084721277adc291 100644 (file)
@@ -1927,13 +1927,13 @@ av_cold void ff_sws_init_swscale_vsx(SwsContext *c)
 #if !HAVE_BIGENDIAN
     if (c->srcBpc == 8) {
         if (c->dstBpc <= 14) {
-        c->hyScale = c->hcScale = hScale_real_vsx;
-        if (c->flags & SWS_FAST_BILINEAR && c->dstW >= c->srcW && c->chrDstW >= c->chrSrcW) {
-            c->hyscale_fast = hyscale_fast_vsx;
-            c->hcscale_fast = hcscale_fast_vsx;
-        }
+            c->hyScale = c->hcScale = hScale_real_vsx;
+            if (c->flags & SWS_FAST_BILINEAR && c->dstW >= c->srcW && c->chrDstW >= c->chrSrcW) {
+                c->hyscale_fast = hyscale_fast_vsx;
+                c->hcscale_fast = hcscale_fast_vsx;
+            }
         } else {
-        c->hyScale = c->hcScale = hScale8To19_vsx;
+            c->hyScale = c->hcScale = hScale8To19_vsx;
         }
     }
     if (!is16BPS(dstFormat) && !isNBPS(dstFormat) &&