OSDN Git Service

Cosmetics: remove useless ().
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 21 Aug 2010 15:18:54 +0000 (15:18 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 21 Aug 2010 15:18:54 +0000 (15:18 +0000)
Originally committed as revision 24860 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/imgconvert.c

index 33bc354..c29d92b 100644 (file)
@@ -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);