From a4ca73890e7e89db39f458e6f8e22548187e3048 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Fri, 15 Feb 2008 21:35:35 +0000 Subject: [PATCH] Even better way to pass size to memcpy. Commited in SoC by Bobby Bingham on 2007-07-02 14:33:18 Originally committed as revision 11971 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfilter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 1f4feeb9da..ba97e12d7a 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -55,8 +55,8 @@ AVFilterPicRef *avfilter_default_get_video_buffer(AVFilterLink *link, int perms) pic->free = avfilter_default_free_video_buffer; avpicture_alloc((AVPicture *)pic, pic->format, ref->w, ref->h); - memcpy(ref->data, pic->data, sizeof(uint8_t *) * 4); - memcpy(ref->linesize, pic->linesize, sizeof(int) * 4); + memcpy(ref->data, pic->data, sizeof(pic->data)); + memcpy(ref->linesize, pic->linesize, sizeof(pic->linesize)); return ref; }