aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-11[droid] - updated the readmes - a spoon for some platform foreign developersMemphiz
2013-12-11Merge pull request #3808 from opdenkamp/cec-fixesLars Op den Kamp
CEC fixes
2013-12-11[CEC] fixed - reconnect when receiving CEC_ALERT_CONNECTION_LOSTLars Op den Kamp
2013-12-11[CEC] fixed - don't send an inactive source message when sending a standby ↵Lars Op den Kamp
command. fixes XBMC not grabbing active source status when the TV comes out of standby
2013-12-11[CEC] fixed - fetch the active source status before sending a standby commandLars Op den Kamp
2013-12-10Merge pull request #3749 from popcornmix/fullscreen_segpopcornmix
[rbp/omxplayer] Avoid segfault when switching fullscreen
2013-12-10Merge pull request #3799 from popcornmix/rm_thread_decodepopcornmix
[rbp] Disable frame multi threaded decoded settings option
2013-12-10Merge pull request #3805 from popcornmix/enable_vsyncpopcornmix
[rbp] Enable Vsync as a default
2013-12-10Merge pull request #3713 from Jalle19/pvr-fix-custom-viewmodeLars Op den Kamp
[pvr] fix view mode not being set properly after channel switch under certain circumstances
2013-12-10Merge pull request #3794 from xhaggi/pvr-epg-jobLars Op den Kamp
[pvr] fix broken epg create after (#3684)
2013-12-10Merge pull request #3696 from xhaggi/epg-past-dataLars Op den Kamp
Support for past data in epg timeline view
2013-12-10Merge pull request #3803 from xhaggi/pvr-recordings-subdirsLars Op den Kamp
[pvr] adds parent directory item to recordings list
2013-12-10Merge pull request #3798 from Jalle19/pvr-fix-queuejobLars Op den Kamp
Fix memory leak in QueueJob and drop useless parameter
2013-12-10[rbp] Enable Vsync as a defaultpopcornmix
This was done in #2388, but got lost in the setting refactor and is currently disabled
2013-12-10Merge pull request #3783 from wsoltys/vortexwsoltys
[WIN32] build vortex for XBMC
2013-12-10[WIN32] added vortex visualizations data (from xbox package), a ↵WiSo
settings.xml, addon.xml and strings.po to our repo
2013-12-10[WIN32] build vortex visualization within xbmc project and adapt it to the ↵WiSo
current addon api.
2013-12-10 [pvr] adds parent directory item to recordings listxhaggi
This PR adds a parent directory item ".." to the recordings list if a parent directory exists.
2013-12-10[pvr] remove unused parameter bAutoSkip in GetSubDirectories()xhaggi
2013-12-10[pvr] cosmetic: remove duplicate include of StringUtils.hxhaggi
2013-12-10[pvr] observe PVRManager state to trigger epg createxhaggi
2013-12-10Merge pull request #3774 from FernetMenta/skiptrackRainer Hochecker
Inform (pa)player about intent to reopen on skipping tracks
2013-12-10Merge pull request #3725 from fetzerch/bugfix-recordingsLars Op den Kamp
[pvr] Fix missing recordings
2013-12-10[rbp] Disable frame multi threaded decoded settings optionpopcornmix
Makes no sense on Pi
2013-12-10ActiveAE: fix port comparison in state machineRainer Hochecker
2013-12-10[pvr] remove unused parameterSam Stenvall
2013-12-10[pvr] remove redundant job name parameter from QueueJob() (it canSam Stenvall
be deduced from the job itself)
2013-12-10[pvr] fix memory leak in QueueJob() when the job is not actuallySam Stenvall
queued
2013-12-10AE: add interface method KeepConfigurationRainer Hochecker
2013-12-10paplayer: instruct AE to keep configuration when skipping tracksRainer Hochecker
2013-12-10IPlayer: let player know on close if it will be reopenedRainer Hochecker
2013-12-09Merge pull request #3793 from FernetMenta/shaderRainer Hochecker
LinuxRendererGL: make sure we have a shader defined
2013-12-10[LINUX] Fix display of labelless mount points.Trent Nelson
UDisks storage provider shouldn't assume volumes are in the GB range.
2013-12-09Merge pull request #3695 from Karlson2k/http_header_rfc2616jmarshallnz
Fix: process HTTP header according to RFC 2616
2013-12-09Merge pull request #3650 from Karlson2k/fix_pcre_utf8jmarshallnz
Fix PCRE UTF-8 error (mostly for scrapers)
2013-12-09Merge pull request #3574 from afedchin/3d_subs_depthJoakim Plate
[3D] add 3D subtitle depth setting
2013-12-09Merge pull request #3615 from FernetMenta/vdpauRainer Hochecker
vdpau: move cropping of top and bottom lines to renderer
2013-12-09Merge pull request #3562 from Karlson2k/vfs_update_small_02jmarshallnz
[vfs] CFile: remove 'virtual' from destructor
2013-12-09Merge pull request #3709 from bavison/cache_utf8_textjmarshallnz
Add caching of text labels at the UTF8 level
2013-12-09Merge pull request #3785 from ronie/confluence-rightbuttonsMartijn Kaijser
[Confluence] move buttons to the right side, improve navigation
2013-12-09Add caching of text labels at the UTF8 levelBen Avison
Previously, CGUITextLayout::Update converted its string argument from UTF8 to UTF16, then passed it to CGUITextLayout::UpdateW, where it was compared against a cached copy of the string (in its UTF16 form). However, the conversion itself was taking up a reasonable chunk of CPU time. This patch adds a similar cache of the string in its UTF8 form to the Update method, and splits the non-cache part of UpdateW into a separate function, so we can bypass it the case where we've tested it against the UTF8 cache. I have measured the effect while the Videos window of the default skin was open (but idle) on a Raspberry Pi, and this reduced the CPU usage by 2.9% from 39.1% to 36.2%: Before After Mean StdDev Mean StdDev Confidence Change IdleCPU% 39.1 0.9 36.2 0.5 100.0% +8.1%
2013-12-09Change the string comparison in CGUITextLayout::UpdateW to be case-sensitiveBen Avison
It seems likely that it was only case-insensitive due to the the default seting of CStdStr::Equals. It's unlikely that you'd ever want to update a string with another which is the same except for the case of one or more characters, but if you did, I doubt you'd want to use the cached version if so. And you're slowing down the comparison in all other cases to achieve that dubious behaviour.
2013-12-09HttpHeader::GetCharset: fix: properly find charset according to RFC 2616Karlson2k
* detect more than one whitespace * use 'tab' as whitespace * allow charset to be quoted
2013-12-09HttpHeader::GetMimeType: fix: trim whitespace chars according to RFC2616Karlson2k
2013-12-09HttpHeader: fix: parse header properly according to RFC 2616Karlson2k
* use 'tab' as whitespace as well as 'space' * process header lines divided to several lines with whitespace
2013-12-09LinuxRendererGL: make sure we have a shader definedRainer Hochecker
2013-12-09Merge pull request #3772 from nigeljonez/nfsfix-14727Memphiz
[nfs] Fix syncing issue from Trac #14727
2013-12-09CharsetConverter::ToUtf8: add ability to fail on bad characterKarlson2k
2013-12-09StringUtils::Trim: add overload with trim chars parameterKarlson2k
2013-12-09StringUtils::TrimLeft/TrimRight: pass trimming chars as constant character ↵Karlson2k
strings