Merge branch 'dev' into libraw-copylib

This commit is contained in:
Lawrence Lee
2024-03-02 21:01:34 -08:00
110 changed files with 5275 additions and 4040 deletions

View File

@@ -76,6 +76,20 @@ public:
}
protected:
enum class CropMode : std::uint_fast16_t { // RT
NA = 0, // RT
FullFrameOnGfx = 1, // RT
SportsFinderMode = 2, // RT
ElectronicShutter1_25xCrop = 4 // RT
}; // RT
// stores the cropdata read from the file RT
struct CropData { // RT
std::uint_fast16_t width, // RT
height, // RT
top_margin, // RT
left_margin; // RT
CropMode crop_mode = CropMode::NA; // RT
} read_crop; // RT
int exif_base, ciff_base, ciff_len;
rtengine::IMFILE *ifp;
FILE *ofp;