Kodi DSPlayer – DirectShow Player for Windows
#42
(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;

That's look nice! Also I'd say you can safely use 576,720,1080 for upper limit because it's height. But for width it's another matter because of aspect ratio like 848x480 would considered SD.

So if only height check 576 720 1080 would be ok. But if you want to use those numbers I think it's fine. Except 576 instread of 540
Reply


Messages In This Thread
RE: Kodi DSPlayer – DirectShow Player for Windows - by oldpoem - 2015-04-04, 03:58
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