diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-14 22:34:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-14 23:15:54 +0200 |
commit | 5dd5985e0530214abd65a0bcdd711dd13ac0e880 (patch) | |
tree | b08f605b3f4dad183f73a3f200efd0c0211275c6 /libavcodec/gif.c | |
parent | dc2e4c2e532b80565f5fbacd3a24a6db7567c257 (diff) | |
download | ffmpeg-5dd5985e0530214abd65a0bcdd711dd13ac0e880.tar.gz |
avcodec/gif: move BITSTREAM_WRITER_LE up
This prevents issues in case any header #includes put_bits.h
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/gif.c')
-rw-r--r-- | libavcodec/gif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/gif.c b/libavcodec/gif.c index 98e31f0533..bfe91caaa4 100644 --- a/libavcodec/gif.c +++ b/libavcodec/gif.c @@ -28,6 +28,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" @@ -36,7 +37,6 @@ #include "lzw.h" #include "gif.h" -#define BITSTREAM_WRITER_LE #include "put_bits.h" typedef struct { |