diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-14 18:03:55 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-22 15:29:46 +0200 |
commit | 25c8507818d8559a6654a5b30a0f8aae11a48181 (patch) | |
tree | 59f768e70e21d07f26a97724a2022c6d855cfcf1 /libavcodec/lzwenc.c | |
parent | e3023e901524d1f9f59167962ee47672e61c2bc9 (diff) | |
download | ffmpeg-25c8507818d8559a6654a5b30a0f8aae11a48181.tar.gz |
Remove/replace some unnecessary avcodec.h inclusions
Also remove other unnecessary headers and include headers directly while
at it.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/lzwenc.c')
-rw-r--r-- | libavcodec/lzwenc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/lzwenc.c b/libavcodec/lzwenc.c index 6c45f7cc37..bb8eb2e1dd 100644 --- a/libavcodec/lzwenc.c +++ b/libavcodec/lzwenc.c @@ -25,9 +25,10 @@ * @author Bartlomiej Wolowiec */ -#include "avcodec.h" +#include <stdint.h> +#include "libavutil/avassert.h" +#include "libavutil/common.h" #include "lzw.h" -#include "mathops.h" #include "put_bits.h" #define LZW_MAXBITS 12 |