summaryrefslogtreecommitdiff
path: root/libavformat/flic.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2019-12-11 12:21:07 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2019-12-12 19:25:33 +0100
commit82d61a9ce3e26cb950709689f537ad1fdfa830b3 (patch)
tree8869800ee63dda5fa27955afe438b6aa53054644 /libavformat/flic.c
parentc1e439d7e9abab3cebdc937636393b1656e095d9 (diff)
downloadffmpeg-82d61a9ce3e26cb950709689f537ad1fdfa830b3.tar.gz
avformat: Don't free old extradata before ff_alloc/get_extradata
These functions already free it themselves before they allocate the new extradata. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/flic.c')
-rw-r--r--libavformat/flic.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/flic.c b/libavformat/flic.c
index 4ba72fb037..615d6b25c5 100644
--- a/libavformat/flic.c
+++ b/libavformat/flic.c
@@ -175,7 +175,6 @@ static int flic_read_header(AVFormatContext *s)
avio_seek(pb, 12, SEEK_SET);
/* send over abbreviated FLIC header chunk */
- av_freep(&st->codecpar->extradata);
if ((ret = ff_alloc_extradata(st->codecpar, 12)) < 0)
return ret;
memcpy(st->codecpar->extradata, header, 12);