| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 // Original code is licensed as follows: | 6 // Original code is licensed as follows: |
| 7 /* | 7 /* |
| 8 * Copyright 2007 ZXing authors | 8 * Copyright 2007 ZXing authors |
| 9 * | 9 * |
| 10 * Licensed under the Apache License, Version 2.0 (the "License"); | 10 * Licensed under the Apache License, Version 2.0 (the "License"); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 CBC_QRCoderMode* CBC_QRCoderMode::sFNC1_SECOND_POSITION = NULL; | 35 CBC_QRCoderMode* CBC_QRCoderMode::sFNC1_SECOND_POSITION = NULL; |
| 36 CBC_QRCoderMode* CBC_QRCoderMode::sSTRUCTURED_APPEND = NULL; | 36 CBC_QRCoderMode* CBC_QRCoderMode::sSTRUCTURED_APPEND = NULL; |
| 37 | 37 |
| 38 CBC_QRCoderMode::CBC_QRCoderMode(int32_t* characterCountBitsForVersions, | 38 CBC_QRCoderMode::CBC_QRCoderMode(int32_t* characterCountBitsForVersions, |
| 39 int32_t x1, | 39 int32_t x1, |
| 40 int32_t x2, | 40 int32_t x2, |
| 41 int32_t x3, | 41 int32_t x3, |
| 42 int32_t bits, | 42 int32_t bits, |
| 43 CFX_ByteString name) { | 43 CFX_ByteString name) { |
| 44 m_characterCountBitsForVersions = characterCountBitsForVersions; | 44 m_characterCountBitsForVersions = characterCountBitsForVersions; |
| 45 if (m_characterCountBitsForVersions != NULL) { | 45 if (m_characterCountBitsForVersions) { |
| 46 m_characterCountBitsForVersions[0] = x1; | 46 m_characterCountBitsForVersions[0] = x1; |
| 47 m_characterCountBitsForVersions[1] = x2; | 47 m_characterCountBitsForVersions[1] = x2; |
| 48 m_characterCountBitsForVersions[2] = x3; | 48 m_characterCountBitsForVersions[2] = x3; |
| 49 } | 49 } |
| 50 m_name += name; | 50 m_name += name; |
| 51 m_bits = bits; | 51 m_bits = bits; |
| 52 } | 52 } |
| 53 CBC_QRCoderMode::~CBC_QRCoderMode() { | 53 CBC_QRCoderMode::~CBC_QRCoderMode() { |
| 54 if (m_characterCountBitsForVersions != NULL) { | 54 FX_Free(m_characterCountBitsForVersions); |
| 55 FX_Free(m_characterCountBitsForVersions); | |
| 56 } | |
| 57 } | 55 } |
| 58 void CBC_QRCoderMode::Initialize() { | 56 void CBC_QRCoderMode::Initialize() { |
| 59 sBYTE = new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 8, 16, 16, 0x4, "BYTE"); | 57 sBYTE = new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 8, 16, 16, 0x4, "BYTE"); |
| 60 sALPHANUMERIC = | 58 sALPHANUMERIC = |
| 61 new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 9, 11, 13, 0x2, "ALPHANUMERIC"); | 59 new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 9, 11, 13, 0x2, "ALPHANUMERIC"); |
| 62 sECI = new CBC_QRCoderMode(NULL, 0, 0, 0, 0x7, "ECI"); | 60 sECI = new CBC_QRCoderMode(NULL, 0, 0, 0, 0x7, "ECI"); |
| 63 sKANJI = new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 8, 10, 12, 0x8, "KANJI"); | 61 sKANJI = new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 8, 10, 12, 0x8, "KANJI"); |
| 64 sNUMERIC = | 62 sNUMERIC = |
| 65 new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 10, 12, 14, 0x1, "NUMERIC"); | 63 new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 10, 12, 14, 0x1, "NUMERIC"); |
| 66 sGBK = new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 8, 10, 12, 0x0D, "GBK"); | 64 sGBK = new CBC_QRCoderMode(FX_Alloc(int32_t, 3), 8, 10, 12, 0x0D, "GBK"); |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 } | 170 } |
| 173 if (sFNC1_SECOND_POSITION) { | 171 if (sFNC1_SECOND_POSITION) { |
| 174 delete CBC_QRCoderMode::sFNC1_SECOND_POSITION; | 172 delete CBC_QRCoderMode::sFNC1_SECOND_POSITION; |
| 175 sFNC1_SECOND_POSITION = NULL; | 173 sFNC1_SECOND_POSITION = NULL; |
| 176 } | 174 } |
| 177 if (sSTRUCTURED_APPEND) { | 175 if (sSTRUCTURED_APPEND) { |
| 178 delete CBC_QRCoderMode::sSTRUCTURED_APPEND; | 176 delete CBC_QRCoderMode::sSTRUCTURED_APPEND; |
| 179 sSTRUCTURED_APPEND = NULL; | 177 sSTRUCTURED_APPEND = NULL; |
| 180 } | 178 } |
| 181 } | 179 } |
| OLD | NEW |