|
299 | 299 | Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=59751
|
300 | 300 |
|
301 | 301 | In 738e0409 (refs #575), we disabled DNG / EP tags, but there was a
|
302 |
| - special proessing for TIFFTAG_EP_BATTERYLEVEL that must be disabled |
| 302 | + special processing for TIFFTAG_EP_BATTERYLEVEL that must be disabled |
303 | 303 | since the tag is no longer defined.
|
304 | 304 |
|
305 | 305 | 2023-06-09 Su_Laus <sulau@freenet.de>
|
|
395 | 395 | tif_dirinfo.c: disable DNG 1.2->1.6 tags.
|
396 | 396 | They were added per b90b20d36d7833f54a1f3014c324f6c21b988006 but it has
|
397 | 397 | been found in https://gitlab.com/libtiff/libtiff/-/issues/575 that it
|
398 |
| - could cause compatibity issues with libtiff users, so this addition |
399 |
| - should be defered for a feature release (likely 4.6.0) and not a patch one. |
| 398 | + could cause compatibility issues with libtiff users, so this addition |
| 399 | + should be deferred for a feature release (likely 4.6.0) and not a patch one. |
400 | 400 |
|
401 | 401 | Fixes #575
|
402 | 402 |
|
|
576 | 576 | 2023-05-06 Even Rouault <even.rouault@spatialys.com>
|
577 | 577 |
|
578 | 578 | Merge branch 'fix_548' into 'master'
|
579 |
| - LZWDecode(): avoid crash when trying to read again from a strip whith a... |
| 579 | + LZWDecode(): avoid crash when trying to read again from a strip with a... |
580 | 580 |
|
581 | 581 | Closes #548
|
582 | 582 |
|
|
610 | 610 |
|
611 | 611 | 2023-04-29 Even Rouault <even.rouault@spatialys.com>
|
612 | 612 |
|
613 |
| - LZWDecode(): avoid crash when trying to read again from a strip whith a missing end-of-information marker (fixes #548) |
| 613 | + LZWDecode(): avoid crash when trying to read again from a strip with a missing end-of-information marker (fixes #548) |
614 | 614 |
|
615 | 615 | 2023-04-25 Su_Laus <sulau@freenet.de>
|
616 | 616 |
|
|
1339 | 1339 |
|
1340 | 1340 | Use structures that can be extended as extra argument.
|
1341 | 1341 |
|
1342 |
| - Leverages and ammends https://gitlab.com/libtiff/libtiff/-/merge_requests/409 |
| 1342 | + Leverages and amends https://gitlab.com/libtiff/libtiff/-/merge_requests/409 |
1343 | 1343 |
|
1344 | 1344 | 2022-11-21 Even Rouault <even.rouault@spatialys.com>
|
1345 | 1345 |
|
|
2077 | 2077 | to
|
2078 | 2078 | { TIFFTAG_INTEROPERABILITYIFD, 1, 1, TIFF_IFD8, 0, TIFF_SETGET_IFD8, TIFF_SETGET_UNDEFINED, FIELD_CUSTOM, 0, 0, "InteroperabilityIFDOffset", NULL },
|
2079 | 2079 |
|
2080 |
| - However, if those tags schould not be handled by LibTiff because they are deamed as abandoned or unwanted tags, those tags need to be defined with FIELD_IGNORE instead of FIELD_CUSTOM and keeping set_field_type = TIFF_SETGET_UNDEFINED |
| 2080 | + However, if those tags should not be handled by LibTiff because they are deamed as abandoned or unwanted tags, those tags need to be defined with FIELD_IGNORE instead of FIELD_CUSTOM and keeping set_field_type = TIFF_SETGET_UNDEFINED |
2081 | 2081 |
|
2082 | 2082 | 2022-07-01 Su_Laus <sulau@freenet.de>
|
2083 | 2083 |
|
|
2185 | 2185 | tif_predict.c: make horAcc8() work with icc (ICC) 2021.6.0 20220226 -O2.
|
2186 | 2186 | For a reason I don't understand, recent ICC generates wrong code in -O2
|
2187 | 2187 | mode for the stride = 3 and 4 cases. The modified code is more
|
2188 |
| - straightfoward, so go for it. |
| 2188 | + straightforward, so go for it. |
2189 | 2189 |
|
2190 | 2190 | 2022-06-19 Roger Leigh <rleigh@codelibre.net>
|
2191 | 2191 |
|
|
2442 | 2442 | Include stdlib.h in tif_lzw.c.
|
2443 | 2443 | In `tif_lzw.c`, a call is made to `_byteswap_uint64`. This is declared in `stdlib.h`. `stdlib.h` is not included in `tib_lzw.c`, so a name error may occur.
|
2444 | 2444 |
|
2445 |
| - This change adds `#include stdlib.h` to `tif_lzw.c`, to prevent a name error from occuring when `stdlib.h` is not included. |
| 2445 | + This change adds `#include stdlib.h` to `tif_lzw.c`, to prevent a name error from occurring when `stdlib.h` is not included. |
2446 | 2446 |
|
2447 | 2447 | 2022-05-29 Roger Leigh <rleigh@codelibre.net>
|
2448 | 2448 |
|
|
2662 | 2662 |
|
2663 | 2663 | 2022-04-22 Even Rouault <even.rouault@spatialys.com>
|
2664 | 2664 |
|
2665 |
| - tif_lzw.c: fix potential out-of-bounds error when trying to read in the same tile/strip after an error has occured (fixes #410) |
| 2665 | + tif_lzw.c: fix potential out-of-bounds error when trying to read in the same tile/strip after an error has occurred (fixes #410) |
2666 | 2666 |
|
2667 | 2667 | 2022-04-06 Su_Laus <sulau@freenet.de>
|
2668 | 2668 |
|
|
3035 | 3035 | 2022-02-11 Even Rouault <even.rouault@spatialys.com>
|
3036 | 3036 |
|
3037 | 3037 | Merge branch 'predictor_2_64bit' into 'master'
|
3038 |
| - Predictor 2 (horizontal differenciation): support 64-bit |
| 3038 | + Predictor 2 (horizontal differentiation): support 64-bit |
3039 | 3039 |
|
3040 | 3040 | See merge request libtiff/libtiff!296
|
3041 | 3041 |
|
|
3054 | 3054 |
|
3055 | 3055 | 2022-02-09 Even Rouault <even.rouault@spatialys.com>
|
3056 | 3056 |
|
3057 |
| - Predictor 2 (horizontal differenciation): support 64-bit. |
| 3057 | + Predictor 2 (horizontal differentiation): support 64-bit. |
3058 | 3058 | There's no reason not to support 64-bit. The TIFF 6 specification
|
3059 | 3059 | doesn't say anything about that (and even mention 4-bit, which we don't
|
3060 | 3060 | support)
|
|
3237 | 3237 | 2021-12-13 Even Rouault <even.rouault@spatialys.com>
|
3238 | 3238 |
|
3239 | 3239 | OJPEG: avoid assertion when using TIFFReadScanline() (fixes #337)
|
3240 |
| - Note: my analyis of the issue would be that the use of the scanline API |
3241 |
| - is currently propably broken with OJPEG. |
| 3240 | + Note: my analysis of the issue would be that the use of the scanline API |
| 3241 | + is currently probably broken with OJPEG. |
3242 | 3242 |
|
3243 | 3243 | 2021-12-10 Even Rouault <even.rouault@spatialys.com>
|
3244 | 3244 |
|
|
3492 | 3492 | 2021-09-23 Even Rouault <even.rouault@spatialys.com>
|
3493 | 3493 |
|
3494 | 3494 | TIFFAppendToStrip(): fix rewrite-in-place logic.
|
3495 |
| - reproducable in particular with packbits compression. |
| 3495 | + reproducible in particular with packbits compression. |
3496 | 3496 |
|
3497 | 3497 | Fixes https://github.com/OSGeo/gdal/issues/4538
|
3498 | 3498 |
|
|
3960 | 3960 | 2021-03-07 Antonio Valentino <Antonio.Valentino@esa.int>
|
3961 | 3961 |
|
3962 | 3962 | Add LERC plugin.
|
3963 |
| - The lerc plugin code has been copyed form GDAL. |
| 3963 | + The lerc plugin code has been copied:* form GDAL. |
3964 | 3964 |
|
3965 | 3965 | 2021-03-06 Roger Leigh <rleigh@codelibre.net>
|
3966 | 3966 |
|
|
4160 | 4160 |
|
4161 | 4161 | Correct include order.
|
4162 | 4162 |
|
4163 |
| - Eliminate implict fallthrough usage. |
| 4163 | + Eliminate implicit fallthrough usage. |
4164 | 4164 | Use simple loops in place of manual loop unrolling. Rely on
|
4165 | 4165 | the compiler optimiser to unroll loops when appropriate.
|
4166 | 4166 |
|
|
4422 | 4422 | 2021-01-18 Even Rouault <even.rouault@spatialys.com>
|
4423 | 4423 |
|
4424 | 4424 | Merge branch 'tiffcmp' into 'master'
|
4425 |
| - tiffcmp: fix comparaison with pixels that are fractional number of bytes |
| 4425 | + tiffcmp: fix comparison with pixels that are fractional number of bytes |
4426 | 4426 |
|
4427 | 4427 | Closes #53
|
4428 | 4428 |
|
|
4438 | 4438 |
|
4439 | 4439 | 2021-01-15 Thomas Bernard <miniupnp@free.fr>
|
4440 | 4440 |
|
4441 |
| - tiffcmp: fix comparaison with pixels that are fractional number of bytes |
4442 |
| - For exemple : 4bits per sample + 3 samples per pixel => 1.5 bytes per pixel |
| 4441 | + tiffcmp: fix comparison with pixels that are fractional number of bytes |
| 4442 | + For example : 4bits per sample + 3 samples per pixel => 1.5 bytes per pixel |
4443 | 4443 |
|
4444 | 4444 | tiff2ps: exit the loop in case of error.
|
4445 | 4445 | fixes #232
|
|
4634 | 4634 | 2020-12-31 Kurt Schwehr <schwehr@google.com>
|
4635 | 4635 |
|
4636 | 4636 | custom_dir_EXIF_231.c: dos2unix and codespell.
|
4637 |
| - additonal, Varable, greather, alwasy |
| 4637 | + additional, Varable, greather, alwasy |
4638 | 4638 |
|
4639 | 4639 | 2020-12-31 Kurt Schwehr <schwehr@google.com>
|
4640 | 4640 |
|
|
6208 | 6208 |
|
6209 | 6209 | 2019-10-03 Even Rouault <even.rouault@spatialys.com>
|
6210 | 6210 |
|
6211 |
| - tif_read: align code of TIFFReadRawStrip() and TIFFReadRawTile() that differed for non good reason. Non-functional change normally. (fixes GitLab #162) |
| 6211 | + tif_read: align code of TIFFReadRawStrip() and TIFFReadRawTile() that deferred for non good reason. Non-functional change normally. (fixes GitLab #162) |
6212 | 6212 |
|
6213 | 6213 | 2019-10-01 Even Rouault <even.rouault@spatialys.com>
|
6214 | 6214 |
|
|
7740 | 7740 |
|
7741 | 7741 | 2017-11-23 Roger Leigh <rleigh@codelibre.net>
|
7742 | 7742 |
|
7743 |
| - appveyor: Correct path for git clone and skip artefact archival. |
| 7743 | + appveyor: Correct path for git clone and skip artifact archival. |
7744 | 7744 |
|
7745 | 7745 | 2017-11-22 Roger Leigh <rleigh@codelibre.net>
|
7746 | 7746 |
|
|
0 commit comments