Posts: 18,057
Joined: Aug 2007
Reputation:
688
Hitcher
Team-Kodi Member
Posts: 18,057
I've only just noticed this in the Video options and wondered how XBMC actually decided what's SD and what's not.
Also, where's the best place to find out about new features as they're added?
Posts: 12,706
Joined: Nov 2003
Reputation:
129
spiff
Team-Kodi Member
Posts: 12,706
anything < 720p is considered sd
and best place would be the svn logs
Posts: 18,057
Joined: Aug 2007
Reputation:
688
Hitcher
Team-Kodi Member
Posts: 18,057
What about 720p material whose resolution is 960x544 due to the black borders?
Posts: 12,706
Joined: Nov 2003
Reputation:
129
spiff
Team-Kodi Member
Posts: 12,706
that would be considered hd
Posts: 26,215
Joined: Oct 2003
Reputation:
187
Here's the check so there's no misunderstandings:
if (upscale == SOFTWARE_UPSCALING_SD_CONTENT && (m_iSourceHeight >= 720 || m_iSourceWidth >= 1280))
Thus, it is considered SD if height < 720 and width < 1280. If either height >= 720 or width >= 1280 then it will be considered HD.
In your particular example of 960x544, that would be SD. If you actually meant 1280x544 (i.e. a 2.35:1 aspect) then that would be HD.