1
0
mirror of https://github.com/marqs85/ossc.git synced 2024-06-16 08:29:33 +00:00

increase OSD width in line4x and 5x modes

This commit is contained in:
marqs 2019-10-15 19:57:17 +03:00
parent 70dc68d504
commit aeb164dd2f
3 changed files with 6423 additions and 6420 deletions

View File

@ -218,7 +218,7 @@ set_global_assignment -name ENABLE_SIGNALTAP OFF
set_global_assignment -name USE_SIGNALTAP_FILE output_files/ossc_la.stp
set_global_assignment -name FITTER_EFFORT "AUTO FIT"
set_global_assignment -name SEED 1
set_global_assignment -name SEED 6

File diff suppressed because it is too large Load Diff

View File

@ -687,7 +687,7 @@ void program_mode()
osd_x_size = (video_modes[cm.id].v_active > 700) ? 1 : 0;
osd_y_size = osd_x_size;
} else {
osd_x_size = 1 - cm.tx_pixelrep + (cm.fpga_hmultmode == FPGA_H_MULTMODE_OPTIMIZED_1X);
osd_x_size = 1 - cm.tx_pixelrep + (cm.fpga_hmultmode == FPGA_H_MULTMODE_OPTIMIZED_1X) + (cm.fpga_vmultmode > FPGA_V_MULTMODE_3X);
osd_y_size = 0;
}
osd->osd_config.x_size = osd_x_size;