Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server
For the colors: No you don't understand correctly. Please use the forum search I explained this with great details and examples at least 10 times.

For the "above" as "really larger as". The scaling uses the max from two dimensions. As most 1920x1080 movies are ripped with the black bars removed they are 1920x800 or something - so this 0% would always trigger the scaling and technically:

Code:
float scaleX = fabs(((float)m_sourceWidth - m_destRect.Width())/m_sourceWidth)*100;
float scaleY = fabs(((float)m_sourceHeight - m_destRect.Height())/m_sourceHeight)*100;
int minScale = CSettings::GetInstance().GetInt(CSettings::SETTING_VIDEOPLAYER_HQSCALERS);
if (scaleX < minScale && scaleY < minScale)
  return false;

if (g_Windowing.IsExtSupported("GL_EXT_framebuffer_object") && (m_renderMethod & RENDER_GLSL))
{
  // spline36 and lanczos3 are only allowed through advancedsettings.xml
  if(method != VS_SCALINGMETHOD_SPLINE36
  && method != VS_SCALINGMETHOD_LANCZOS3)
   return true;
  else
    return g_advancedSettings.m_videoEnableHighQualityHwScalers;
}

not lower means: larger or equal ... so even 1920x1080 will tick it. The default is bad. PR is pending: https://github.com/xbmc/xbmc/pull/9915
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.
Reply


Messages In This Thread
Live TV broken again? - by schamane - 2016-02-29, 19:56
Random crashes - by hal2100 - 2016-03-08, 22:03
RE: Intel VAAPI howto with Krypton v17 based on Ubuntu 16.04 server - by fritsch - 2016-06-05, 14:54
Strange Behaviour - by MicTie - 2016-12-07, 10:46
Working lirc with mce remote - by fr1day - 2019-08-10, 17:36
Logout Mark Read Team Forum Stats Members Help
Intel VAAPI howto with Leia v18 nightly based on Ubuntu 18.04 server18