From 30517a9f056c8d01b3790871db4aee95d9c176e6 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Tue, 11 Feb 2014 15:08:12 +0100 Subject: Use av_frame_copy() to simplify code where appropriate. --- libavcodec/libwebpenc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libavcodec/libwebpenc.c') diff --git a/libavcodec/libwebpenc.c b/libavcodec/libwebpenc.c index 74e73dc8cb..b981f48245 100644 --- a/libavcodec/libwebpenc.c +++ b/libavcodec/libwebpenc.c @@ -161,9 +161,7 @@ static int libwebp_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ret = av_frame_get_buffer(alt_frame, 32); if (ret < 0) goto end; - av_image_copy(alt_frame->data, alt_frame->linesize, - frame->data, frame->linesize, - avctx->pix_fmt, frame->width, frame->height); + av_frame_copy(alt_frame, frame); frame = alt_frame; } pic->use_argb = 0; -- cgit v1.2.3