xerox_mpf: Make JPEG support an option
Loading
-
this patch broke support of WorkCentre 3510 (may be WorkCentre 3520). On WorkCentre 3515
dev->compressionTypes
is 0x51 anddev->compressionTypes & (1 << 6)
is true. On WorkCentre 3510dev->compressionTypes
is 0x41, but this device don't support jpeg - this is error! Condition may beif ( (dev->compressionTypes & 0x50) == 0x50 )
Edited by username-removed-1523013 -
Saw your mail to the list and replied to it there already. I would be highly surprised if this commit broke things. It only conditionalizes the JPEG specific code. If your
include/sane/config.h
has#define HAVE_LIBJPEG 1
the net change from the commit before this one is (or should be) zero.
Please register or sign in to comment