-
Notifications
You must be signed in to change notification settings - Fork 620
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 HTJ2K Compressor #1883
base: main
Are you sure you want to change the base?
Add HTJ2K Compressor #1883
Conversation
|
|
||
// make image filename | ||
char input_filename[512] = { '\0' }; | ||
sprintf(input_filename, args->input_filename, frame_index + args->start_frame); |
Check failure
Code scanning / CodeQL
Uncontrolled format string Critical
a command-line argument
The value of this argument may come from
a command-line argument
// make image filenames | ||
char input_filename[512] = { '\0' }; | ||
char output_filename[512] = { '\0' }; | ||
sprintf(input_filename, args.input_filename, frame_index + args.start_frame); |
Check failure
Code scanning / CodeQL
Uncontrolled format string Critical
a command-line argument
The value of this argument may come from
a command-line argument
char input_filename[512] = { '\0' }; | ||
char output_filename[512] = { '\0' }; | ||
sprintf(input_filename, args.input_filename, frame_index + args.start_frame); | ||
sprintf(output_filename, args.output_filename, frame_index + args.start_frame); |
Check failure
Code scanning / CodeQL
Uncontrolled format string Critical
a command-line argument
The value of this argument may come from
WIP DO NOT MERGE
This patch fulfills my action item from the September 19 TSC meeting.
Introduction
This patch proposes to add support for High-Throughput JPEG 2000 (HTJ2K) compression to OpenEXR -- HTJ2K is JPEG 2000 with the HT block coder standardized in Rec. ITU-T T.814 | ISO/IEC 15444-15. As detailed at Evaluating HTJ2K as a compressor option for OpenEXR, HTJ2K demonstrates significant improvements in both speed and file size over other OpenEXR compressors. Furthermore, HTJ2K is a worldwide standard that benefits from a diversity of implementations, builds on JPEG 2000, which is in broad use in studio workflows, is appropriate for long-term preservation, has both lossy and lossless modes and supports integer and floating point samples. Finally, the unique features of HTJ2K could be powerful additions to high-performance OpenEXR workflows where the full image may not always be viewed at its full resolution.
The patch currently defines four compressors:
Questions
Notes
Todo