Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvb: fix the compensation for maximal frequency delta based on SR
  • Loading branch information
perexg committed Aug 6, 2016
1 parent 01c26fc commit 39ffcb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/mpegts_network_dvb.c
Expand Up @@ -525,11 +525,11 @@ dvb_network_find_mux
// and remember the ONID and TSID must agree
} else {
/* the freq. changes for lower symbol rates might be smaller */
deltaf = 4000;
if (dmc->u.dmc_fe_qpsk.symbol_rate < 5000000)
deltaf = 1900;
if (dmc->u.dmc_fe_qpsk.symbol_rate < 10000000)
deltaf = 2900;
deltaf = 4000;
}
}

Expand Down

0 comments on commit 39ffcb5

Please sign in to comment.