From 51ae2142d5ec6c00621f662631b6347bc1b2669c Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Tue, 10 Nov 2009 19:36:58 +0000 Subject: [PATCH] Fix palette copying in av_picture_copy(). Previous code worked only if linesize[1] == 1, which does not make sense. Originally committed as revision 20503 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/imgconvert.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index a5fcb53fac..068e933ece 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -1184,9 +1184,7 @@ void av_picture_copy(AVPicture *dst, const AVPicture *src, src->data[0], src->linesize[0], width, height); /* copy the palette */ - ff_img_copy_plane(dst->data[1], dst->linesize[1], - src->data[1], src->linesize[1], - 4, 256); + memcpy(dst->data[1], src->data[1], 4*256); break; } }