diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-21 15:18:52 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-21 15:18:52 +0000 |
commit | be7110cdedbc27a24be9440177c6466813937578 (patch) | |
tree | 79be81786a2510f4ddc059e24ae1c33d02cddcd9 /libavcore | |
parent | a29b1700ee070e3d383ea58048f06d1916738f83 (diff) | |
download | ffmpeg-be7110cdedbc27a24be9440177c6466813937578.tar.gz |
Cosmetics: if( -> if (.
Originally committed as revision 24859 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcore')
-rw-r--r-- | libavcore/imgutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcore/imgutils.c b/libavcore/imgutils.c index 686769eefb..ebaeff16c5 100644 --- a/libavcore/imgutils.c +++ b/libavcore/imgutils.c @@ -114,7 +114,7 @@ int av_check_image_size(unsigned int w, unsigned int h, int log_offset, void *lo { ImgUtils imgutils = { &imgutils_class, log_offset, log_ctx }; - if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8) + if ((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8) return 0; av_log(&imgutils, AV_LOG_ERROR, "Picture size %ux%u is invalid\n", w, h); |