vuplus_xbmc
10 years agoadd System.AddonVersion() infolabel
ronie [Tue, 1 Oct 2013 21:04:57 +0000 (23:04 +0200)]
add System.AddonVersion() infolabel

10 years agoupdate old webadress to current wiki pages
Martijn Kaijser [Sun, 29 Sep 2013 09:54:05 +0000 (11:54 +0200)]
update old webadress to current wiki pages

10 years agoremove/update unneeded xbox comments
Martijn Kaijser [Sun, 29 Sep 2013 09:30:59 +0000 (11:30 +0200)]
remove/update unneeded xbox comments

10 years agoMerge pull request #3339 from FernetMenta/aefixes
Peter Frühberger [Sun, 29 Sep 2013 05:46:05 +0000 (22:46 -0700)]
Merge pull request #3339 from FernetMenta/aefixes

ActiveAE: clamp floats

10 years agoMerge pull request #3346 from MartijnKaijser/cleanup_2
Martijn Kaijser [Sat, 28 Sep 2013 22:17:45 +0000 (15:17 -0700)]
Merge pull request #3346 from MartijnKaijser/cleanup_2

Cleanup unused files

10 years agofixed, used g_cpuInfo.getCPUHardware instead of rolling our own access to /proc/cpuinfo
S. Davilla [Sat, 28 Sep 2013 20:49:08 +0000 (16:49 -0400)]
fixed, used g_cpuInfo.getCPUHardware instead of rolling our own access to /proc/cpuinfo

10 years agofixed, c/p typo in CJNIMediaCodecInfoCodecCapabilities
S. Davilla [Sat, 28 Sep 2013 20:43:58 +0000 (16:43 -0400)]
fixed, c/p typo in CJNIMediaCodecInfoCodecCapabilities

10 years agoremove obsolete .conf file
Martijn Kaijser [Sat, 28 Sep 2013 17:42:58 +0000 (19:42 +0200)]
remove obsolete .conf file

10 years agoremove old unused bash script
Martijn Kaijser [Sat, 28 Sep 2013 17:39:35 +0000 (19:39 +0200)]
remove old unused bash script

10 years ago[darwin] remove unused buildbot files
Martijn Kaijser [Sat, 28 Sep 2013 16:28:12 +0000 (18:28 +0200)]
[darwin] remove unused buildbot files

10 years ago[win32] remove unused .exe file
Martijn Kaijser [Sat, 28 Sep 2013 16:27:41 +0000 (18:27 +0200)]
[win32] remove unused .exe file

10 years agoActiveAE: tell resampler to clamp floats
Rainer Hochecker [Sat, 28 Sep 2013 14:28:33 +0000 (16:28 +0200)]
ActiveAE: tell resampler to clamp floats

10 years agoActiveAE: clamp float values after having mixed audio
Rainer Hochecker [Fri, 27 Sep 2013 11:00:58 +0000 (13:00 +0200)]
ActiveAE: clamp float values after having mixed audio

10 years agoffmpeg: add patch for backport swresample: Make rematrix maxvalue user settable
Rainer Hochecker [Sat, 28 Sep 2013 13:57:30 +0000 (15:57 +0200)]
ffmpeg: add patch for backport swresample: Make rematrix maxvalue user settable

10 years agoffmpeg: backport swresample: Make rematrix maxvalue user settable
Rainer Hochecker [Sat, 28 Sep 2013 13:56:46 +0000 (15:56 +0200)]
ffmpeg: backport swresample: Make rematrix maxvalue user settable

10 years ago[win32] update package list
Martijn Kaijser [Sat, 28 Sep 2013 12:55:08 +0000 (14:55 +0200)]
[win32] update package list

10 years agoMerge pull request #3263 from fetzerch/bugfix-osdchannels
Lars Op den Kamp [Sat, 28 Sep 2013 11:30:26 +0000 (04:30 -0700)]
Merge pull request #3263 from fetzerch/bugfix-osdchannels

pvr: Fix crash when opening PVROSDChannels while playing a recording

