aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-23 15:00:40 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-24 03:43:52 +0200
commit0b3f09689dd3dde90e44e6ada4dd3d77cb4d44ac (patch)
treeeaa6a10bf827e6a76e88ae7f093d430db860f653
parent0bb0c2679943098c5d39ce235c804c2694ad6bc6 (diff)
downloadffmpeg-0b3f09689dd3dde90e44e6ada4dd3d77cb4d44ac.tar.gz
avcodec/gif: Remove unnecessary headers
The gif encoder uses the bytestream API, not the PutBit-API. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/gif.c4
1 files changed, 0 insertions, 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 {