Skip to content

Commit

Permalink
Merge branch 'MP1-5190-tve-add-symbol-rate-multiplier-for-dvb-c-cards…
Browse files Browse the repository at this point in the history
…-hauppauge-win-tv' into MP1.33_Pre.Release_Test7
  • Loading branch information
epbk committed Jan 15, 2024
2 parents 96f116b + 77c1e96 commit 3681387
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ public Card AddCard(string name, string devicePath, Server server)
0, false, true, false, (int)TvDatabase.DbNetworkProvider.Generic);

//Set symbolrate multiplier for some cards
if (name.StartsWith("Hauppauge WinTV-soloHD DVBC", StringComparison.CurrentCultureIgnoreCase)
|| name.StartsWith("Hauppauge WinTV-dualHD DVBC Tuner", StringComparison.CurrentCultureIgnoreCase))
card.SymbolRateMultiplier = 1000;
if (name != null && (name.StartsWith("Hauppauge WinTV-soloHD DVBC", StringComparison.CurrentCultureIgnoreCase)
|| name.StartsWith("Hauppauge WinTV-dualHD DVBC Tuner", StringComparison.CurrentCultureIgnoreCase)))
newCard.SymbolRateMultiplier = 1000;

newCard.Persist();
return newCard;
Expand Down

0 comments on commit 3681387

Please sign in to comment.