[FFmpeg-cvslog] r24860 - trunk/libavcodec/imgconvert.c
stefano
subversion
Sat Aug 21 17:18:55 CEST 2010
Author: stefano
Date: Sat Aug 21 17:18:54 2010
New Revision: 24860
Log:
Cosmetics: remove useless ().
Modified:
trunk/libavcodec/imgconvert.c
Modified: trunk/libavcodec/imgconvert.c
==============================================================================
--- trunk/libavcodec/imgconvert.c Sat Aug 21 17:18:52 2010 (r24859)
+++ trunk/libavcodec/imgconvert.c Sat Aug 21 17:18:54 2010 (r24860)
@@ -785,7 +785,7 @@ void ff_img_copy_plane(uint8_t *dst, int
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);
More information about the ffmpeg-cvslog
mailing list