summaryrefslogtreecommitdiff
path: root/src/lib/openjp2
AgeCommit message (Collapse)Author
2014-03-14[trunk] Remove warnings about unused values introduced in r2710Mathieu Malaterre
Thanks to Matthieu Darbois for patch Fixes issue 290
2014-03-13[trunk] Add some sanity checks when reading Ippm(i) segmentsMathieu Malaterre
Update issue 288
2014-03-13[trunk] Make sure to reallocate ppm data buffer when multiple Ippm(i) buffer ↵Mathieu Malaterre
are found This handle the case where remaining data is exactly Nppm(i) Fixes issue 287
2014-03-13[trunk] Just in case this would be helpful for other, here is the code used ↵Mathieu Malaterre
to track issue 80 Update issue 80
2014-03-13[trunk] Tweak documentation in t2.c. Be more verbose in case of failure.Mathieu Malaterre
2014-03-13[trunk] Add some documention in the pi codeMathieu Malaterre
2014-03-13[trunk] Add debug code to extract decompressed image right before PCLR handlingMathieu Malaterre
Update issue 235
2014-03-12[trunk] Make sure when reading POC that number of layers (layer end) is ↵Mathieu Malaterre
within acceptable bound. Fixes issue 80
2014-03-11[trunk] Re-active old warning about missing SOP markerMathieu Malaterre
2014-03-11[trunk] Add debug info to track issue 80Mathieu Malaterre
Update issue 80
2014-03-11[trunk] Rework assertion to work on 32bits systemMathieu Malaterre
2014-03-11[trunk] Fix remainings warnings on linux/32bits archMathieu Malaterre
2014-03-11[trunk] Rework fseek ifdefs blockers, it breaks the 64bits behavior for fseekoMathieu Malaterre
2014-03-10[trunk] Another final round of fixes for sign conversion warnings.Mathieu Malaterre
Fixes issue 256
2014-03-10[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-10[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-10[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-10[trunk] Remove a set of warning about sign conversionMathieu Malaterre
Update issue 266
2014-03-10[trunk] remove a warning when using strict prototypeMathieu Malaterre
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Rework r2597, make sure test suite is passing now.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Redo r2623, and remove guilty sectionMathieu Malaterre
Update issue 256
2014-03-07[trunk] Revert r2623 for nowMathieu Malaterre
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] As reported by clang analyzer thoses values were never readMathieu Malaterre
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Another round of fixes for sign conversion warnings.Mathieu Malaterre
Update issue 256
2014-03-07[trunk] Fix simple warning about sign conversionMathieu Malaterre
Update issue 256
2014-03-07[trunk] Another of fixes for warning about sign conversionMathieu Malaterre
Update issue 256
2014-03-07[trunk] Fix warning about sign conversionMathieu Malaterre
Update issue 256
2014-03-07[trunk] un-deprecated opj_stream_destroy API, import patch manuallyMathieu Malaterre
In some case user still want to be able to call opj_stream_destroy. Fixes issue 227
2014-03-07[trunk] Update memory management mecanismMathieu Malaterre
Fixes issue 253
2014-03-07[trunk] Remove self-assignement.Mathieu Malaterre
Fixes issue 273
2014-03-07[trunk] Fix mem leaks reported by cppcheckMathieu Malaterre
2014-03-06[trunk] Revert r2597 for now, since it breaks a lot of testsMathieu Malaterre
2014-03-06[trunk] Remove warning about sign conversion.Mathieu Malaterre
Update issue 256
2014-03-06[trunk] Remove warning about sign conversion.Mathieu Malaterre
Update issue 256
2014-03-06[trunk] Remove some easy warnings about sign compare reported by gccMathieu Malaterre
2014-03-05[trunk] Handle cmap where direct use is specified (issue235_cmapsubbox.jp2)Mathieu Malaterre
I doubt the old code ever work. The new code copy the old codestream bytes into the new components (instead of copying the pointer). Technically the issue235.jp2 file should be handled since I.5.3.5 specifies that: ... If the JP2 Header box does not contain a Component Mapping box, the components shall be mapped directly to channels, such that component i is mapped to channel i. ... Update issue 235
2014-03-04[trunk] Make sure to reject images such as 1336.pdf.asan.47.376.jp2 Mathieu Malaterre
Fixes issue 267
2014-03-04[trunk] remove more conversion warning in multi-lines macro.Mathieu Malaterre
C allow simple tricks such as to find those: gcc -E tcd.c | sed '/^\#/d' | indent -st -i2 > clean.c Update issue 256