Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-23 16:00:40 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-24 04:43:52 +0300
commit0b3f09689dd3dde90e44e6ada4dd3d77cb4d44ac (patch)
treeeaa6a10bf827e6a76e88ae7f093d430db860f653 /libavcodec/gif.c
parent0bb0c2679943098c5d39ce235c804c2694ad6bc6 (diff)
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>
Diffstat (limited to 'libavcodec/gif.c')
-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 {