Convert deprecated uint32 to uint32_t.

Change-Id: I057296a7ea90c3eeb9eaf251e08352a8491a591b
This commit is contained in:
Vincent Rabaud 2021-08-30 16:06:53 +02:00
parent 42592af875
commit 45eaacc939

View File

@ -46,7 +46,7 @@ static int ExtractMetadataFromTIFF(TIFF* const tif, Metadata* const metadata) {
(MetadataPayload*)((uint8_t*)metadata + (MetadataPayload*)((uint8_t*)metadata +
kTIFFMetadataMap[i].storage_offset); kTIFFMetadataMap[i].storage_offset);
void* tag_data; void* tag_data;
uint32 tag_data_len; uint32_t tag_data_len;
if (TIFFGetField(tif, kTIFFMetadataMap[i].tag, &tag_data_len, &tag_data) && if (TIFFGetField(tif, kTIFFMetadataMap[i].tag, &tag_data_len, &tag_data) &&
!MetadataCopy((const char*)tag_data, tag_data_len, payload)) { !MetadataCopy((const char*)tag_data, tag_data_len, payload)) {
@ -230,7 +230,7 @@ int ReadTIFF(const uint8_t* const data, size_t data_size,
alloc_size = (int64_t)(stride * image_height); alloc_size = (int64_t)(stride * image_height);
if (alloc_size < 0 || alloc_size != (tsize_t)alloc_size) goto End; if (alloc_size < 0 || alloc_size != (tsize_t)alloc_size) goto End;
raster = (uint32*)_TIFFmalloc((tsize_t)alloc_size); raster = (uint32_t*)_TIFFmalloc((tsize_t)alloc_size);
if (raster != NULL) { if (raster != NULL) {
if (TIFFReadRGBAImageOriented(tif, image_width, image_height, raster, if (TIFFReadRGBAImageOriented(tif, image_width, image_height, raster,
ORIENTATION_TOPLEFT, 1)) { ORIENTATION_TOPLEFT, 1)) {