mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 12:40:01 +00:00
Cosmetics: remove useless ().
Originally committed as revision 24860 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
be7110cded
commit
c901f6ab6f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user