├── .gitignore ├── LICENSE ├── Readme.txt ├── docs ├── contents.txt ├── developer.txt ├── howtocompile.txt ├── lgpl-3.0.txt ├── sample_images.zip └── versionnumbering.txt └── source ├── Makefile ├── Makefile_osx ├── app_icon.ico ├── aricoder.cpp ├── aricoder.h ├── bitops.cpp ├── bitops.h ├── dct8x8.h ├── file_icon.ico ├── icons.rc ├── icons.res ├── packjpg.cpp ├── packjpg.spec ├── packjpgdll.h ├── packjpglib.h └── pjpgtbl.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/Readme.txt -------------------------------------------------------------------------------- /docs/contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/docs/contents.txt -------------------------------------------------------------------------------- /docs/developer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/docs/developer.txt -------------------------------------------------------------------------------- /docs/howtocompile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/docs/howtocompile.txt -------------------------------------------------------------------------------- /docs/lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/docs/lgpl-3.0.txt -------------------------------------------------------------------------------- /docs/sample_images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/docs/sample_images.zip -------------------------------------------------------------------------------- /docs/versionnumbering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/docs/versionnumbering.txt -------------------------------------------------------------------------------- /source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/Makefile -------------------------------------------------------------------------------- /source/Makefile_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/Makefile_osx -------------------------------------------------------------------------------- /source/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/app_icon.ico -------------------------------------------------------------------------------- /source/aricoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/aricoder.cpp -------------------------------------------------------------------------------- /source/aricoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/aricoder.h -------------------------------------------------------------------------------- /source/bitops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/bitops.cpp -------------------------------------------------------------------------------- /source/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/bitops.h -------------------------------------------------------------------------------- /source/dct8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/dct8x8.h -------------------------------------------------------------------------------- /source/file_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/file_icon.ico -------------------------------------------------------------------------------- /source/icons.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/icons.rc -------------------------------------------------------------------------------- /source/icons.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/icons.res -------------------------------------------------------------------------------- /source/packjpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/packjpg.cpp -------------------------------------------------------------------------------- /source/packjpg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/packjpg.spec -------------------------------------------------------------------------------- /source/packjpgdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/packjpgdll.h -------------------------------------------------------------------------------- /source/packjpglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/packjpglib.h -------------------------------------------------------------------------------- /source/pjpgtbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packjpg/packJPG/HEAD/source/pjpgtbl.h --------------------------------------------------------------------------------