Browse Source

faxcompr: fix byte alignment case

Fixes Ticket1653

Found-by: ami_stuff
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 12 years ago
parent
commit
438b86fed4
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/faxcompr.c

+ 2
- 1
libavcodec/faxcompr.c View File

@@ -291,7 +291,8 @@ int ff_ccitt_unpack(AVCodecContext *avctx,
ref[1] = 0;
ref[2] = 0;
init_get_bits(&gb, src, srcsize*8);
has_eol = show_bits(&gb, 12) == 1;
has_eol = show_bits(&gb, 12) == 1 || show_bits(&gb, 16) == 1;

for(j = 0; j < height; j++){
runend = runs + runsize;
if(compr == TIFF_G4){


Loading…
Cancel
Save