Rename field types

This commit is contained in:
Abdelrahman Said 2024-04-21 02:38:09 +01:00
parent 7f6ffd0fea
commit 29890a6135

View File

@ -6,15 +6,15 @@
#define TIFF_TYPE(NAME, ID, VALUE, BYTES) ID = VALUE, #define TIFF_TYPE(NAME, ID, VALUE, BYTES) ID = VALUE,
#endif /* ifdef TIFF_TYPE_LOOKUP */ #endif /* ifdef TIFF_TYPE_LOOKUP */
TIFF_TYPE("UNSIGNED BYTE" , TIFF_ENTRY_BYTE , 0x0001, 1) // 8-bit unsigned integer TIFF_TYPE("UNSIGNED BYTE" , TIFF_FIELD_TYPE_BYTE , 0x0001, 1) // 8-bit unsigned integer
TIFF_TYPE("ASCII" , TIFF_ENTRY_ASCII , 0x0002, 1) // 8-bit byte that contains a 7-bit ASCII code; the last byte must be NUL (binary zero) TIFF_TYPE("ASCII" , TIFF_FIELD_TYPE_ASCII , 0x0002, 1) // 8-bit byte that contains a 7-bit ASCII code; the last byte must be NUL (binary zero)
TIFF_TYPE("UNSIGNED SHORT" , TIFF_ENTRY_SHORT , 0x0003, 2) // 16-bit (2-byte) unsigned integer TIFF_TYPE("UNSIGNED SHORT" , TIFF_FIELD_TYPE_SHORT , 0x0003, 2) // 16-bit (2-byte) unsigned integer
TIFF_TYPE("UNSIGNED LONG" , TIFF_ENTRY_LONG , 0x0004, 4) // 32-bit (4-byte) unsigned integer TIFF_TYPE("UNSIGNED LONG" , TIFF_FIELD_TYPE_LONG , 0x0004, 4) // 32-bit (4-byte) unsigned integer
TIFF_TYPE("UNSIGNED RATIONAL", TIFF_ENTRY_RATIONAL , 0x0005, 8) // Two LONGs: the first represents the numerator of a fraction; the second, the denominator TIFF_TYPE("UNSIGNED RATIONAL", TIFF_FIELD_TYPE_RATIONAL , 0x0005, 8) // Two LONGs: the first represents the numerator of a fraction; the second, the denominator
TIFF_TYPE("SIGNED BYTE" , TIFF_ENTRY_SBYTE , 0x0006, 1) // An 8-bit signed (twos-complement) integer TIFF_TYPE("SIGNED BYTE" , TIFF_FIELD_TYPE_SBYTE , 0x0006, 1) // An 8-bit signed (twos-complement) integer
TIFF_TYPE("UNDEFINED" , TIFF_ENTRY_UNDEFINED , 0x0007, 1) // An 8-bit byte that may contain anything, depending on the definition of the field TIFF_TYPE("UNDEFINED" , TIFF_FIELD_TYPE_UNDEFINED , 0x0007, 1) // An 8-bit byte that may contain anything, depending on the definition of the field
TIFF_TYPE("SIGNED SHORT" , TIFF_ENTRY_SSHORT , 0x0008, 2) // A 16-bit (2-byte) signed (twos-complement) integer TIFF_TYPE("SIGNED SHORT" , TIFF_FIELD_TYPE_SSHORT , 0x0008, 2) // A 16-bit (2-byte) signed (twos-complement) integer
TIFF_TYPE("SIGNED LONG" , TIFF_ENTRY_SLONG , 0x0009, 4) // A 32-bit (4-byte) signed (twos-complement) integer TIFF_TYPE("SIGNED LONG" , TIFF_FIELD_TYPE_SLONG , 0x0009, 4) // A 32-bit (4-byte) signed (twos-complement) integer
TIFF_TYPE("SIGNED RATIONAL" , TIFF_ENTRY_SRATIONAL , 0x000a, 8) // Two SLONGs: the first represents the numerator of a fraction, the second the denominator TIFF_TYPE("SIGNED RATIONAL" , TIFF_FIELD_TYPE_SRATIONAL , 0x000a, 8) // Two SLONGs: the first represents the numerator of a fraction, the second the denominator
TIFF_TYPE("FLOAT" , TIFF_ENTRY_FLOAT , 0x000b, 4) // Single precision (4-byte) IEEE format TIFF_TYPE("FLOAT" , TIFF_FIELD_TYPE_FLOAT , 0x000b, 4) // Single precision (4-byte) IEEE format
TIFF_TYPE("DOUBLE" , TIFF_ENTRY_DOUBLE , 0x000c, 8) // Double precision (8-byte) IEEE format TIFF_TYPE("DOUBLE" , TIFF_FIELD_TYPE_DOUBLE , 0x000c, 8) // Double precision (8-byte) IEEE format