We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Originally reported on Google Code with ID 472
In cio.c source of openjp2. I have found a bug when encode jp2 in Big-endian platform Function: void opj_write_bytes_BE (OPJ_BYTE * p_buffer, OPJ_UINT32 p_value, OPJ_UINT32 p_nb_bytes) Bug code line: const OPJ_BYTE * l_data_ptr = ((const OPJ_BYTE *) &p_value) + p_nb_bytes; Fixed: const OPJ_BYTE * l_data_ptr = ((const OPJ_BYTE *) &p_value) + sizeof(OPJ_UINT32) - p_nb_bytes;
Reported by vominh2012 on 2015-02-06 01:47:41
vominh2012
The text was updated successfully, but these errors were encountered:
Related to PR #521
Sorry, something went wrong.
8c4afef
No branches or pull requests
Originally reported on Google Code with ID 472
Reported by
vominh2012
on 2015-02-06 01:47:41The text was updated successfully, but these errors were encountered: