diff options
author | Mans Rullgard <mans@mansr.com> | 2011-10-09 13:21:10 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-10-09 13:58:19 +0100 |
commit | 282847ba801e65718a84dc38d46be5077beef040 (patch) | |
tree | b4a2a950a4ebc890904a247aa4f1da8cadbf0af6 /libavcodec/zmbv.c | |
parent | 2f329db90e5d72ad383a0ba05fde3641a34ef73b (diff) | |
download | ffmpeg-282847ba801e65718a84dc38d46be5077beef040.tar.gz |
zmbv: remove memcpy() of decoded frame
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/zmbv.c')
-rw-r--r-- | libavcodec/zmbv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c index 10fd903b98..a9c127ee4f 100644 --- a/libavcodec/zmbv.c +++ b/libavcodec/zmbv.c @@ -574,7 +574,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac default: av_log(avctx, AV_LOG_ERROR, "Cannot handle format %i\n", c->fmt); } - memcpy(c->prev, c->cur, c->width * c->height * (c->bpp / 8)); + FFSWAP(uint8_t *, c->cur, c->prev); } *data_size = sizeof(AVFrame); *(AVFrame*)data = c->pic; |