Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: esp-cpp/esp-box-emu
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.9.4
Choose a base ref
...
head repository: esp-cpp/esp-box-emu
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.5
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Aug 12, 2024

  1. Enable SIMD acceleration for JPEGDEC component (#86)

    * add define for jpegdec acceleration enable, remove original jpegdec submodule
    
    * add esp-cpp jpegdec fork
    finger563 authored Aug 12, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1aac948 View commit details
Showing with 5 additions and 2 deletions.
  1. +1 −1 .gitmodules
  2. +3 −0 CMakeLists.txt
  3. +1 −1 components/jpegdec
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -3,4 +3,4 @@
url = git@github.com:esp-cpp/espp
[submodule "components/jpegdec"]
path = components/jpegdec
url = git@github.com:bitbank2/JPEGDEC
url = https://github.com/esp-cpp/jpegdec
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -9,6 +9,9 @@ set(EXTRA_COMPONENT_DIRS
"components/espp/components"
)

# add compile definition ARDUINO_ARCH_ESP32, enabling jpegdec simd support
add_compile_definitions(ARDUINO_ARCH_ESP32)

### NES ###
set(NES_COMPONENTS "nes")

2 changes: 1 addition & 1 deletion components/jpegdec
Submodule jpegdec updated 1 files
+4 −1 CMakeLists.txt