home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
Watch / Listen Media
Television (MyTV frontend and TV-Server)
Can't tune to certain channels (Specifically TP 12501 for Bell)
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="damaster" data-source="post: 288877" data-attributes="member: 60795"><p>I've got a patch for this problem on RC2 (SVN 19705). Code change is only to one source file: TVLibrary/Implementations/DVB/Graphs/TvDvbChannel.cs:</p><p>[code]</p><p> if (_mdplugs != null)</p><p> {</p><p> DVBBaseChannel chan = _currentChannel as DVBBaseChannel;</p><p>- if (chan != null)</p><p>+ // If the _newCA variable is still false, then the CA table receive callback has not triggered yet</p><p>+ if (chan != null && (! _newCA))</p><p> {</p><p> //HACK: Currently Premiere Direkt Feeds (nid=133) have the free_ca flag in SDT set to true (means not scrambled), so we have to override this</p><p> if ((!chan.FreeToAir) || (chan.NetworkId == 133 && !chan.Provider.Equals("BetaDigital")))</p><p> {</p><p>- if (_newCA == false)</p><p>+ //HACK: For Bell ExpressVu, don't need to wait for CA</p><p>+ if (chan.NetworkId == 256 || chan.NetworkId == 257)</p><p> {</p><p>+ _newCA = true; // Set _newCA to true to avoid waiting for CA table</p><p>+ }</p><p>+ else</p><p>+ {</p><p> Log.Log.Info("subch:{0} SendPmt:wait for ca", _subChannelId);</p><p> return false;//cat not received yet</p><p> }</p><p>[/code]</p><p></p><p>Patch file and modified source file attached. Can one of the devs please submit this into the next SVN?</p></blockquote><p></p>
[QUOTE="damaster, post: 288877, member: 60795"] I've got a patch for this problem on RC2 (SVN 19705). Code change is only to one source file: TVLibrary/Implementations/DVB/Graphs/TvDvbChannel.cs: [code] if (_mdplugs != null) { DVBBaseChannel chan = _currentChannel as DVBBaseChannel; - if (chan != null) + // If the _newCA variable is still false, then the CA table receive callback has not triggered yet + if (chan != null && (! _newCA)) { //HACK: Currently Premiere Direkt Feeds (nid=133) have the free_ca flag in SDT set to true (means not scrambled), so we have to override this if ((!chan.FreeToAir) || (chan.NetworkId == 133 && !chan.Provider.Equals("BetaDigital"))) { - if (_newCA == false) + //HACK: For Bell ExpressVu, don't need to wait for CA + if (chan.NetworkId == 256 || chan.NetworkId == 257) { + _newCA = true; // Set _newCA to true to avoid waiting for CA table + } + else + { Log.Log.Info("subch:{0} SendPmt:wait for ca", _subChannelId); return false;//cat not received yet } [/code] Patch file and modified source file attached. Can one of the devs please submit this into the next SVN? [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
Watch / Listen Media
Television (MyTV frontend and TV-Server)
Can't tune to certain channels (Specifically TP 12501 for Bell)
Contact us
RSS
Top
Bottom