10 years agoMerge pull request #3317 from Karlson2k/charsetconverter_rework_02
jmarshallnz [Fri, 27 Sep 2013 21:07:51 +0000 (14:07 -0700)]
Merge pull request #3317 from Karlson2k/charsetconverter_rework_02

CharsetСonverter rework - Part 2

10 years agogles, fixed, more missing code
S. Davilla [Fri, 27 Sep 2013 17:01:33 +0000 (13:01 -0400)]
gles, fixed, more missing code

10 years agoMerge pull request #3137 from jmbreuer/upstream-sortby
jmarshallnz [Fri, 27 Sep 2013 07:14:02 +0000 (00:14 -0700)]
Merge pull request #3137 from jmbreuer/upstream-sortby

Differentiate between "unsorted" and "unsortable"

10 years agoMerge pull request #3272 from MartijnKaijser/win32_remove
Martijn Kaijser [Fri, 27 Sep 2013 07:03:27 +0000 (00:03 -0700)]
Merge pull request #3272 from MartijnKaijser/win32_remove

[win32] cleanup VS2010 build solutions

10 years agoMerge pull request #3292 from bavison/faster_string_comparisons
jmarshallnz [Fri, 27 Sep 2013 04:12:02 +0000 (21:12 -0700)]
Merge pull request #3292 from bavison/faster_string_comparisons

Faster string comparison functions in StringUtils

10 years agoFaster string comparison functions in StringUtils
Ben Avison [Wed, 18 Sep 2013 18:31:59 +0000 (19:31 +0100)]
Faster string comparison functions in StringUtils

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.

10 years agoMerge pull request #3254 from koying/fixcleaninet
jmarshallnz [Thu, 26 Sep 2013 19:51:05 +0000 (12:51 -0700)]
Merge pull request #3254 from koying/fixcleaninet

FIX: Do not remove internet files from video db only because they come from a disappeared source

10 years agogles, fixed, add missing functions
S. Davilla [Thu, 26 Sep 2013 18:28:38 +0000 (14:28 -0400)]
gles, fixed, add missing functions

10 years agoMerge pull request #3124 from koying/fixplugingetdirlock
Jim Carroll [Thu, 26 Sep 2013 18:23:44 +0000 (11:23 -0700)]
Merge pull request #3124 from koying/fixplugingetdirlock

FIX: avoid waiting forever on a locked CPluginDirectory while exiting

10 years agoMerge pull request #3334 from koying/CHGstfrockchip
Chris Browet [Thu, 26 Sep 2013 17:55:55 +0000 (10:55 -0700)]
Merge pull request #3334 from koying/CHGstfrockchip

CHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)

10 years agoMerge pull request #3202 from mazkolain/python-jsonrpcfix
Jim Carroll [Thu, 26 Sep 2013 17:52:33 +0000 (10:52 -0700)]
Merge pull request #3202 from mazkolain/python-jsonrpcfix

Avoid locking other Python threads when calling xbmc.executeJSONRPC

Fixes a bug. Can't hurt anything so it's going in.

10 years agoMerge pull request #3258 from koying/fixdroidconfigevent
Chris Browet [Thu, 26 Sep 2013 17:51:56 +0000 (10:51 -0700)]
Merge pull request #3258 from koying/fixdroidconfigevent

FIX: [droid] Prevent droid from shutting us down when an usb/BT keyboard./gamepad is plugged in/out

10 years agoMerge pull request #3332 from ace20022/cximage_fixes
Martijn Kaijser [Thu, 26 Sep 2013 17:32:03 +0000 (10:32 -0700)]
Merge pull request #3332 from ace20022/cximage_fixes

[Fix] Some cximage fixes

10 years agoActiveAE: disable AE_FMT_FLOAT on AESinkAUDIOTRACK, AE_FMT_FLOAT is not clipped corre...
S. Davilla [Thu, 26 Sep 2013 15:15:32 +0000 (11:15 -0400)]
ActiveAE: disable AE_FMT_FLOAT on AESinkAUDIOTRACK, AE_FMT_FLOAT is not clipped correctly and makes an icky noise when audio volume peaks

10 years agoMerge pull request #3333 from koying/FIXjnitypo
Chris Browet [Thu, 26 Sep 2013 14:00:35 +0000 (07:00 -0700)]
Merge pull request #3333 from koying/FIXjnitypo

