Kodi DSPlayer – DirectShow Player for Windows
#47
(2015-04-04, 02:58)aracnoz Wrote: Yesterday I worked on a little surprise, now the gui that manage madVR's settings may not be enough because we want to be able to customize the settings per resolution and then here's the surprise

Image

default settings saved per resolution, so I think that now it's very complete

the rule at playstart it's

try to load defaults per file's settings
if there is not success, try to load defaults per resolution's settings
if there is not success, load defaults global settings

maybe there is to add the resolution UHD

Now I would like your opinion, these are the rules for determining the various resolutions

would we change something?

Code:
if (height> 0 && height <= 600)
  res = 540;
if (height> 600 && height <= 1000)
  res = 720;
if (height> 1000)
  res = 1080;

I also think using height would do the trick:

if (srcHeight >= 481) and (srcHeight <= 576) "576p"

if (srcHeight >= 577) and (srcHeight <= 720) "720p"

if (srcHeight >= 721) and (srcHeight <= 1080) "1080p"

if (srcHeight >= 1081) and (srcHeight <= 2160) "UHD"

else if (srcHeight <= 575) "SD"

Edit: to remove width variable.
Reply


Messages In This Thread
RE: Kodi DSPlayer – DirectShow Player for Windows - by Warner306 - 2015-04-04, 06:43
Lockup on STOP issue resolved! - by MKANET - 2015-04-11, 21:59
RE: 4G aware patch - by MagikMark - 2015-09-08, 03:27
Alt-F4 no longer quits - by JeffA - 2015-10-31, 20:38
H265 playback - by rew88 - 2017-11-04, 00:41
RE: H265 playback - by ashlar - 2017-11-04, 16:21
RE: H265 playback - by rew88 - 2017-11-05, 01:34
RE: H265 playback - by ashlar - 2017-11-05, 16:48
RE: H265 playback - by rew88 - 2017-11-05, 23:08
RE: H265 playback - by ashlar - 2017-11-06, 12:00
Leia 18 - by terpsarlington - 2017-11-21, 03:51
RE: Leia 18 - by spencerjford - 2017-11-21, 06:24
Display Modes / Refresh Rates - by goofer69 - 2019-09-20, 00:19
RE: Display Modes / Refresh Rates - by ashlar - 2019-09-20, 00:39
RE: Display Modes / Refresh Rates - by ashlar - 2019-09-20, 19:35
DSPlayer 23.810 to 23.976 - by Runakanta - 2018-05-09, 03:24
RE: DSPlayer 23.810 to 23.976 - by Warner306 - 2018-05-10, 01:32
Logout Mark Read Team Forum Stats Members Help
Kodi DSPlayer – DirectShow Player for Windows47