diff options
author | James Almer <jamrial@gmail.com> | 2017-09-23 20:30:13 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-09-25 21:26:38 -0300 |
commit | a447b75de8edb8658ad3c50af0c342bcdda2b57b (patch) | |
tree | 0b8c9cfa1d8edf59ea47d2bf270e35bc1b80a588 /libavformat/webpenc.c | |
parent | ecb9741ba294d7617ca85aaec0226ee9be7f518d (diff) | |
download | ffmpeg-a447b75de8edb8658ad3c50af0c342bcdda2b57b.tar.gz |
avformat: replace all uses of av_copy_packet()
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/webpenc.c')
-rw-r--r-- | libavformat/webpenc.c | 2 |
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; |