diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-21 15:18:54 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-21 15:18:54 +0000 |
commit | c901f6ab6f21539912ed3162a46047650f72b37f (patch) | |
tree | 1f9d7f0a21fe518d30a0b9c35fd345120b9235f1 | |
parent | be7110cdedbc27a24be9440177c6466813937578 (diff) | |
download | ffmpeg-c901f6ab6f21539912ed3162a46047650f72b37f.tar.gz |
Cosmetics: remove useless ().
Originally committed as revision 24860 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/imgconvert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 33bc35477b..c29d92bc5b 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -785,7 +785,7 @@ void ff_img_copy_plane(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height) { - if((!dst) || (!src)) + if (!dst || !src) return; for(;height > 0; height--) { memcpy(dst, src, width); |