├── .github └── workflows │ ├── Ruff_python_formater.yml │ ├── autotools.yaml │ ├── msys2.yaml │ └── stale.yml ├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README.md ├── autogen.sh ├── configure.ac ├── doc ├── Makefile.am ├── PATENTS ├── fcd14492.pdf └── jbig2enc.html ├── images └── feyn.tif ├── jbig2topdf.py └── src ├── Makefile.am ├── jbig2.cc ├── jbig2arith.cc ├── jbig2arith.h ├── jbig2comparator.cc ├── jbig2comparator.h ├── jbig2enc.cc ├── jbig2enc.h ├── jbig2segments.h ├── jbig2structs.h ├── jbig2sym.cc └── jbig2sym.h /.github/workflows/Ruff_python_formater.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/.github/workflows/Ruff_python_formater.yml -------------------------------------------------------------------------------- /.github/workflows/autotools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/.github/workflows/autotools.yaml -------------------------------------------------------------------------------- /.github/workflows/msys2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/.github/workflows/msys2.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | See Changelog -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- 1 | dist_doc_DATA = PATENTS jbig2enc.html 2 | -------------------------------------------------------------------------------- /doc/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/doc/PATENTS -------------------------------------------------------------------------------- /doc/fcd14492.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/doc/fcd14492.pdf -------------------------------------------------------------------------------- /doc/jbig2enc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/doc/jbig2enc.html -------------------------------------------------------------------------------- /images/feyn.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/images/feyn.tif -------------------------------------------------------------------------------- /jbig2topdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/jbig2topdf.py -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/jbig2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2.cc -------------------------------------------------------------------------------- /src/jbig2arith.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2arith.cc -------------------------------------------------------------------------------- /src/jbig2arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2arith.h -------------------------------------------------------------------------------- /src/jbig2comparator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2comparator.cc -------------------------------------------------------------------------------- /src/jbig2comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2comparator.h -------------------------------------------------------------------------------- /src/jbig2enc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2enc.cc -------------------------------------------------------------------------------- /src/jbig2enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2enc.h -------------------------------------------------------------------------------- /src/jbig2segments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2segments.h -------------------------------------------------------------------------------- /src/jbig2structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2structs.h -------------------------------------------------------------------------------- /src/jbig2sym.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2sym.cc -------------------------------------------------------------------------------- /src/jbig2sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agl/jbig2enc/HEAD/src/jbig2sym.h --------------------------------------------------------------------------------