aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2015-07-08[cximage]: use integers for arithmetic in CxImage::CheckFormatOlaf Hering
ximaenc.cpp: In member function 'bool CxImage::CheckFormat(BYTE*, DWORD, DWORD)': ximaenc.cpp:1126:28: warning: NULL used in arithmetic [-Wpointer-arith] if (buffer==NULL || size==NULL){ Signed-off-by: Olaf Hering <olaf@aepfle.de>
2015-07-08[cximage]: remove undefined operation on variable in dcr_sony_decryptOlaf Hering
Untangle code in dcr_sony_decrypt to fix the following warning: libdcr.c: In function 'dcr_sony_decrypt': libdcr.c:2475:51: warning: operation on 'p->sony_decrypt_p' may be undefined [-Wsequence-point] *data++ ^= p->sony_decrypt_pad[p->sony_decrypt_p++ & 127] = p->sony_decrypt_pad[(p->sony_decrypt_p+1) & 127] ^ p->sony_decrypt_pad[(p->sony_decrypt_p+65) & 127]; Signed-off-by: Olaf Hering <olaf@aepfle.de>
2015-07-08[cximage]: remove warning about statement with no effectOlaf Hering
The local variable 'k' remains initialized from the earlier loop. Remove the variable to avoid misleading compiler warning. ximadsp.cpp: In member function 'int CxImage::OptimalThreshold(long int, RECT*, CxImage*)': ximadsp.cpp:3337:9: warning: statement has no effect [-Wunused-value] for (k;k<=gray_max;k++) if (p[k] > 0) L -= p[k]*log(p[k]/w2)/w2; ^ ximadsp.cpp:3350:9: warning: statement has no effect [-Wunused-value] for (k;k<=gray_max;k++){ Signed-off-by: Olaf Hering <olaf@aepfle.de>
2015-07-07[cximage]: remove undefined operation on variableOlaf Hering
ximadsp.cpp: In member function 'bool CxImage::Lut(BYTE*)': ximadsp.cpp:2797:26: warning: operation on 'iSrc' may be undefined [-Wsequence-point] *iSrc++ = pLut[*iSrc]; Signed-off-by: Olaf Hering <olaf@aepfle.de>
2015-06-23[libexif] Ignore invalid DMS value in GPS coordinate, and fix kodi crash due ↵balmeras
to buffer overflow with special value FFFFFF
2015-06-02addon.xml was written as ucs2 with bom as that is the default output from ↵Pär Björklund
powershell, changed it to specify utf8 without bom
2015-05-03[cec] bump to libCEC 3.0.0Lars Op den Kamp
2015-04-10fixed: bitwise and intended, not logicalArne Morten Kvarving
2015-04-01[replaytv] remove replaytv supportStefan Saraev
2015-04-01[daap] remove daap supportStefan Saraev
2015-03-23Remove lib/enca/Bernd Kuhls
Second try to remove lib/enca/, let´s test whether project/VS2010Express/XBMC for Windows.sln really needs libenca ;) Forum thread for discussion http://forum.kodi.tv/showthread.php?tid=221837
2015-03-19paplayer: drop obsolete codecs from libRainer Hochecker
2015-03-19paplayer: drop remaining codecs, only use ffmpegRainer Hochecker
2015-03-18[configure.in] rename file extension to configure.acuNiversaI
renamed: configure.in -> configure.ac renamed: lib/libmodplug/configure.in -> lib/libmodplug/configure.ac renamed: lib/timidity/configure.in -> lib/timidity/configure.ac renamed: tools/depends/configure.in -> tools/depends/configure.ac renamed: xbmc/visualizations/Goom/goom2k4-0/configure.in -> xbmc/visualizations/Goom/goom2k4-0/configure.ac renamed: xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/configure.in -> xbmc/visualizations/Goom/goom2k4-0/gtk-gui-devel/configure.ac
2015-03-14Merge pull request #6647 from afedchin/dxva_hevcAnton Fedchin
[dxva] Added dxva hevc decoding.
2015-03-14Merge pull request #6702 from Montellese/lib_drop_libmicrohttpdSascha Montellese
lib: get rid of copy of libmicrohttpd
2015-03-13[htsp] remove internal htsp support.ksooo
2015-03-13lib: get rid of copy of libmicrohttpdmontellese
2015-03-12[mythtv] remove internal mythtv supportMatthias Kortstiege
2015-03-09[dxva] hevc: add compat header for mingw.Anton Fedchin
2015-03-08[filesystem/afp] - remove AFP implementationMemphiz
2015-03-07[win32] fix building after split addon gui for skin and binary addons ↵Martijn Kaijser
127663da0ed4cff015d9d0070ccacf543282dd82
2015-03-04split addon gui for skin and binary addonsRainer Hochecker
2015-03-02Merge pull request #6415 from ace20022/chap_newAndreas Zelend
Show chapters in the bookmark dialog
2015-03-01added: support grabbing chapter name and position from bluray/dvdsArne Morten Kvarving
2015-02-27SDL clean-up - remove HAS_SDL_OPENGLRainer Hochecker
2015-02-17Revert "[addon] Increase API with change 'char*' return value to 'const ↵Lars Op den Kamp
char*' to fix compiler warnings (addon relevant part)" This reverts commit db44ba5faf00cf29ac7a45ef49a933d1ef45366b.
2015-02-16Merge pull request #6367 from AlwinEsch/increase-pvr-addon-versionRainer Hochecker
[pvr] Increase PVR API version to 1.9.4 and add related changes
2015-02-15[gui] Allow usage of slider and several dialogs on addons (GUI Ver. 5.8.0)AlwinEsch
2015-02-15[addon] Increase API with change 'char*' return value to 'const char*' to ↵AlwinEsch
fix compiler warnings (addon relevant part)
2015-02-15[gui] Increase API version to 5.8.0 (addon relevant part)AlwinEsch
2015-02-14Merge pull request #6381 from tobbi/coverity_1194431Matthias Kortstiege
[coverity] Fix for #1194431
2015-02-12Merge pull request #6412 from Memphiz/c++11Martijn Kaijser
Move to C++11; use as much std:: instead of boost:: as possible
2015-02-10[xcode/c++11] - add explicit casts where narrowing fails in c++11Memphiz
2015-02-10Fixed wrong return typeAchimTuran
2015-02-09[coverity] Fix for #1194431Tobias Markus
2015-01-31Merge pull request #6184 from 7pepo7/master-subtitlesSascha Montellese
upnp: support for external subtitles
2015-01-30[OSX] - drop unneeded script for librtmpRainer Hochecker
2015-01-21Fix for coverity #1194431Tobias Markus
2015-01-17PATCH for Platinum library needed to external subtitles over UPnP works.Rafał Chwiała
2015-01-17platinum Changes to external subtitles over UPnP worksRafał Chwiała
Added custom data to resources field - needed to add some attributes to res. Added new struct PLK_SecResource - needed by Somasung devices. It's not specialized struct (just general one), because I can't find any "sec" specification.
2015-01-09Merge pull request #5436 from Memphiz/texturepacker_removesdljenkins4kodi
2015-01-08[libsquish] - move libsquish to native dependswsnipex
2015-01-07[stdstring] get rid of CStdString in UnrarXLibJonathan Marshall
2014-12-23platinum: add patch for bd19c357ebmontellese
2014-12-23platinum: add xbmc:uniqueidentifier for IMDB/TVDB identifiersmontellese
2014-12-16Revert "change xbmc/ path to src/ in all files"Rainer Hochecker
This reverts commit 4949be256667f3e500e52b7084476ae1f2b00d92.
2014-12-15change xbmc/ path to src/ in all filesFneufneu
2014-11-29platinum: add patch for 2104093montellese
2014-11-29platinum: fix filter mask values of xbmc:votes and xbmc:artworkmontellese