You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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>
This commit is contained in:
@@ -30,9 +30,7 @@
|
|||||||
* @see http://www.w3.org/Graphics/GIF/spec-gif89a.txt
|
* @see http://www.w3.org/Graphics/GIF/spec-gif89a.txt
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define BITSTREAM_WRITER_LE
|
|
||||||
#include "libavutil/opt.h"
|
#include "libavutil/opt.h"
|
||||||
#include "libavutil/imgutils.h"
|
|
||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "bytestream.h"
|
#include "bytestream.h"
|
||||||
#include "codec_internal.h"
|
#include "codec_internal.h"
|
||||||
@@ -40,8 +38,6 @@
|
|||||||
#include "lzw.h"
|
#include "lzw.h"
|
||||||
#include "gif.h"
|
#include "gif.h"
|
||||||
|
|
||||||
#include "put_bits.h"
|
|
||||||
|
|
||||||
#define DEFAULT_TRANSPARENCY_INDEX 0x1f
|
#define DEFAULT_TRANSPARENCY_INDEX 0x1f
|
||||||
|
|
||||||
typedef struct GIFContext {
|
typedef struct GIFContext {
|
||||||
|
Reference in New Issue
Block a user