diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-09-28 05:17:20 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-09-28 05:17:20 +0000 |
commit | 8da5d3dc3792b6992e4794351125279f05c8ba0e (patch) | |
tree | 3de8fd9a43156792a0497b79b424b114e7315b39 /libavcodec/faxcompr.h | |
parent | 7c6f5238c68b1fa5e0d61afaa3f6c68e586cf9c5 (diff) | |
download | ffmpeg-8da5d3dc3792b6992e4794351125279f05c8ba0e.tar.gz |
Finally distinguish TIFF_CCITT_RLE and TIFF_G3 1-D case, so both of them
will be decoded correctly.
This fixes issue 1423.
Originally committed as revision 20065 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/faxcompr.h')
-rw-r--r-- | libavcodec/faxcompr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/faxcompr.h b/libavcodec/faxcompr.h index 5f0a222e72..2f7926c05b 100644 --- a/libavcodec/faxcompr.h +++ b/libavcodec/faxcompr.h @@ -40,6 +40,6 @@ void ff_ccitt_unpack_init(void); */ int ff_ccitt_unpack(AVCodecContext *avctx, const uint8_t *src, int srcsize, - uint8_t *dst, int height, int stride, enum TiffCompr compr); + uint8_t *dst, int height, int stride, enum TiffCompr compr, int opts); #endif /* AVCODEC_FAXCOMPR_H */ |