Home
last modified time | relevance | path

Searched refs:m_CustomZoomAmount (Results 1 – 9 of 9) sorted by relevance

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/video/
H A DPlayerController.cpp250 vs.m_CustomZoomAmount += 0.01f; in OnAction()
251 if (vs.m_CustomZoomAmount > 2.f) in OnAction()
252 vs.m_CustomZoomAmount = 2.f; in OnAction()
254 g_application.GetAppPlayer().SetRenderViewMode(ViewModeCustom, vs.m_CustomZoomAmount, in OnAction()
257 ShowSlider(action.GetID(), 216, vs.m_CustomZoomAmount, 0.5f, 0.1f, 2.0f); in OnAction()
264 vs.m_CustomZoomAmount -= 0.01f; in OnAction()
265 if (vs.m_CustomZoomAmount < 0.5f) in OnAction()
266 vs.m_CustomZoomAmount = 0.5f; in OnAction()
268 g_application.GetAppPlayer().SetRenderViewMode(ViewModeCustom, vs.m_CustomZoomAmount, in OnAction()
271 ShowSlider(action.GetID(), 216, vs.m_CustomZoomAmount, 0.5f, 0.1f, 2.0f); in OnAction()
[all …]
H A DVideoDatabase.cpp4459 settings.m_CustomZoomAmount = m_pDS->fv("ZoomAmount").get_asFloat(); in GetVideoSettings()
4515 …setting.m_InterlaceMethod, setting.m_ViewMode, setting.m_CustomZoomAmount, setting.m_CustomPixelRa… in SetVideoSettings()
4538 …idFile, setting.m_InterlaceMethod, setting.m_ViewMode, setting.m_CustomZoomAmount, setting.m_Custo… in SetVideoSettings()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/
H A DVideoSettings.cpp19 m_CustomZoomAmount = 1.0f; in CVideoSettings()
50 if (m_CustomZoomAmount != right.m_CustomZoomAmount) return true; in operator !=()
125 m_videoSettings.m_CustomZoomAmount = zoom; in SetViewMode()
H A DVideoSettings.h95 float m_CustomZoomAmount; // custom setting zoom amount variable
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/video/dialogs/
H A DGUIDialogVideoSettings.cpp101 g_application.GetAppPlayer().SetRenderViewMode(value, vs.m_CustomZoomAmount, in OnSettingChanged()
106 GetSettingsManager()->SetNumber(SETTING_VIDEO_ZOOM, vs.m_CustomZoomAmount); in OnSettingChanged()
119 …vs.m_CustomZoomAmount = static_cast<float>(std::static_pointer_cast<const CSettingNumber>(setting)… in OnSettingChanged()
132 g_application.GetAppPlayer().SetRenderViewMode(vs.m_ViewMode, vs.m_CustomZoomAmount, in OnSettingChanged()
402 …Video, SETTING_VIDEO_ZOOM, 216, SettingLevel::Basic, videoSettings.m_CustomZoomAmount, "%2.2f", 0.… in InitializeSettings()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/settings/
H A DMediaSettings.cpp88 …if (!XMLUtils::GetFloat(pElement, "zoomamount", m_defaultVideoSettings.m_CustomZoomAmount, 0.5f, 2… in Load()
89 m_defaultVideoSettings.m_CustomZoomAmount = 1.0f; in Load()
216 XMLUtils::SetFloat(pNode, "zoomamount", m_defaultVideoSettings.m_CustomZoomAmount); in Save()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/cores/VideoPlayer/VideoRenderers/
H A DBaseRenderer.cpp468 CDisplaySettings::GetInstance().SetZoomAmount(m_videoSettings.m_CustomZoomAmount); in SetViewMode()
492 m_videoSettings.m_CustomZoomAmount = CDisplaySettings::GetInstance().GetZoomAmount(); in SetViewMode()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/video/windows/
H A DGUIWindowFullScreen.cpp143 g_application.GetAppPlayer().SetRenderViewMode(vs.m_ViewMode, vs.m_CustomZoomAmount, in OnAction()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/interfaces/json-rpc/
H A DPlayerOperations.cpp587 GetNewValueForViewModeParameter(zoom, 0.01f, 0.5f, 2.f, vs.m_CustomZoomAmount); in SetViewMode()
613 vs.m_CustomZoomAmount, vs.m_CustomPixelRatio, vs.m_CustomVerticalShift, in SetViewMode()