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 461
In the opj_bio_flush method, bio->ct = 0 is not necessary, since the opj_bio_byteout call sets ct to either 7 or 8. See snippets below: OPJ_BOOL opj_bio_flush(opj_bio_t *bio) { bio->ct = 0; if (! opj_bio_byteout(bio)) { return OPJ_FALSE; } ..... //////////////////////////////////////////// OPJ_BOOL opj_bio_byteout(opj_bio_t *bio) { bio->buf = (bio->buf << 8) & 0xffff; bio->ct = bio->buf == 0xff00 ? 7 : 8; .....
Reported by boxerab on 2014-12-23 15:33:30
The text was updated successfully, but these errors were encountered:
This issue was closed by revision r2987.
Reported by mayeut on 2014-12-23 16:05:23
Fixed
Sorry, something went wrong.
gcode-importer
No branches or pull requests
Originally reported on Google Code with ID 461
Reported by boxerab on 2014-12-23 15:33:30
The text was updated successfully, but these errors were encountered: