diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-28 14:59:06 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-28 14:59:06 +0000 |
commit | 46daee6e4ef8f9ae2b1642bd7d7722c0fd5a42e3 (patch) | |
tree | 316b4f6da80792b6990e6219c27007d536798f11 | |
parent | f03f30d77a9e2de80c2c1cf09a15e983a71f1ad3 (diff) | |
download | ffmpeg-46daee6e4ef8f9ae2b1642bd7d7722c0fd5a42e3.tar.gz |
Cosmetics: apply nits.
Originally committed as revision 25247 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/vf_scale.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index 15801970e6..5d015a99ba 100644 --- a/libavfilter/vf_scale.c +++ b/libavfilter/vf_scale.c @@ -49,10 +49,10 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) 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 */ |