diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-04-21 03:51:57 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-04-24 05:00:15 +0200 |
commit | 60f9ecdccd2fe30c063610fab9eb077786edf0fa (patch) | |
tree | 58b0cc38a6d3c2d4f4039f7b4c67af53a51bfbfd /libavcodec/dump_extradata_bsf.c | |
parent | 6063b39e4d662b46b80a1e879040c3c33d4a3dc0 (diff) | |
download | ffmpeg-60f9ecdccd2fe30c063610fab9eb077786edf0fa.tar.gz |
avcodec/dump_extradata_bsf: Remove unnecessary header
Since 33d18982fa03feb061c8f744a4f0a9175c1f63ab (the commit that
introduced the new bsf API) allocating an enlarged buffer in case
extradata needs to be added to a packet is done via av_new_packet(),
so that libavutil/mem.h is no longer needed.
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/dump_extradata_bsf.c')
-rw-r--r-- | libavcodec/dump_extradata_bsf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/dump_extradata_bsf.c b/libavcodec/dump_extradata_bsf.c index 0b6d404792..218853d25e 100644 --- a/libavcodec/dump_extradata_bsf.c +++ b/libavcodec/dump_extradata_bsf.c @@ -24,7 +24,6 @@ #include "bsf.h" #include "libavutil/log.h" -#include "libavutil/mem.h" #include "libavutil/opt.h" enum DumpFreq { |