diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-05-23 12:13:26 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-05-23 20:47:34 +0200 |
commit | 364a80ecb91d9b71c0306d323c2f2d7ca770c93e (patch) | |
tree | 6a7673cf521418047c075581ee2d27873217e98d | |
parent | 1a577c59d093db9645fdeb2bd7a113c0e0432185 (diff) | |
download | ffmpeg-364a80ecb91d9b71c0306d323c2f2d7ca770c93e.tar.gz |
libavcodec/libvpxenc: Don't free user-provided AVPacket
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit 26b45096906097a73ba587bf3b98dada4e795224)
-rw-r--r-- | libavcodec/libvpxenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index b8e8d3a87b..f9d4f534c0 100644 --- a/libavcodec/libvpxenc.c +++ b/libavcodec/libvpxenc.c @@ -860,7 +860,6 @@ FF_ENABLE_DEPRECATION_WARNINGS cx_frame->sz_alpha + 8); if(!side_data) { av_packet_unref(pkt); - av_free(pkt); return AVERROR(ENOMEM); } AV_WB64(side_data, 1); |