- added loader for TCL/Thomson Channel_List_*.tar with DtvData.db and satellite.db inside

- fixed text input in "Favorites" column (for lists that only have favorite markers and not individual numbers)
- converted source code to use SDK/MSBuild project files (for future migration to .NET 7 or 8)
This commit is contained in:
Horst Beham
2023-01-03 19:22:58 +01:00
parent 80fc264bd0
commit df0dac0f23
15 changed files with 3643 additions and 4229 deletions

View File

@@ -181,8 +181,8 @@ left outer join ChanDataTable ac on ac.handle=a.m_channel_no
// DVB
if (!r.IsDBNull(ixD + 0))
{
channel.OriginalNetworkId = r.GetInt32(ixD + 0) & 0x1FFF;
channel.TransportStreamId = r.GetInt32(ixD + 1) & 0x1FFF;
channel.OriginalNetworkId = r.GetInt32(ixD + 0) & 0x7FFF;
channel.TransportStreamId = r.GetInt32(ixD + 1) & 0x7FFF;
channel.ServiceId = r.GetInt32(ixD + 2) & 0x1FFF;
channel.ServiceType = r.GetInt32(ixD + 3) & 0x1FFF;
channel.Provider = r.GetString(ixD + 5);