basic support for Fujifilm GFX 100

This commit is contained in:
heckflosse 2019-06-04 14:17:38 +02:00
parent 0b32acfefe
commit d46a043add
2 changed files with 7 additions and 0 deletions

View File

@ -1245,6 +1245,11 @@ Camera constants:
"ranges": { "white": 64886 }
},
{ // Quality C
"make_model": "FUJIFILM GFX 100",
"raw_crop": [ 0, 2, 11664, 8734 ]
},
{ // Quality B
"make_model": "FUJIFILM GFX 50S",
"dcraw_matrix": [ 11756,-4754,-874,-3056,11045,2305,-381,1457,6006 ], // DNGv9.9 D65

View File

@ -9279,6 +9279,8 @@ void CLASS identify()
apply_tiff();
if (!strcmp(model, "X-T3")) {
height = raw_height - 2;
} else if (!strcmp(model, "GFX 100")) {
load_flags = 0;
}
if (!load_raw) {
load_raw = &CLASS unpacked_load_raw;