Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256.h

Issue 842043002: Organize barcode codes into modules. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: rebase Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256.h
diff --git a/xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256.h b/xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256.h
deleted file mode 100644
index 1687b95e09711c0380476f3acc1462a8bc6b13fa..0000000000000000000000000000000000000000
--- a/xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2014 PDFium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-
-#ifndef _BC_REEDSOLOMONGF256_H_
-#define _BC_REEDSOLOMONGF256_H_
-class CBC_ReedSolomonGF256Poly;
-class CBC_ReedSolomonGF256;
-class CBC_ReedSolomonGF256 : public CFX_Object
-{
-public:
- static void Initialize();
- static void Finalize();
- static CBC_ReedSolomonGF256 *QRCodeFild;
- static CBC_ReedSolomonGF256 *DataMatrixField;
- CBC_ReedSolomonGF256(FX_INT32 primitive);
- virtual ~CBC_ReedSolomonGF256();
- CBC_ReedSolomonGF256Poly* GetZero();
- CBC_ReedSolomonGF256Poly* GetOne();
- CBC_ReedSolomonGF256Poly* BuildMonomial(FX_INT32 degree, FX_INT32 coefficient, FX_INT32 &e);
- static FX_INT32 AddOrSubtract(FX_INT32 a, FX_INT32 b);
- FX_INT32 Exp(FX_INT32 a);
- FX_INT32 Log(FX_INT32 a, FX_INT32 &e);
- FX_INT32 Inverse(FX_INT32 a, FX_INT32 &e);
- FX_INT32 Multiply(FX_INT32 a, FX_INT32 b);
- virtual void Init();
-private:
- FX_INT32 m_expTable[256];
- FX_INT32 m_logTable[256];
- CBC_ReedSolomonGF256Poly *m_zero;
- CBC_ReedSolomonGF256Poly *m_one;
-};
-#endif
« no previous file with comments | « xfa/src/fxbarcode/src/include/BC_ReedSolomonDecoder.h ('k') | xfa/src/fxbarcode/src/include/BC_ReedSolomonGF256Poly.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698