From b7be04f3c04fa69b09660dda4e91f569d054bab6 Mon Sep 17 00:00:00 2001
From: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Date: Mon, 22 Nov 2010 22:03:32 +0000
Subject: [PATCH] Reindent.

Originally committed as revision 25803 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavfilter/vf_aspect.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/libavfilter/vf_aspect.c b/libavfilter/vf_aspect.c
index 97740f103de..2f1b8ce6b17 100644
--- a/libavfilter/vf_aspect.c
+++ b/libavfilter/vf_aspect.c
@@ -47,11 +47,11 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
             return AVERROR(EINVAL);
         }
 
-            gcd = av_gcd(FFABS(aspect->aspect.num), FFABS(aspect->aspect.den));
-            if (gcd) {
-                aspect->aspect.num /= gcd;
-                aspect->aspect.den /= gcd;
-            }
+        gcd = av_gcd(FFABS(aspect->aspect.num), FFABS(aspect->aspect.den));
+        if (gcd) {
+            aspect->aspect.num /= gcd;
+            aspect->aspect.den /= gcd;
+        }
     }
 
     if (aspect->aspect.den == 0)
-- 
GitLab