summaryrefslogtreecommitdiff
path: root/libavformat/webpenc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/webpenc.c')
-rw-r--r--libavformat/webpenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/webpenc.c b/libavformat/webpenc.c
index 2e0147cefd..9fb472257d 100644
--- a/libavformat/webpenc.c
+++ b/libavformat/webpenc.c
@@ -158,7 +158,7 @@ static int webp_write_packet(AVFormatContext *s, AVPacket *pkt)
int ret;
if ((ret = flush(s, 0, pkt->pts)) < 0)
return ret;
- av_copy_packet(&w->last_pkt, pkt);
+ av_packet_ref(&w->last_pkt, pkt);
}
++w->frame_count;