mirror of
https://github.com/marqs85/ossc.git
synced 2024-11-19 05:30:48 +00:00
fix locking issue with fractional sample rates
This commit is contained in:
parent
edb300e03a
commit
8b35ba3339
File diff suppressed because it is too large
Load Diff
@ -570,12 +570,14 @@ void program_mode()
|
||||
cm.id = retval;
|
||||
vm_sel = cm.id;
|
||||
|
||||
pll_h_total = (vm_conf.h_skip+1) * vmode_in.timings.h_total + (((vm_conf.h_skip+1) * vmode_in.timings.h_total_adj * 5 + 50) / 100);
|
||||
|
||||
// Double TVP7002 PLL sampling rate when possible to minimize jitter
|
||||
while (1) {
|
||||
pll_h_total = (vm_conf.h_skip+1) * vmode_in.timings.h_total + (((vm_conf.h_skip+1) * vmode_in.timings.h_total_adj * 5 + 50) / 100);
|
||||
pclk_i_hz = h_hz * pll_h_total;
|
||||
|
||||
if ((pclk_i_hz < 25000000UL) && ((vm_conf.si_pclk_mult % 2) == 0)) {
|
||||
pll_h_total *= 2;
|
||||
vm_conf.h_skip = 2*(vm_conf.h_skip+1)-1;
|
||||
vm_conf.si_pclk_mult /= 2;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user