summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-12-03 19:19:57 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-12-03 19:19:57 +0000
commitbdcc13f2bf251f60bf5af33d5f88f78b63b1c81b (patch)
tree97d4f3e5dcc6eba17e5f3560654a91fa0d7b27b1
parentf38e450746ca52c7965146ebdbcdd4cc30ad1fd9 (diff)
lzw.h does not need get_bits.h, tiff.c needs intreadwrite.h for AV_R* though
Originally committed as revision 20724 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/lzw.h2
-rw-r--r--libavcodec/tiff.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/lzw.h b/libavcodec/lzw.h
index bebb335f80..304ba2d1dd 100644
--- a/libavcodec/lzw.h
+++ b/libavcodec/lzw.h
@@ -30,8 +30,6 @@
#ifndef AVCODEC_LZW_H
#define AVCODEC_LZW_H
-#include "get_bits.h"
-
struct PutBitContext;
enum FF_LZW_MODES{
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c
index 51e5f8ee63..f8f3cbde95 100644
--- a/libavcodec/tiff.c
+++ b/libavcodec/tiff.c
@@ -32,7 +32,7 @@
#include "tiff.h"
#include "faxcompr.h"
#include "libavutil/common.h"
-
+#include "libavutil/intreadwrite.h"
typedef struct TiffContext {
AVCodecContext *avctx;