Commit b7be04f3 authored by Stefano Sabatini's avatar Stefano Sabatini

Reindent.

Originally committed as revision 25803 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7de19a32
...@@ -47,11 +47,11 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) ...@@ -47,11 +47,11 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
gcd = av_gcd(FFABS(aspect->aspect.num), FFABS(aspect->aspect.den)); gcd = av_gcd(FFABS(aspect->aspect.num), FFABS(aspect->aspect.den));
if (gcd) { if (gcd) {
aspect->aspect.num /= gcd; aspect->aspect.num /= gcd;
aspect->aspect.den /= gcd; aspect->aspect.den /= gcd;
} }
} }
if (aspect->aspect.den == 0) if (aspect->aspect.den == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment