diff options
author | Lauri Kasanen <cand@gmx.com> | 2019-04-30 13:24:49 +0300 |
---|---|---|
committer | Lauri Kasanen <cand@gmx.com> | 2019-05-07 10:08:16 +0300 |
commit | 3437111f17dbef8c5f432798d45e354eccf1705d (patch) | |
tree | 8e3b322f3b345800f3408c60098167786657bbaa /libswscale/ppc | |
parent | 9456adc223778df26abab14f0f0594d55b2679b4 (diff) | |
download | ffmpeg-streaming-3437111f17dbef8c5f432798d45e354eccf1705d.zip ffmpeg-streaming-3437111f17dbef8c5f432798d45e354eccf1705d.tar.gz |
swscale/ppc: Indent
Diffstat (limited to 'libswscale/ppc')
-rw-r--r-- | libswscale/ppc/swscale_vsx.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libswscale/ppc/swscale_vsx.c b/libswscale/ppc/swscale_vsx.c index a82cf95..17c15a2 100644 --- a/libswscale/ppc/swscale_vsx.c +++ b/libswscale/ppc/swscale_vsx.c @@ -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) && |