I found this works great for cctv lens and mcm rewire crop without any vignetting from sides
case CROP_PRESET_mcm_mv1080_EOSM:
cmos_new[5] = 0x20;
cmos_new[7] = 0x800;
if (x3crop == 0x1 || crop_patch)
{
cmos_new[5] = 0x380;
cmos_new[7] = 0xaaa;
}
if (ratios == 0x0 && (x3crop == 0x1 || crop_patch))
{
cmos_new[5] = 0x380;
cmos_new[7] = 0xaaa;
}
break;
I also have this that works fine for 16:9 1920x1080p resolution(dialed down from 2520x1418) in 2.5k mode
But... I would like to also center image in 2520x1418 but i only see this for 2.5k mode and cmos settings that i centered while being in dialed down 1920x1080 resolution, its still not centered in 2520x1418:
case CROP_PRESET_2K_EOSM:
cmos_new[5] = 0x2c0; /* vertical (first|last) */
cmos_new[7] = 0x6a9; /* pink highlights without this */
break;
What should i add if i want to have different centering after i dial down resolution to 16:9 -1920x1080 and different when i use 16:9 2520x1418 ?
I also noticed that after recording mlv it goes back to liveview after slight pause and then framing is wrong , i have to enter playback mode, then press exit in corner, when it comes back to liveview then framing is correct, so after recording there is something thats changing CMOS value again messing up framing.
I also discovered that in 2.5k mode you can actually press small triangle arrows to move your framing around like during zoom, but i tried to get it centered when white zoom box is at the center.