Merge commit '16e502f1c50c8c0e10a5e014691e1c812a518c57' into libraw-snapshot-202502

Upgrade LibRaw to snapshot 202502.
This commit is contained in:
Lawrence Lee
2025-03-23 15:05:07 -07:00
98 changed files with 2840 additions and 1457 deletions

View File

@@ -10,10 +10,13 @@ public:
checked_buffer_t(short ord, int size);
checked_buffer_t(short ord, unsigned char *dd, int ss);
ushort sget2(int offset);
ushort sget2LL(INT64 offset) { return sget2(int(offset)); }
void checkoffset(int off);
unsigned char operator[](int idx);
unsigned sget4(int offset);
unsigned sget4LL(INT64 offset) { return sget4(int(offset)); }
double sgetreal(int type, int offset);
float sgetrealf(int type, int offset) { return float(sgetreal(type, offset)); }
unsigned char *data() { return _data; }
int tiff_sget(unsigned save, INT64 *tag_offset, unsigned *tag_id, unsigned *tag_type, INT64 *tag_dataoffset,