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)
Tuning Failed and Unable to Play
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="mm1352000" data-source="post: 808144" data-attributes="member: 82144"><p>Hi again</p><p></p><p></p><p>Okay, I'll post as soon as I get home from work.</p><p></p><p></p><p>It may conflict with other tuners and getting wide enough testing for the change would be difficult with analog TV being phased out in many countries. I get the impression that there must be a reason for the code - maybe to remove a blank video stream from radio content - however it was added *way* before my time. I'm not opposed to adding it; just conscious that it is a risk.</p><p></p><p></p><p>It is not the card manufacturer (Hauppauge) but the chipset manufacturer (NXP/Philips/Trident) that is important since NXP created the driver - all tuner "resellers" that use chips from the same "family" use similar/compatible/identical drivers. The HVR-2200 is based on the SAA7164 chip; my cards (Digitalnow Quattro and Pinnacle 7010ix) are based on the SAA7162 chip. I use the Blackgold BGT3540 driver.</p><p></p><p></p><p>Sure! <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite1" alt=":)" title="Smile :)" loading="lazy" data-shortname=":)" /></p><p></p><p>[CODE] public ITvSubChannel Tune(int subChannelId, IChannel channel)</p><p> {</p><p> Log.Log.WriteFile("analog: Tune:{0}", channel);</p><p> if (_graphState == GraphState.Idle)</p><p> {</p><p> BuildGraph();</p><p> }</p><p> BaseSubChannel subChannel;</p><p> if (_mapSubChannels.ContainsKey(subChannelId))</p><p> {</p><p> subChannel = _mapSubChannels[subChannelId];</p><p> }</p><p> else</p><p> {</p><p> subChannelId = GetNewSubChannel(channel);</p><p> subChannel = _mapSubChannels[subChannelId];</p><p> }</p><p> subChannel.CurrentChannel = channel;</p><p> subChannel.OnBeforeTune();</p><p> PerformTuning(channel);</p><p> subChannel.OnAfterTune();</p><p> try</p><p> {</p><p> RunGraph(subChannel.SubChannelId);</p><p> }</p><p> catch (Exception)</p><p> {</p><p> FreeSubChannel(subChannel.SubChannelId);</p><p> throw;</p><p> }</p><p> [B]//_encoder.UpdatePinVideo(channel.IsTv, _graphBuilder);[/B]</p><p> return subChannel;</p><p> }</p><p>[/CODE]</p><p></p><p>Comment out the _encoder.UpdatePinVideo() line and you're good to go. This is in TvEngine3/TVLibrary/TVLibrary/Implementations/Analog/Graphs/Analog/TvCardAnalog.cs.</p><p></p><p>mm</p></blockquote><p></p>
[QUOTE="mm1352000, post: 808144, member: 82144"] Hi again Okay, I'll post as soon as I get home from work. It may conflict with other tuners and getting wide enough testing for the change would be difficult with analog TV being phased out in many countries. I get the impression that there must be a reason for the code - maybe to remove a blank video stream from radio content - however it was added *way* before my time. I'm not opposed to adding it; just conscious that it is a risk. It is not the card manufacturer (Hauppauge) but the chipset manufacturer (NXP/Philips/Trident) that is important since NXP created the driver - all tuner "resellers" that use chips from the same "family" use similar/compatible/identical drivers. The HVR-2200 is based on the SAA7164 chip; my cards (Digitalnow Quattro and Pinnacle 7010ix) are based on the SAA7162 chip. I use the Blackgold BGT3540 driver. Sure! :) [CODE] public ITvSubChannel Tune(int subChannelId, IChannel channel) { Log.Log.WriteFile("analog: Tune:{0}", channel); if (_graphState == GraphState.Idle) { BuildGraph(); } BaseSubChannel subChannel; if (_mapSubChannels.ContainsKey(subChannelId)) { subChannel = _mapSubChannels[subChannelId]; } else { subChannelId = GetNewSubChannel(channel); subChannel = _mapSubChannels[subChannelId]; } subChannel.CurrentChannel = channel; subChannel.OnBeforeTune(); PerformTuning(channel); subChannel.OnAfterTune(); try { RunGraph(subChannel.SubChannelId); } catch (Exception) { FreeSubChannel(subChannel.SubChannelId); throw; } [B]//_encoder.UpdatePinVideo(channel.IsTv, _graphBuilder);[/B] return subChannel; } [/CODE] Comment out the _encoder.UpdatePinVideo() line and you're good to go. This is in TvEngine3/TVLibrary/TVLibrary/Implementations/Analog/Graphs/Analog/TvCardAnalog.cs. mm [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
Watch / Listen Media
Television (MyTV frontend and TV-Server)
Tuning Failed and Unable to Play
Contact us
RSS
Top
Bottom