mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 04:54:04 -08:00
Part 1 of a fix from Jeremiah
git-svn-id: https://zxing.googlecode.com/svn/trunk@1634 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
d7e7e20234
commit
33999a3afa
|
@ -175,6 +175,7 @@ final class DecodedBitStreamParser {
|
|||
// of the Text Compaction mode. Codeword 913 is only available
|
||||
// in Text Compaction mode; its use is described in 5.4.2.4.
|
||||
textCompactionData[index] = MODE_SHIFT_TO_BYTE_COMPACTION_MODE;
|
||||
code = codewords[codeIndex++];
|
||||
byteCompactionData[index] = code; //Integer.toHexString(code);
|
||||
index++;
|
||||
break;
|
||||
|
@ -274,8 +275,8 @@ final class DecodedBitStreamParser {
|
|||
subMode = PUNCT;
|
||||
} else if (subModeCh == 26) {
|
||||
ch = ' ';
|
||||
} else if (subModeCh == AS) {
|
||||
//mode_change = true;
|
||||
} else if (subModeCh == LL) {
|
||||
subMode = LOWER;
|
||||
} else if (subModeCh == AL) {
|
||||
subMode = ALPHA;
|
||||
} else if (subModeCh == PS) {
|
||||
|
|
Loading…
Reference in a new issue