summaryrefslogtreecommitdiffstats
path: root/libavcodec/libwebpenc.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-02-11 15:08:12 +0100
committerAnton Khirnov <anton@khirnov.net>2014-02-24 07:25:07 +0100
commit30517a9f056c8d01b3790871db4aee95d9c176e6 (patch)
treeea6c15294c71b790d2fa9b4139095a901080824c /libavcodec/libwebpenc.c
parent8feac29cc46270cc89d6016340e7bac780877131 (diff)
downloadffmpeg-streaming-30517a9f056c8d01b3790871db4aee95d9c176e6.zip
ffmpeg-streaming-30517a9f056c8d01b3790871db4aee95d9c176e6.tar.gz
Use av_frame_copy() to simplify code where appropriate.
Diffstat (limited to 'libavcodec/libwebpenc.c')
-rw-r--r--libavcodec/libwebpenc.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/libwebpenc.c b/libavcodec/libwebpenc.c
index 74e73dc..b981f48 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;
OpenPOWER on IntegriCloud