This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/pdfbox-jbig2.git
from a8007e0 PDFBOX-5660: update owasp plugin
new 65744b4 PDFBOX-6199: Template 1 TPGR decoding and replace sliding
window with readable pixel-by-pixel implementation
new 1c67420 PDFBOX-6151: add .vscode to .gitignore
new 383663c PDFBOX-6151: add SlidingBitmapWindow with unit tests and JMH
benchmark
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 1 +
pom.xml | 112 ++++++--
.../apache/pdfbox/jbig2/SlidingBitmapWindow.java | 273 ++++++++++++++++++
.../GenericRefinementRegionDecodingProcedure.java | 122 +++++++-
.../org/apache/pdfbox/jbig2/SerenityTests.java | 8 +-
.../pdfbox/jbig2/SlidingBitmapWindowBenchmark.java | 188 ++++++++++++
.../pdfbox/jbig2/SlidingBitmapWindowTest.java | 320 +++++++++++++++++++++
7 files changed, 985 insertions(+), 39 deletions(-)
create mode 100644
src/main/java/org/apache/pdfbox/jbig2/SlidingBitmapWindow.java
create mode 100644
src/test/java/org/apache/pdfbox/jbig2/SlidingBitmapWindowBenchmark.java
create mode 100644
src/test/java/org/apache/pdfbox/jbig2/SlidingBitmapWindowTest.java