From 74a4371d74b70fc6c8f69383a2d542837004d6ca Mon Sep 17 00:00:00 2001 From: Stefan Gehrer Date: Fri, 16 Jan 2009 17:58:38 +0000 Subject: [PATCH] use assignment of structure instead of memcpy Originally committed as revision 16644 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cavsdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index 38a7681647..dbf7252fb2 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -567,8 +567,8 @@ static int decode_pic(AVSContext *h) { if(h->pic_type != FF_B_TYPE) { if(h->DPB[1].data[0]) s->avctx->release_buffer(s->avctx, (AVFrame *)&h->DPB[1]); - memcpy(&h->DPB[1], &h->DPB[0], sizeof(Picture)); - memcpy(&h->DPB[0], &h->picture, sizeof(Picture)); + h->DPB[1] = h->DPB[0]; + h->DPB[0] = h->picture; memset(&h->picture,0,sizeof(Picture)); } return 0;