aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-28remove obsolete .conf fileMartijn Kaijser
2013-09-28remove old unused bash scriptMartijn Kaijser
2013-09-28[darwin] remove unused buildbot filesMartijn Kaijser
2013-09-28[win32] remove unused .exe fileMartijn Kaijser
2013-09-28[win32] update package listMartijn Kaijser
2013-09-28Merge pull request #3263 from fetzerch/bugfix-osdchannelsLars Op den Kamp
pvr: Fix crash when opening PVROSDChannels while playing a recording
2013-09-27Merge pull request #3317 from Karlson2k/charsetconverter_rework_02jmarshallnz
CharsetСonverter rework - Part 2
2013-09-27gles, fixed, more missing codeS. Davilla
2013-09-27Merge pull request #3137 from jmbreuer/upstream-sortbyjmarshallnz
Differentiate between "unsorted" and "unsortable"
2013-09-27Merge pull request #3272 from MartijnKaijser/win32_removeMartijn Kaijser
[win32] cleanup VS2010 build solutions
2013-09-26Merge pull request #3292 from bavison/faster_string_comparisonsjmarshallnz
Faster string comparison functions in StringUtils
2013-09-27Faster string comparison functions in StringUtilsBen Avison
The methods EqualsNoCase(), StartsWith() and EndsWith() required quite a lot of unncessary creation and destruction of std::strings, whether it be the creation of a temporary copy that could be forced to lower-case, a temporary copy that was a substring of one of the inputs, or just marshalling a string literal argument into a std::string. These functions don't appear to be used all that much at the moment; when I profiled opening the songs library, I saw only a 1% improvement, which was within the sampling noise threshold. But with PR #3225 and PR #3290 coming along, that looks set to change. Once the functions are being called millions of times, those heap operations really start to get noticeable. Also, split StartsWith() and EndsWith() into multiple separately-named functions, according to case sensitivity. Formerly, there was an optional parameter (default off) to indicate that these operations were case-*sensitive*, which is actually computationally simpler to perform. Now the naming convention is consistent with EqualsNoCase: StartsWith - case-sensitive EndsWith - case-sensitive StartsWithNoCase - case-insensitive EndsWithNoCase - case-insensitive With the case-sensitive versions now easier to type, it will hopefully encourage future developers to use them in preference.
2013-09-26Merge pull request #3254 from koying/fixcleaninetjmarshallnz
FIX: Do not remove internet files from video db only because they come from a disappeared source
2013-09-26gles, fixed, add missing functionsS. Davilla
2013-09-26Merge pull request #3124 from koying/fixplugingetdirlockJim Carroll
FIX: avoid waiting forever on a locked CPluginDirectory while exiting
2013-09-26Merge pull request #3334 from koying/CHGstfrockchipChris Browet
CHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)
2013-09-26Merge pull request #3202 from mazkolain/python-jsonrpcfixJim Carroll
Avoid locking other Python threads when calling xbmc.executeJSONRPC Fixes a bug. Can't hurt anything so it's going in.
2013-09-26Merge pull request #3258 from koying/fixdroidconfigeventChris Browet
FIX: [droid] Prevent droid from shutting us down when an usb/BT keyboard./gamepad is plugged in/out
2013-09-26Merge pull request #3332 from ace20022/cximage_fixesMartijn Kaijser
[Fix] Some cximage fixes
2013-09-26ActiveAE: disable AE_FMT_FLOAT on AESinkAUDIOTRACK, AE_FMT_FLOAT is not ↵S. Davilla
clipped correctly and makes an icky noise when audio volume peaks
2013-09-26Merge pull request #3333 from koying/FIXjnitypoChris Browet
FIX: [droid] JNI typo
2013-09-26Merge pull request #3331 from FernetMenta/textureRainer Hochecker
make sure gl textures are deleted by render thread
2013-09-26Merge pull request #3205 from koying/fixSFinvalidptsChris Browet
FIX: [stagefright] ignore frames with no valid pts
2013-09-26FIX: [droid] JNI typoChris "Koying" Browet
2013-09-26CHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)Chris "Koying" Browet
2013-09-26[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in ↵ace20022
libdcr.
2013-09-26[cximage] Fix resource leak in dcraw.ace20022
2013-09-26[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in ↵ace20022
dcraw.
2013-09-26[cximage] Fix invalid number of character ({) when these macros are defined: ↵ace20022
'PNG_NO_WRITE_FILTERING' in pngwutil.
2013-09-26fix memleak, make sure gl textures are deleted by render thread, thanks to ↵Rainer Hochecker
popcornmix
2013-09-26[cximage] Fix common realloc mistake: 'm_pBuffer' nulled but not freed upon ↵ace20022
failure in xmemfile.
2013-09-26[cximage] Fix uninitialized struct member in ximadsp.ace20022
2013-09-26[cximage] Fix memleak in ximadsp.ace20022
2013-09-26Merge pull request #3323 from bfg1981/SFTPVerbosityMartijn Kaijser
Adds verbosity to SFTPFile, with log messages which helps user identify ...
2013-09-25[win32] remove mplayer remenant from installerMartijn Kaijser
2013-09-25[win32] exlude .log on packagingMartijn Kaijser
2013-09-25Adds verbosity to SFTPFile, with log messages which helps user identify problem.BFG
2013-09-25Merge pull request #3325 from jabbera/TCPServerSend14509Martijn Kaijser
Fix: 14509. TCPServer send may not send correct data
2013-09-25Merge pull request #3327 from FernetMenta/aefixesRainer Hochecker
ActiveAE: force resampler if dvdplayer requests it
2013-09-25ActiveAE: forgot to force resampler after ↵Rainer Hochecker
6f5642ed7edabb3c71e8e9249fa0fd91071345c3
2013-09-25CharsetConverter: add convenient overloads to new conversion functionsKarlson2k
2013-09-25CharsetConverter: add UTF-8 <-> UTF-32 and UTF-32 <-> wide conversion functionsKarlson2k
2013-09-24Merge pull request #3321 from Karlson2k/charsetconverter_fix_01jmarshallnz
CharsetConverter: fix for logicalToVisualBiDi
2013-09-25CharsetConverter: fix: don't flip empty linesKarlson2k
2013-09-24Merge pull request #3320 from ace20022/fix_en_langnamesAndreas Zelend
Fix English names of languages and add Ossetic.
2013-09-24If send doesn't complete in one iteration don'tMike
resend begining of data fixes: #14509
2013-09-23Fix English names of languages and add Ossetic.ace20022
2013-09-22aml: fixed aml_present to actually workdavilla
2013-09-22[win32] remove "Debug" and "Release" as build solution as we always use ↵Martijn Kaijser
"Debug (directX)" and "Release (DirectX)"
2013-09-22Language strings: fix name and description for ""videoplayer.maxspeedadjust""Karlson2k