Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for HT compression #1

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ee87be8
Initial pass using whole frame compression
palemieux Feb 14, 2024
85b395d
Fixing bugs
palemieux Feb 15, 2024
23b5b39
Works
palemieux Feb 16, 2024
e22993a
Added conversion tool
palemieux Feb 17, 2024
f564776
NLT
palemieux Feb 17, 2024
3d67dfa
Add perf cli
palemieux Feb 17, 2024
b2d785b
Add single threaded
palemieux Feb 17, 2024
8e27e19
Fix buffer
palemieux Feb 17, 2024
aed3937
Add stddev
palemieux Feb 17, 2024
a99d9ff
Improve reporting
palemieux Feb 17, 2024
d6a8139
Improve OpenJPH integration
palemieux Feb 18, 2024
5c85052
Added threads
palemieux Feb 18, 2024
2dd9984
Added HT 256 line compression
palemieux Feb 26, 2024
94f9be4
Clean-up API
palemieux Feb 26, 2024
75d199d
Clean-up OpenJPH embedding
palemieux Feb 26, 2024
62cd66a
Add line by line option
palemieux Feb 26, 2024
b894919
Fix OpenJPH build in VS
palemieux Feb 27, 2024
6883f74
Initial pass at channel reordering
palemieux Feb 27, 2024
4423959
Initial pass at channel reordering
palemieux Feb 27, 2024
9299be6
Fix RGB
palemieux Feb 27, 2024
e5fa6d7
Added support for deep compression
palemieux Feb 27, 2024
56f48f5
Fix memory leaks
palemieux Mar 21, 2024
ce4b55b
Memory management improvement
palemieux Mar 21, 2024
c01d67f
Memory management improvement
palemieux Mar 21, 2024
a90a5ff
Add KDU support
palemieux Mar 23, 2024
9285bfd
Fix KDU detection
palemieux Mar 23, 2024
53f3cf0
Add HTK
palemieux Mar 24, 2024
48f48ef
add dockerfile and debugging output for ctest 64 - OpenEXR.testCompre…
michaeldsmith Mar 27, 2024
f5d2c83
Fix typo in exrconv
palemieux Sep 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix OpenJPH build in VS
  • Loading branch information
palemieux committed Feb 27, 2024
commit b8949190e05a089258294f87786e212caeac23b1
1 change: 1 addition & 0 deletions cmake/LibraryDefine.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ function(OPENEXR_DEFINE_LIBRARY libname)
if(OPENEXR_CURLIB_PRIVATE_DEPS)
target_link_libraries(${objlib} PRIVATE ${OPENEXR_CURLIB_PRIVATE_DEPS})
endif()
target_link_libraries(${objlib} PRIVATE openjph)
set_target_properties(${objlib} PROPERTIES
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS OFF
Expand Down
4 changes: 4 additions & 0 deletions cmake/OpenEXRSetup.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@ FetchContent_Declare(
GIT_REPOSITORY https://github.com/aous72/OpenJPH
GIT_TAG origin/master
)

FetchContent_MakeAvailable(openjph)
set_property(DIRECTORY ${openjph_SOURCE_DIR} PROPERTY OJPH_ENABLE_TIFF_SUPPORT OFF)
set_property(DIRECTORY ${openjph_SOURCE_DIR} PROPERTY OJPH_BUILD_TESTS OFF)
set_property(DIRECTORY ${openjph_SOURCE_DIR} PROPERTY OJPH_BUILD_EXECUTABLES OFF)

#######################################
# Find or install Imath
Expand Down
1 change: 0 additions & 1 deletion src/lib/OpenEXR/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -220,5 +220,4 @@ openexr_define_library(OpenEXR
OpenEXR::Iex
OpenEXR::IlmThread
OpenEXR::OpenEXRCore
${OJPH_LIBRARY}
)