From 0b3f09689dd3dde90e44e6ada4dd3d77cb4d44ac Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Tue, 23 Aug 2022 15:00:40 +0200 Subject: [PATCH] avcodec/gif: Remove unnecessary headers The gif encoder uses the bytestream API, not the PutBit-API. Signed-off-by: Andreas Rheinhardt --- libavcodec/gif.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libavcodec/gif.c b/libavcodec/gif.c index 8e84b79b8c..a0406f5544 100644 --- a/libavcodec/gif.c +++ b/libavcodec/gif.c @@ -30,9 +30,7 @@ * @see http://www.w3.org/Graphics/GIF/spec-gif89a.txt */ -#define BITSTREAM_WRITER_LE #include "libavutil/opt.h" -#include "libavutil/imgutils.h" #include "avcodec.h" #include "bytestream.h" #include "codec_internal.h" @@ -40,8 +38,6 @@ #include "lzw.h" #include "gif.h" -#include "put_bits.h" - #define DEFAULT_TRANSPARENCY_INDEX 0x1f typedef struct GIFContext {