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
Development
General Development (no feature request here!)
Add SetQualityHAUPPAUGE function
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="arogerm" data-source="post: 143890" data-attributes="member: 47854"><p>It's possible add this function to TvCardAnalogBase class for asign quality to HAUPPAGE cards?</p><p></p><p>Add en declarations</p><p></p><p>int _minKbps;</p><p>int _maxKbps;</p><p>bool _isVBR;</p><p></p><p>Add in a constructor of class TvCardAnalogBase default values</p><p></p><p>_minKbps = 2000;</p><p>_maxKbps = 4000;</p><p>_isVBR = true;</p><p></p><p>Add function</p><p></p><p>public void SetQualityHAUPPAUGE(int minKbps, int maxKbps, bool isVBR)</p><p>{</p><p> _minKbps = minKbps;</p><p> _maxKbps = maxKbps;</p><p> _isVBR = isVBR</p><p>}</p><p></p><p>change in BuildGraph this line</p><p></p><p> _haupPauge.SetVideoBitRate( 2000, 4000, true );</p><p>for</p><p> _haupPauge.SetVideoBitRate( _minKbps, _maxKbps, _isVBR );</p><p></p><p></p><p>Exist other way for change the quality on a HaupPauge Cards?</p><p></p><p>Thank's</p></blockquote><p></p>
[QUOTE="arogerm, post: 143890, member: 47854"] It's possible add this function to TvCardAnalogBase class for asign quality to HAUPPAGE cards? Add en declarations int _minKbps; int _maxKbps; bool _isVBR; Add in a constructor of class TvCardAnalogBase default values _minKbps = 2000; _maxKbps = 4000; _isVBR = true; Add function public void SetQualityHAUPPAUGE(int minKbps, int maxKbps, bool isVBR) { _minKbps = minKbps; _maxKbps = maxKbps; _isVBR = isVBR } change in BuildGraph this line _haupPauge.SetVideoBitRate( 2000, 4000, true ); for _haupPauge.SetVideoBitRate( _minKbps, _maxKbps, _isVBR ); Exist other way for change the quality on a HaupPauge Cards? Thank's [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Development
General Development (no feature request here!)
Add SetQualityHAUPPAUGE function
Contact us
RSS
Top
Bottom