aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-10[pvr] - fix epg searchRainer Hochecker
2016-04-10[pictures] CGUIWindowPictures: properly pass on all arguments to OnClick()montellese
2016-04-10[addons] CGUIWindowAddonBrowser: properly pass on all arguments to OnClick()montellese
2016-04-10[interfaces] xbmcgui::WindowXMLInterceptor: fix bad override of ↵montellese
CGUIWindowMedia::OnClick()
2016-04-10[music] CGUIWindowMusicNav: fix bad override of CGUIWindowMedia::OnClick()montellese
2016-04-10Merge pull request #9598 from FernetMenta/pvrRainer Hochecker
[pvr] - fix update addons, get also disabled addons
2016-04-10Merge pull request #9596 from popcornmix/omxwarnpopcornmix
OMXPlayerVideo: Avoid warnings from initialisation order
2016-04-10Merge pull request #9594 from popcornmix/mmalvsyncpopcornmix
[mmalrenderer] Wait for vsync before submitting to mmal when display sync is disabled
2016-04-10[pvr] skip persisting EGP on CreateChannelEpgsRainer Hochecker
2016-04-10Revert "[epg] avoid PVR thread to persist epg tables directly (sync issue ↵Rainer Hochecker
with epg thread)" this change makes no sense. It triggers Persist for systems that want to ignore DB This reverts commit be24ceb3211aa5b1d0cc6a8395ba29a0b005f0be.
2016-04-10[pvr] - fix update addons, get also disabled addonsRainer Hochecker
2016-04-10Merge pull request #9577 from ronie/temperatureronie
proper rounding of temperature values - fixes trac #16671
2016-04-10MMAL: Increase GetAllowedReferences to allow larger queue in RenderManagerpopcornmix
2016-04-10VideoPlayer: some rework after b37c8565e080b89fb51e2f5963a38cd6360d021cRainer Hochecker
2016-04-10added: IO control option to enable/disable retry inside file protocolsarnova
2016-04-10fixed: Superflous variable initarnova
2016-04-10OMXPlayerVideo: Avoid warnings from initialisation orderpopcornmix
2016-04-10Merge pull request #9584 from AlwinEsch/improve-pvr-partAlwin Esch
[pvr] reduce compare amount on PVRManager to detect window
2016-04-10MMALRenderer: Block in RenderUpdate to avoid high CPU with WaitPresentTime ↵popcornmix
commits
2016-04-10[mmalrenderer] Wait for vsync before submitting to mmal when display sync is ↵popcornmix
disabled This avoids an issue where video occasionally goes stuttery after a seek, until the next pause/play or seek. The issue is when display sync is disabled, and framerate of video matches display, and render times are coincident with vsync you find that depending on timestamp/scheduling jitter, you may or may not get an update each vsync resulting in stuttery video. Some scheme to force render times to be dependent on vsync is required. We do this by using a queue that is popped following vsyncs. We ensure the queue always has 1 or 2 frames so it doesn't underrun with a late frame, but this adds a frame of latency.
2016-04-10[rbp] Refactor the vsync handler to support multiple callerspopcornmix
2016-04-10[python] refactor addContextMenuItemsThomas Amland
2016-04-10[python] deprecate ability for plugins to replace context menu. broken.Thomas Amland
2016-04-10[contextmenu] fix ordering of items from plugins. should be on topThomas Amland
2016-04-10[python-api] add xbmcgui.Dialog().contextmenu()phil65
2016-04-10[python] cosmetics for docsphil65
2016-04-10[contextmenu] dont clear items from callerThomas Amland
2016-04-10changed: More accurate message for low readrate conditionarnova
2016-04-10[pvr] remove unused custom addon update logicThomas Amland
2016-04-10Merge pull request #9585 from AlwinEsch/improve-pvr-part-2Alwin Esch
[pvr] add virtual and override to shared CPVRClients functions
2016-04-10Merge pull request #9580 from tamland/fix_add_source_headingtamland
make heading in add/edit source dialog properly translatable
2016-04-10Merge pull request #9246 from Tolriq/settings_fixjenkins4kodi
2016-04-10Merge pull request #9256 from Tolriq/json_setfiledetailsDave Blake
[JSON] Add Files.SetFileDetails to JSON API
2016-04-09Remove commented stuff, update cmake builds as well and ofc, packaging ↵Pär Björklund
crossguid failed so bump it to v3
2016-04-09Merge pull request #9542 from FernetMenta/vplayerRainer Hochecker
VideoPlayer: drop WaitPresentTime + simplify render loop
2016-04-09VideoPlayer: bump number of render buffers for sw decodingRainer Hochecker
2016-04-09VideoPlayer: rework frame skippingRainer Hochecker
2016-04-09OMXPlayer: use SystemClock instead of DVDClock for a simple timerRainer Hochecker
2016-04-09VideoPlayer: make videoRefClock an object of DVDClock'Rainer Hochecker
2016-04-09VideoPlayer: only check skipping if we render a frame, saves CPURainer Hochecker
2016-04-09VideoPlayer: move setting videoDelay from player to rendererRainer Hochecker
2016-04-09rendering: skipping gui rednering should be independent from dirtyRainer Hochecker
2016-04-09move FinishPipeline from application to gfx contextRainer Hochecker
2016-04-09VidoePlayer: do not block renderthread if no gui was rendered and video is ↵Rainer Hochecker
separate layer
2016-04-09simplify render loopRainer Hochecker
2016-04-09VideoPlayer: simplify video redneringRainer Hochecker
2016-04-09VideoPlayer: drop WaitPresentTimeRainer Hochecker
2016-04-09Merge pull request #9575 from Montellese/win32_fix_testsetupjenkins4kodi
2016-04-09Merge pull request #9583 from Voyager1/vs2015-emufixjenkins4kodi
2016-04-09This should resolve the python issues caused by vs2015 upgrade.Pär Björklund
Fixed copying of dll during build to avoid risking using python27.dll from system32 Rebuilt all statically linked libs with _ITERATOR_DEBUG_LEVEL=0 because of performance issues, especially during video development Curl should once again be linked against openssl switched all projects to use /MD or /MDd because it enables sharing of env between the loaded modules making our environment hacks less needed. Added curl and openssl to ignore list to avoid them being hooked by our crt emulation. This needs a proper fix and is likely resolved by Voyager's PR