From a5568f460826b7ce068e81b2d51f35c5052287ed Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 29 Sep 2009 05:55:14 +0000 Subject: Make sure all the bits are written to output in fax data decoder. This fixes decoding TIFF images with fax compression and width being not multiple of eight (and issue 1429). Originally committed as revision 20072 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/faxcompr.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libavcodec/faxcompr.c') diff --git a/libavcodec/faxcompr.c b/libavcodec/faxcompr.c index 3b7d8e61c7..9266e54919 100644 --- a/libavcodec/faxcompr.c +++ b/libavcodec/faxcompr.c @@ -253,6 +253,7 @@ static void put_line(uint8_t *dst, int size, int width, const int *runs) if(run) put_sbits(&pb, run, mode); } + flush_put_bits(&pb); } static int find_group3_syncmarker(GetBitContext *gb, int srcsize) -- cgit v1.2.3