mirror of
https://github.com/marqs85/ossc
synced 2025-04-18 02:52:38 +03:00
fix OSD size in interlace passthru mode
This commit is contained in:
parent
20a5696977
commit
cbe2611471
File diff suppressed because it is too large
Load Diff
@ -722,8 +722,8 @@ void program_mode()
|
||||
pll_reconfigure(cm.pll_config);
|
||||
|
||||
if (cm.fpga_vmultmode == FPGA_V_MULTMODE_1X) {
|
||||
osd_x_size = (video_modes[cm.id].v_active > 700) ? 1 : 0;
|
||||
osd_y_size = osd_x_size;
|
||||
osd_y_size = (video_modes[cm.id].v_active > 700) ? 1 : 0;
|
||||
osd_x_size = osd_y_size + !!(video_modes[cm.id].flags & MODE_INTERLACED);
|
||||
} else {
|
||||
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;
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user