├── .gitignore ├── LICENSE ├── README.md ├── bin └── .gitignore ├── jni ├── Android.mk └── Application.mk ├── make.sh └── src ├── Makefile ├── bootldr_image.c ├── bootldr_image.h ├── common.h ├── log.c ├── log.h ├── meta_image.c ├── meta_image.h ├── meta_image_unpacker ├── packed_image.c ├── packed_image.h ├── qc_image_unpacker.c ├── utils.c └── utils.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.dSYM 3 | src/qc_image_unpacker 4 | obj 5 | libs 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/bin/.gitignore -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/make.sh -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/bootldr_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/bootldr_image.c -------------------------------------------------------------------------------- /src/bootldr_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/bootldr_image.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/common.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/log.h -------------------------------------------------------------------------------- /src/meta_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/meta_image.c -------------------------------------------------------------------------------- /src/meta_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/meta_image.h -------------------------------------------------------------------------------- /src/meta_image_unpacker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/meta_image_unpacker -------------------------------------------------------------------------------- /src/packed_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/packed_image.c -------------------------------------------------------------------------------- /src/packed_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/packed_image.h -------------------------------------------------------------------------------- /src/qc_image_unpacker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/qc_image_unpacker.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anestisb/qc_image_unpacker/HEAD/src/utils.h --------------------------------------------------------------------------------