[FFmpeg-cvslog] r25803 - trunk/libavfilter/vf_aspect.c
stefano
subversion
Mon Nov 22 23:03:33 CET 2010
Author: stefano
Date: Mon Nov 22 23:03:32 2010
New Revision: 25803
Log:
Reindent.
Modified:
trunk/libavfilter/vf_aspect.c
Modified: trunk/libavfilter/vf_aspect.c
==============================================================================
--- trunk/libavfilter/vf_aspect.c Mon Nov 22 23:03:30 2010 (r25802)
+++ trunk/libavfilter/vf_aspect.c Mon Nov 22 23:03:32 2010 (r25803)
@@ -47,11 +47,11 @@ static av_cold int init(AVFilterContext
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)
More information about the ffmpeg-cvslog
mailing list