[FFmpeg-cvslog] r25247 - trunk/libavfilter/vf_scale.c
stefano
subversion
Tue Sep 28 16:59:06 CEST 2010
Author: stefano
Date: Tue Sep 28 16:59:06 2010
New Revision: 25247
Log:
Cosmetics: apply nits.
Modified:
trunk/libavfilter/vf_scale.c
Modified: trunk/libavfilter/vf_scale.c
==============================================================================
--- trunk/libavfilter/vf_scale.c Tue Sep 28 16:49:55 2010 (r25246)
+++ trunk/libavfilter/vf_scale.c Tue Sep 28 16:59:06 2010 (r25247)
@@ -49,10 +49,10 @@ static av_cold int init(AVFilterContext
const char *p;
scale->flags = SWS_BILINEAR;
- if (args){
+ if (args) {
sscanf(args, "%d:%d", &scale->w, &scale->h);
- p= strstr(args,"flags=");
- if(p) scale->flags= strtoul(p+6, NULL, 0);
+ p = strstr(args,"flags=");
+ if (p) scale->flags = strtoul(p+6, NULL, 0);
}
/* sanity check params */
More information about the ffmpeg-cvslog
mailing list