summaryrefslogtreecommitdiff
path: root/libavcodec/faxcompr.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/faxcompr.h')
-rw-r--r--libavcodec/faxcompr.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/libavcodec/faxcompr.h b/libavcodec/faxcompr.h
index 51a3497cc9..632744be64 100644
--- a/libavcodec/faxcompr.h
+++ b/libavcodec/faxcompr.h
@@ -28,6 +28,7 @@
#define AVCODEC_FAXCOMPR_H
#include "avcodec.h"
+#include "tiff.h"
/**
* initialize upacker code
@@ -35,17 +36,10 @@
void ff_ccitt_unpack_init();
/**
- * unpack data compressed with CCITT Group 3 1-D method
+ * unpack data compressed with CCITT Group 3 1/2-D or Group 4 method
*/
-int ff_ccitt_unpack_1d(AVCodecContext *avctx,
+int ff_ccitt_unpack(AVCodecContext *avctx,
const uint8_t *src, int srcsize,
- uint8_t *dst, int height, int stride);
-
-/**
- * unpack data compressed with CCITT Group 3 2-D or Group 4 method
- */
-int ff_ccitt_unpack_2d(AVCodecContext *avctx,
- const uint8_t *src, int srcsize,
- uint8_t *dst, int height, int stride, int g4);
+ uint8_t *dst, int height, int stride, enum TiffCompr compr);
#endif /* AVCODEC_FAXCOMPR_H */