├── .gitignore ├── examples └── DecodeTest │ ├── DecodeTest.ino │ └── data │ └── img_test_320_240.jpg ├── library.properties ├── license.txt └── src ├── CMakeLists.txt ├── ESP32_JPEG_Library.h ├── esp32 ├── libesp_codec.a └── libesp_processing.a ├── esp32c3 ├── libesp_codec.a └── libesp_processing.a ├── esp32s2 ├── libesp_codec.a └── libesp_processing.a ├── esp32s3 ├── libesp_codec.a └── libesp_processing.a ├── include ├── esp_jpeg_common.h ├── esp_jpeg_dec.h └── esp_jpeg_enc.h └── src └── audio_malloc.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/.gitignore -------------------------------------------------------------------------------- /examples/DecodeTest/DecodeTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/examples/DecodeTest/DecodeTest.ino -------------------------------------------------------------------------------- /examples/DecodeTest/data/img_test_320_240.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/examples/DecodeTest/data/img_test_320_240.jpg -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/library.properties -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/license.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ESP32_JPEG_Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/ESP32_JPEG_Library.h -------------------------------------------------------------------------------- /src/esp32/libesp_codec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/esp32/libesp_codec.a -------------------------------------------------------------------------------- /src/esp32/libesp_processing.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/esp32/libesp_processing.a -------------------------------------------------------------------------------- /src/esp32c3/libesp_codec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/esp32c3/libesp_codec.a -------------------------------------------------------------------------------- /src/esp32c3/libesp_processing.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/esp32c3/libesp_processing.a -------------------------------------------------------------------------------- /src/esp32s2/libesp_codec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/esp32s2/libesp_codec.a -------------------------------------------------------------------------------- /src/esp32s2/libesp_processing.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/esp32s2/libesp_processing.a -------------------------------------------------------------------------------- /src/esp32s3/libesp_codec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/esp32s3/libesp_codec.a -------------------------------------------------------------------------------- /src/esp32s3/libesp_processing.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/esp32s3/libesp_processing.a -------------------------------------------------------------------------------- /src/include/esp_jpeg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/include/esp_jpeg_common.h -------------------------------------------------------------------------------- /src/include/esp_jpeg_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/include/esp_jpeg_dec.h -------------------------------------------------------------------------------- /src/include/esp_jpeg_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/include/esp_jpeg_enc.h -------------------------------------------------------------------------------- /src/src/audio_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esp-arduino-libs/ESP32_JPEG/HEAD/src/src/audio_malloc.c --------------------------------------------------------------------------------