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
MediaPortal 1 Talk
initial support for Hauppuage HD-PVR
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="WileECoyote" data-source="post: 396915" data-attributes="member: 83474"><p>Mister D,</p><p>I just installed the 'stock' SVN from 3/22 and then changed the time out from 10000 to 100 in the OnGraphStart() method. It lets the timeshifting start in less than 2 seconds, and channel changes are almost immediate. I have posted the DLL's if anyone is interested.</p><p></p><p>Wile E.</p><p></p><p> /// <summary></p><p> /// Should be called when the graph is about to start</p><p> /// Resets the state </p><p> /// If graph is already running, starts the pmt grabber to grab the</p><p> /// pmt for the new channel</p><p> /// </summary></p><p> public override void OnGraphStart()</p><p> {</p><p> Log.Log.WriteFile("HDPVR: subch:{0} OnGraphStart", _subChannelId);</p><p></p><p> if (SetupPmtGrabber(256, _serviceID))</p><p> {</p><p> DateTime dtNow = DateTime.Now;</p><p> while (_pmtVersion < 0)</p><p> {</p><p> Log.Log.Write("subch:{0} wait for pmt", _subChannelId);</p><p> Thread.Sleep(20);</p><p> TimeSpan ts = DateTime.Now - dtNow;</p><p> if (ts.TotalMilliseconds >= <strong>100</strong>)</p><p> {</p><p> Log.Log.Debug("Timedout waiting for PMT after {0} seconds. Increase the PMT timeout value?", ts.TotalSeconds);</p><p> break;</p><p> }</p><p> }</p><p> }</p><p> }</p></blockquote><p></p>
[QUOTE="WileECoyote, post: 396915, member: 83474"] Mister D, I just installed the 'stock' SVN from 3/22 and then changed the time out from 10000 to 100 in the OnGraphStart() method. It lets the timeshifting start in less than 2 seconds, and channel changes are almost immediate. I have posted the DLL's if anyone is interested. Wile E. /// <summary> /// Should be called when the graph is about to start /// Resets the state /// If graph is already running, starts the pmt grabber to grab the /// pmt for the new channel /// </summary> public override void OnGraphStart() { Log.Log.WriteFile("HDPVR: subch:{0} OnGraphStart", _subChannelId); if (SetupPmtGrabber(256, _serviceID)) { DateTime dtNow = DateTime.Now; while (_pmtVersion < 0) { Log.Log.Write("subch:{0} wait for pmt", _subChannelId); Thread.Sleep(20); TimeSpan ts = DateTime.Now - dtNow; if (ts.TotalMilliseconds >= [B]100[/B]) { Log.Log.Debug("Timedout waiting for PMT after {0} seconds. Increase the PMT timeout value?", ts.TotalSeconds); break; } } } } [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Talk
initial support for Hauppuage HD-PVR
Contact us
RSS
Top
Bottom