diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-07 21:08:59 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-08 16:03:17 +0200 |
commit | 41ab409332d2b838394a35692629b864181491b8 (patch) | |
tree | 7ade60431fa5325cb1df820b7949d8a6690b1fce /libavformat/codec2.c | |
parent | 2c984ecbdd84534a4e97b58d131f0666a2f419e3 (diff) | |
download | ffmpeg-41ab409332d2b838394a35692629b864181491b8.tar.gz |
avformat/Makefile: Remove rawdec dependency from aptx, codec2 demuxers
These demuxers don't need anything from rawdec; they furthermore only
used rawdec.h to include opt.h. Both of this has been fixed.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/codec2.c')
-rw-r--r-- | libavformat/codec2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/codec2.c b/libavformat/codec2.c index ce249d4470..9c94ed81f9 100644 --- a/libavformat/codec2.c +++ b/libavformat/codec2.c @@ -22,10 +22,10 @@ #include <memory.h> #include "libavcodec/codec2utils.h" #include "libavutil/intreadwrite.h" +#include "libavutil/opt.h" #include "avio_internal.h" #include "avformat.h" #include "internal.h" -#include "rawdec.h" #include "rawenc.h" #include "pcm.h" |