Skip to content

Commit

Permalink
The filter name for the 6928 is confirmed so CI support can be added.…
Browse files Browse the repository at this point in the history
… It is currently not working as there is an issue with opening and closing the CI interface without rebuilding the graph. Also, fix a bug in the CloseCi function - the CI handle should not be set to null before calling On_Exit_Ci() (!!!).
  • Loading branch information
mm1352000 committed Dec 29, 2011
1 parent 9ba2dbe commit b71e17b
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -338,8 +338,8 @@ private struct BdaExtensionParams

private static readonly string[] TunersWithCiSlot = new string[]
{
"TBS 5980 CI Tuner"
//"TBS 6928 DVBS/S2 Tuner"
"TBS 5980 CI Tuner",
"TBS 6928 DVBS/S2 Tuner"
//"TBS 6992 DVBS/S2 Tuner A"
//"TBS 6992 DVBS/S2 Tuner B"
};
Expand Down Expand Up @@ -728,8 +728,8 @@ public void CloseCi()
}

Log.Log.Debug("Turbosight: close conditional access interface");
_ciHandle = IntPtr.Zero;
On_Exit_CI(_ciHandle);
_ciHandle = IntPtr.Zero;
Marshal.FreeCoTaskMem(_mmiMessageBuffer);
Marshal.FreeCoTaskMem(_mmiResponseBuffer);
Marshal.FreeCoTaskMem(_pmtBuffer);
Expand Down

0 comments on commit b71e17b

Please sign in to comment.