FIX: [droid] JNI typo

10 years agoMerge pull request #3331 from FernetMenta/texture
Rainer Hochecker [Thu, 26 Sep 2013 13:51:14 +0000 (06:51 -0700)]
Merge pull request #3331 from FernetMenta/texture

make sure gl textures are deleted by render thread

10 years agoMerge pull request #3205 from koying/fixSFinvalidpts
Chris Browet [Thu, 26 Sep 2013 13:46:29 +0000 (06:46 -0700)]
Merge pull request #3205 from koying/fixSFinvalidpts

FIX: [stagefright] ignore frames with no valid pts

10 years agoFIX: [droid] JNI typo
Chris "Koying" Browet [Thu, 26 Sep 2013 13:01:54 +0000 (15:01 +0200)]
FIX: [droid] JNI typo

10 years agoCHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)
Chris "Koying" Browet [Thu, 26 Sep 2013 11:45:04 +0000 (13:45 +0200)]
CHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)

10 years ago[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in libdcr.
ace20022 [Thu, 26 Sep 2013 11:37:28 +0000 (13:37 +0200)]
[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in libdcr.

10 years ago[cximage] Fix resource leak in dcraw.
ace20022 [Thu, 26 Sep 2013 11:25:47 +0000 (13:25 +0200)]
[cximage] Fix resource leak in dcraw.

10 years ago[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in dcraw.
ace20022 [Thu, 26 Sep 2013 11:20:35 +0000 (13:20 +0200)]
[cximage] Fix possible "Buffer is accessed out of bounds: romm_cam" error in dcraw.

10 years ago[cximage] Fix invalid number of character ({) when these macros are defined: 'PNG_NO_...
ace20022 [Thu, 26 Sep 2013 10:35:30 +0000 (12:35 +0200)]
[cximage] Fix invalid number of character ({) when these macros are defined: 'PNG_NO_WRITE_FILTERING' in pngwutil.

10 years agofix memleak, make sure gl textures are deleted by render thread, thanks to popcornmix
Rainer Hochecker [Thu, 26 Sep 2013 11:17:04 +0000 (13:17 +0200)]
fix memleak, make sure gl textures are deleted by render thread, thanks to popcornmix

10 years ago[cximage] Fix common realloc mistake: 'm_pBuffer' nulled but not freed upon failure...
ace20022 [Thu, 26 Sep 2013 09:28:01 +0000 (11:28 +0200)]
[cximage] Fix common realloc mistake: 'm_pBuffer' nulled but not freed upon failure in xmemfile.

10 years ago[cximage] Fix uninitialized struct member in ximadsp.
ace20022 [Thu, 26 Sep 2013 09:08:14 +0000 (11:08 +0200)]
[cximage] Fix uninitialized struct member in ximadsp.

10 years ago[cximage] Fix memleak in ximadsp.
ace20022 [Thu, 26 Sep 2013 09:06:02 +0000 (11:06 +0200)]
[cximage] Fix memleak in ximadsp.

10 years agoMerge pull request #3323 from bfg1981/SFTPVerbosity
Martijn Kaijser [Thu, 26 Sep 2013 07:50:04 +0000 (00:50 -0700)]
Merge pull request #3323 from bfg1981/SFTPVerbosity

Adds verbosity to SFTPFile, with log messages which helps user identify ...

10 years ago[win32] remove mplayer remenant from installer
Martijn Kaijser [Wed, 25 Sep 2013 21:43:30 +0000 (23:43 +0200)]
[win32] remove mplayer remenant from installer

10 years ago[win32] exlude .log on packaging
Martijn Kaijser [Wed, 25 Sep 2013 21:39:54 +0000 (23:39 +0200)]
[win32] exlude .log on packaging

10 years agoAdds verbosity to SFTPFile, with log messages which helps user identify problem.
BFG [Thu, 8 Aug 2013 19:55:04 +0000 (21:55 +0200)]
Adds verbosity to SFTPFile, with log messages which helps user identify problem.

10 years agoMerge pull request #3325 from jabbera/TCPServerSend14509
Martijn Kaijser [Wed, 25 Sep 2013 19:31:37 +0000 (12:31 -0700)]
Merge pull request #3325 from jabbera/TCPServerSend14509

Fix: 14509. TCPServer send may not send correct data

10 years agoMerge pull request #3327 from FernetMenta/aefixes
Rainer Hochecker [Wed, 25 Sep 2013 13:25:03 +0000 (06:25 -0700)]
Merge pull request #3327 from FernetMenta/aefixes

ActiveAE: force resampler if dvdplayer requests it

10 years agoActiveAE: forgot to force resampler after 6f5642ed7edabb3c71e8e9249fa0fd91071345c3
Rainer Hochecker [Wed, 25 Sep 2013 09:33:48 +0000 (11:33 +0200)]
ActiveAE: forgot to force resampler after 6f5642ed7edabb3c71e8e9249fa0fd91071345c3

10 years agoCharsetConverter: add convenient overloads to new conversion functions
Karlson2k [Wed, 25 Sep 2013 01:55:54 +0000 (05:55 +0400)]
CharsetConverter: add convenient overloads to new conversion functions

10 years agoCharsetConverter: add UTF-8 <-> UTF-32 and UTF-32 <-> wide conversion functions
Karlson2k [Thu, 19 Sep 2013 14:30:29 +0000 (18:30 +0400)]
CharsetConverter: add UTF-8 <-> UTF-32 and UTF-32 <-> wide conversion functions

10 years agoMerge pull request #3321 from Karlson2k/charsetconverter_fix_01
jmarshallnz [Tue, 24 Sep 2013 23:01:10 +0000 (16:01 -0700)]
Merge pull request #3321 from Karlson2k/charsetconverter_fix_01

CharsetConverter: fix for logicalToVisualBiDi

10 years agoCharsetConverter: fix: don't flip empty lines
Karlson2k [Mon, 23 Sep 2013 13:33:54 +0000 (17:33 +0400)]
CharsetConverter: fix: don't flip empty lines

10 years agoMerge pull request #3320 from ace20022/fix_en_langnames
Andreas Zelend [Tue, 24 Sep 2013 21:38:51 +0000 (14:38 -0700)]
Merge pull request #3320 from ace20022/fix_en_langnames

Fix English names of languages and add Ossetic.

10 years agoIf send doesn't complete in one iteration don't
Mike [Tue, 24 Sep 2013 21:19:41 +0000 (17:19 -0400)]
If send doesn't complete in one iteration don't
resend begining of data

fixes: #14509

10 years agoFix English names of languages and add Ossetic.
ace20022 [Mon, 23 Sep 2013 11:26:48 +0000 (13:26 +0200)]
Fix English names of languages and add Ossetic.

10 years agoaml: fixed aml_present to actually work
davilla [Thu, 12 Sep 2013 14:03:47 +0000 (10:03 -0400)]
aml: fixed aml_present to actually work

10 years ago[win32] remove "Debug" and "Release" as build solution as we always use "Debug (direc...
Martijn Kaijser [Sun, 15 Sep 2013 15:53:10 +0000 (17:53 +0200)]
[win32] remove "Debug" and "Release" as build solution as we always use "Debug (directX)" and "Release (DirectX)"

10 years agoLanguage strings: fix name and description for ""videoplayer.maxspeedadjust""
Karlson2k [Thu, 12 Sep 2013 13:33:44 +0000 (17:33 +0400)]
Language strings: fix name and description for ""videoplayer.maxspeedadjust""

10 years agoMerge pull request #3097 from Karlson2k/charsetconverter_rework_01
Martijn Kaijser [Sun, 22 Sep 2013 09:29:35 +0000 (02:29 -0700)]
Merge pull request #3097 from Karlson2k/charsetconverter_rework_01

CharsetConverter rework - part 1

10 years agoMerge pull request #3248 from ace20022/silence_lce
Arne Morten Kvarving [Sun, 22 Sep 2013 08:56:36 +0000 (01:56 -0700)]
Merge pull request #3248 from ace20022/silence_lce

[LangCodeExpander] Reduce log spamming if input string is empty

10 years agoMerge pull request #3287 from Montellese/skin_change
Martijn Kaijser [Sun, 22 Sep 2013 08:20:58 +0000 (01:20 -0700)]
Merge pull request #3287 from Montellese/skin_change

fix crash/freeze when changing skin after installing a new skin addon

10 years agoMerge pull request #3316 from FernetMenta/paplayer
Peter Frühberger [Sun, 22 Sep 2013 07:31:26 +0000 (00:31 -0700)]
Merge pull request #3316 from FernetMenta/paplayer

Paplayer fixes (hail to the king baby)

10 years agoMerge pull request #3262 from jmarshallnz/compile_warnings
jmarshallnz [Sun, 22 Sep 2013 03:32:57 +0000 (20:32 -0700)]
Merge pull request #3262 from jmarshallnz/compile_warnings

Fix a bunch of compile warnings

10 years ago[osx] fix potential memleak
Jonathan Marshall [Sat, 14 Sep 2013 07:33:07 +0000 (19:33 +1200)]
[osx] fix potential memleak

10 years ago[json-rpc] remove unnecessary assignment
Jonathan Marshall [Sat, 14 Sep 2013 07:32:31 +0000 (19:32 +1200)]
[json-rpc] remove unnecessary assignment

10 years ago[jpegio] remove unnecessary early return
Jonathan Marshall [Sat, 14 Sep 2013 07:32:01 +0000 (19:32 +1200)]
[jpegio] remove unnecessary early return

10 years agoremove unused variable
Jonathan Marshall [Sat, 14 Sep 2013 07:31:37 +0000 (19:31 +1200)]
remove unused variable

10 years agoif we have a NULL EPG info tag, continue the loop
Jonathan Marshall [Sat, 14 Sep 2013 07:31:23 +0000 (19:31 +1200)]
if we have a NULL EPG info tag, continue the loop

10 years agoMerge pull request #3296 from t-nelson/pivos_dont_flag_720p60
Martijn Kaijser [Sat, 21 Sep 2013 22:15:37 +0000 (15:15 -0700)]
Merge pull request #3296 from t-nelson/pivos_dont_flag_720p60

Don't flag 720p60 as NTSC or 60i.

10 years agoMerge pull request #3314 from MartijnKaijser/repo_gotham
Martijn Kaijser [Sat, 21 Sep 2013 19:42:48 +0000 (12:42 -0700)]
Merge pull request #3314 from MartijnKaijser/repo_gotham

[addons] revert adding Gotham repo

10 years ago[addons] revert addon Gotham repo as it causes empty list.
Martijn Kaijser [Sat, 21 Sep 2013 19:41:27 +0000 (21:41 +0200)]
[addons] revert addon Gotham repo as it causes empty list.

10 years agopaplayer: fix segfault if file item had no MusicInfoTag
Rainer Hochecker [Sat, 21 Sep 2013 15:42:46 +0000 (17:42 +0200)]
paplayer: fix segfault if file item had no MusicInfoTag

10 years agopaplayer: do not mix pcm and raw streams
Rainer Hochecker [Sat, 21 Sep 2013 15:40:51 +0000 (17:40 +0200)]
paplayer: do not mix pcm and raw streams

10 years agoActiveAE: allow additional passthrough stream if other streams are drained
Rainer Hochecker [Sat, 21 Sep 2013 15:39:00 +0000 (17:39 +0200)]
ActiveAE: allow additional passthrough stream if other streams are drained

10 years agoMerge pull request #3309 from readmanr/english-check
Martijn Kaijser [Sat, 21 Sep 2013 08:14:15 +0000 (01:14 -0700)]
Merge pull request #3309 from readmanr/english-check

English spelling corrections for /addons/

10 years agoEnglish spelling corrections for /addons/
readmanr [Fri, 20 Sep 2013 13:35:59 +0000 (14:35 +0100)]
English spelling corrections for /addons/
Various fixes and misspellings corrected.
addon > add-on
analyzer > analyser
color > colour
customizability > customisability
favorite > favourite
useage > usage
visualization > visualisation
visualizer > visualiser

10 years agoMerge pull request #3304 from FernetMenta/cuefile
Rainer Hochecker [Fri, 20 Sep 2013 20:05:04 +0000 (13:05 -0700)]
Merge pull request #3304 from FernetMenta/cuefile

paplayer: fix gapless playback of cue file if added to music db

10 years agopaplayer: fixes for seeking ff/rw
Rainer Hochecker [Fri, 20 Sep 2013 19:23:00 +0000 (21:23 +0200)]
paplayer: fixes for seeking ff/rw

10 years agoDon't flag 720p60 as NTSC or 60i.
davilla [Fri, 28 Dec 2012 20:32:27 +0000 (15:32 -0500)]
Don't flag 720p60 as NTSC or 60i.

10 years agoMerge pull request #3308 from waven/discstubfix
Sascha Montellese [Fri, 20 Sep 2013 09:23:13 +0000 (02:23 -0700)]
Merge pull request #3308 from waven/discstubfix

Fix: Always add m_discStubExtensions to m_videoExtensions

10 years agoFix: Always add m_discStubExtensions to m_videoExtensions
Waven [Thu, 19 Sep 2013 21:25:29 +0000 (23:25 +0200)]
Fix: Always add m_discStubExtensions to m_videoExtensions

10 years agopaplayer: fix ff/rw in cue file
Rainer Hochecker [Fri, 20 Sep 2013 06:12:45 +0000 (08:12 +0200)]
paplayer: fix ff/rw in cue file

10 years agoMerge pull request #3305 from fetzerch/bugfix-channelgroup
Lars Op den Kamp [Thu, 19 Sep 2013 19:15:44 +0000 (12:15 -0700)]
Merge pull request #3305 from fetzerch/bugfix-channelgroup

pvr: Fix missing field initialization CPVRChannelGroup contructor

10 years agoMerge pull request #3300 from readmanr/english-check
Martijn Kaijser [Thu, 19 Sep 2013 18:42:53 +0000 (11:42 -0700)]
Merge pull request #3300 from readmanr/english-check

English spelling corrections English/strings.po

10 years agopvr: Fix missing field initialization CPVRChannelGroup contructor
Christian Fetzer [Sun, 15 Sep 2013 09:20:25 +0000 (11:20 +0200)]
pvr: Fix missing field initialization CPVRChannelGroup contructor

The method ResetChannelNumberCache reads the field m_bSelectedGroup before it
is initialized. The field needs to be initialized in the constructor.

Conditional jump or move depends on uninitialised value(s)
  in PVR::CPVRChannelGroup::ResetChannelNumberCache() in xbmc/pvr/channels/PVRChannelGroup.cpp:921
  1: PVR::CPVRChannelGroup::ResetChannelNumberCache() in xbmc/pvr/channels/PVRChannelGroup.cpp:921
  2: PVR::CPVRChannelGroup::Renumber() in xbmc/pvr/channels/PVRChannelGroup.cpp:913
  3: PVR::CPVRChannelGroupInternal::Renumber() in xbmc/pvr/channels/PVRChannelGroupInternal.cpp:253
  4: PVR::CPVRChannelGroup::SortAndRenumber() in xbmc/pvr/channels/PVRChannelGroup.cpp:316
  5: PVR::CPVRChannelGroup::Load() in xbmc/pvr/channels/PVRChannelGroup.cpp:139
  6: PVR::CPVRChannelGroupInternal::Load() in xbmc/pvr/channels/PVRChannelGroupInternal.cpp:60
  7: PVR::CPVRChannelGroups::Load() in xbmc/pvr/channels/PVRChannelGroups.cpp:282
  8: PVR::CPVRChannelGroupsContainer::Load() in xbmc/pvr/channels/PVRChannelGroupsContainer.cpp:69
  9: PVR::CPVRManager::Load() in xbmc/pvr/PVRManager.cpp:542
  10: PVR::CPVRManager::Process() in xbmc/pvr/PVRManager.cpp:406
  11: CThread::Action() in xbmc/threads/Thread.cpp:220
  12: CThread::staticThread(void*) in xbmc/threads/Thread.cpp:130
  13: start_thread in /build/buildd/eglibc-2.17/nptl/pthread_create.c:311
  14: clone in /build/buildd/eglibc-2.17/misc/../sysdeps/unix/sysv/linux/x86_64/clone.S:113
Uninitialised value was created by a heap allocation  1: operator new(unsigned long) in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so
  2: PVR::CPVRChannelGroups::Load() in xbmc/pvr/channels/PVRChannelGroups.cpp:280
  3: PVR::CPVRChannelGroupsContainer::Load() in xbmc/pvr/channels/PVRChannelGroupsContainer.cpp:69
  4: PVR::CPVRManager::Load() in xbmc/pvr/PVRManager.cpp:542
  5: PVR::CPVRManager::Process() in xbmc/pvr/PVRManager.cpp:406
  6: CThread::Action() in xbmc/threads/Thread.cpp:220
  7: CThread::staticThread(void*) in xbmc/threads/Thread.cpp:130
  8: start_thread in /build/buildd/eglibc-2.17/nptl/pthread_create.c:311
  9: clone in /build/buildd/eglibc-2.17/misc/../sysdeps/unix/sysv/linux/x86_64/clone.S:113

10 years agoMerge pull request #3237 from Karlson2k/remove_old_setting_01
Martijn Kaijser [Thu, 19 Sep 2013 16:46:23 +0000 (09:46 -0700)]
Merge pull request #3237 from Karlson2k/remove_old_setting_01

Fix: Remove unused setting

10 years agofixed, add missing UnregisterCallback for XBMCHelper
S. Davilla [Thu, 19 Sep 2013 16:01:49 +0000 (12:01 -0400)]
fixed, add missing UnregisterCallback for XBMCHelper

10 years agoCharsetConverter: remove unused variable
Karlson2k [Thu, 19 Sep 2013 13:28:04 +0000 (17:28 +0400)]
CharsetConverter: remove unused variable

10 years agoCharsetConverter: remove old and unused 'ucs2CharsetToStringCharset'
Karlson2k [Wed, 18 Sep 2013 21:31:31 +0000 (01:31 +0400)]
CharsetConverter: remove old and unused 'ucs2CharsetToStringCharset'

10 years agoCharsetConverter: rename stringCharsetToUtf8 to be in-line with others
Karlson2k [Wed, 18 Sep 2013 21:14:25 +0000 (01:14 +0400)]
CharsetConverter: rename stringCharsetToUtf8 to be in-line with others

10 years agoCharsetConverter: fix error report
Karlson2k [Wed, 18 Sep 2013 20:41:05 +0000 (00:41 +0400)]
CharsetConverter: fix error report
type was wrong for win32

10 years agoReplace usage of CStdString16 with u16string
Karlson2k [Thu, 5 Sep 2013 21:25:44 +0000 (01:25 +0400)]
Replace usage of CStdString16 with u16string

10 years agoCharsetConverter: use common conversion for utf32ToStringCharset
Karlson2k [Mon, 12 Aug 2013 19:57:25 +0000 (23:57 +0400)]
CharsetConverter: use common conversion for utf32ToStringCharset

10 years agoWin32DllLoader::Load: fix - don't flip when converting + fail conversion on bad char
Karlson2k [Mon, 12 Aug 2013 19:28:52 +0000 (23:28 +0400)]
Win32DllLoader::Load: fix - don't flip when converting + fail conversion on bad char

10 years agoCharsetConverter: add ability to fail on incorrect character to some functions
Karlson2k [Mon, 12 Aug 2013 18:14:00 +0000 (22:14 +0400)]
CharsetConverter: add ability to fail on incorrect character to some functions

10 years agoCharsetConverter::stringCharsetToUtf8: skip conversion if not needed
Karlson2k [Mon, 12 Aug 2013 18:04:45 +0000 (22:04 +0400)]
CharsetConverter::stringCharsetToUtf8: skip conversion if not needed

10 years agoCharsetConverter: do not allocate extra memory when converting
Karlson2k [Thu, 5 Sep 2013 22:23:47 +0000 (02:23 +0400)]
CharsetConverter: do not allocate extra memory when converting