Projects
home:sagiben
kodi-next
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 54
View file
kodi-next.spec
Changed
@@ -80,8 +80,8 @@ BuildRequires: fdupes BuildRequires: gawk # need gcc5 -BuildRequires: gcc5 -BuildRequires: gcc5-c++ +BuildRequires: gcc +BuildRequires: gcc-c++ BuildRequires: libtool BuildRequires: pkg-config BuildRequires: pkgconfig(python2)
View file
_service:download_files:master.tar.gz/system/shaders/GL/1.2/gl_yuv2rgb_basic.glsl
Changed
@@ -123,7 +123,7 @@ #if defined(XBMC_COL_CONVERSION) rgb.rgb = pow(rgb.rgb, vec3(m_gammaSrc)); - rgb.rgb = m_primMat * rgb.rgb; + rgb.rgb = max(vec3(0), m_primMat * rgb.rgb); rgb.rgb = pow(rgb.rgb, vec3(m_gammaDstInv)); #endif
View file
_service:download_files:master.tar.gz/system/shaders/GL/1.5/gl_yuv2rgb_basic.glsl
Changed
@@ -89,16 +89,12 @@ #endif -#if defined(XBMC_TONE_MAPPING) - //float scale = tonemap(yuv.x) / yuv.x; -#endif - rgb = m_yuvmat * yuv; rgb.a = m_alpha; #if defined(XBMC_COL_CONVERSION) rgb.rgb = pow(rgb.rgb, vec3(m_gammaSrc)); - rgb.rgb = m_primMat * rgb.rgb; + rgb.rgb = max(vec3(0), m_primMat * rgb.rgb); rgb.rgb = pow(rgb.rgb, vec3(m_gammaDstInv)); #if defined(XBMC_TONE_MAPPING)
View file
_service:download_files:master.tar.gz/system/shaders/GL/4.0/gl_yuv2rgb_filter4.glsl
Changed
@@ -112,7 +112,7 @@ #if defined(XBMC_COL_CONVERSION) rgb.rgb = pow(rgb.rgb, vec3(m_gammaSrc)); - rgb.rgb = m_primMat * rgb.rgb; + rgb.rgb = max(vec3(0), m_primMat * rgb.rgb); rgb.rgb = pow(rgb.rgb, vec3(m_gammaDstInv)); #if defined(XBMC_TONE_MAPPING)
View file
_service:download_files:master.tar.gz/xbmc/Application.cpp
Changed
@@ -21,7 +21,6 @@ #include "network/EventServer.h" #include "network/Network.h" #include "threads/SystemClock.h" -#include "system.h" #include "Application.h" #include "events/EventLog.h" #include "events/NotificationEvent.h"
View file
_service:download_files:master.tar.gz/xbmc/Application.h
Changed
@@ -20,7 +20,6 @@ * */ -#include "system.h" // for HAS_DVD_DRIVE et. al. #include "XBApplicationEx.h" #include "addons/AddonSystemSettings.h"
View file
_service:download_files:master.tar.gz/xbmc/Autorun.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "Autorun.h" #include <stdlib.h>
View file
_service:download_files:master.tar.gz/xbmc/Autorun.h
Changed
@@ -28,8 +28,6 @@ // // -#include "system.h" // for HAS_DVD_DRIVE - #ifdef HAS_DVD_DRIVE #include <memory>
View file
_service:download_files:master.tar.gz/xbmc/GUIInfoManager.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "network/Network.h" -#include "system.h" #include "CompileInfo.h" #include "GUIInfoManager.h" #include "view/GUIViewState.h"
View file
_service:download_files:master.tar.gz/xbmc/SectionLoader.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "threads/SystemClock.h" -#include "system.h" #include "SectionLoader.h" #include "cores/DllLoader/DllLoaderContainer.h" #include "threads/SingleLock.h"
View file
_service:download_files:master.tar.gz/xbmc/SystemGlobals.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include "SectionLoader.h" #include "GUILargeTextureManager.h" #include "guilib/TextureManager.h"
View file
_service:download_files:master.tar.gz/xbmc/Util.cpp
Changed
@@ -20,7 +20,6 @@ #include "network/Network.h" #include "threads/SystemClock.h" -#include "system.h" #if defined(TARGET_DARWIN) #include <sys/param.h> #include <mach-o/dyld.h>
View file
_service:download_files:master.tar.gz/xbmc/XBApplicationEx.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "FileItem.h" #include "messaging/ApplicationMessenger.h" #include "PlayListPlayer.h"
View file
_service:download_files:master.tar.gz/xbmc/XBDateTime.h
Changed
@@ -21,7 +21,7 @@ */ #include "utils/IArchivable.h" -#include "system.h" +#include "PlatformDefs.h" #include <string> /*! \brief TIME_FORMAT enum/bitmask used for formatting time strings
View file
_service:download_files:master.tar.gz/xbmc/addons/Addon.cpp
Changed
@@ -35,7 +35,6 @@ #include "RepositoryUpdater.h" #include "settings/Settings.h" #include "ServiceBroker.h" -#include "system.h" #include "URL.h" #include "Util.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/addons/Service.cpp
Changed
@@ -21,7 +21,6 @@ #include "AddonManager.h" #include "ServiceBroker.h" #include "interfaces/generic/ScriptInvocationManager.h" -#include "system.h" #include "utils/log.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAE.h
Changed
@@ -23,7 +23,6 @@ #include <string> #include <vector> -#include "system.h" #include "threads/Thread.h" #include "ActiveAESink.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEResamplePi.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include <cassert> #include "cores/AudioEngine/Utils/AEUtil.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "threads/SingleLock.h" #include "utils/log.h" #include "cores/AudioEngine/Utils/AEUtil.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Interfaces/AE.h
Changed
@@ -24,8 +24,6 @@ #include <vector> #include <utility> -#include "system.h" - #include "cores/AudioEngine/Utils/AEAudioFormat.h" typedef std::pair<std::string, std::string> AEDevice;
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/AESinkALSA.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include <stdint.h> #include <limits.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/AESinkALSA.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #include "cores/AudioEngine/Interfaces/AESink.h" #include "cores/AudioEngine/Utils/AEDeviceInfo.h" #include "cores/AudioEngine/Sinks/alsa/ALSADeviceMonitor.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/AESinkPi.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include <stdint.h> #include <limits.h> #include <cassert>
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/AESinkPi.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #include "cores/AudioEngine/Interfaces/AESink.h" #include "cores/AudioEngine/Utils/AEDeviceInfo.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/osx/CoreAudioChannelLayout.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #if defined(TARGET_DARWIN_OSX) #include <list> #include <vector>
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/osx/CoreAudioDevice.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #if defined(TARGET_DARWIN_OSX) #include <list>
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/osx/CoreAudioHardware.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #if defined(TARGET_DARWIN_OSX) #include "cores/AudioEngine/Sinks/osx/CoreAudioDevice.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/osx/CoreAudioStream.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #if defined(TARGET_DARWIN_OSX) #include "threads/Event.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Sinks/windows/AESinkFactoryWin32.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "AESinkFactoryWin.h" #include "platform/win32/CharsetConverter.h" -#include "system.h" #include "utils/log.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Utils/AELimiter.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "AELimiter.h" #include "settings/AdvancedSettings.h" #include "utils/MathUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/AudioEngine/Utils/AEPackIEC61937.cpp
Changed
@@ -19,9 +19,10 @@ */ #include <cassert> -#include "system.h" #include "AEPackIEC61937.h" +#include <string.h> + #define IEC61937_PREAMBLE1 0xF872 #define IEC61937_PREAMBLE2 0x4E1F
View file
_service:download_files:master.tar.gz/xbmc/cores/DllLoader/DllLoader-linux.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "DllLoader.h" #include "DllLoaderContainer.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/DllLoader/LibraryLoader.h
Changed
@@ -23,7 +23,6 @@ #include <string> -#include "system.h" #ifdef TARGET_POSIX #include "PlatformDefs.h" #endif
View file
_service:download_files:master.tar.gz/xbmc/cores/DllLoader/SoLoader.h
Changed
@@ -22,7 +22,6 @@ */ #include <stdio.h> -#include "system.h" #ifdef TARGET_POSIX #include "PlatformDefs.h" #endif
View file
_service:download_files:master.tar.gz/xbmc/cores/DllLoader/coff.h
Changed
@@ -1,7 +1,5 @@ #pragma once -#include "system.h" - /* * Copyright (C) 2005-2015 Team Kodi * http://kodi.tv
View file
_service:download_files:master.tar.gz/xbmc/cores/DllLoader/dll.h
Changed
@@ -1,6 +1,6 @@ #pragma once -#include "system.h" +#include "PlatformDefs.h" /* * Copyright (C) 2005-2015 Team Kodi
View file
_service:download_files:master.tar.gz/xbmc/cores/DllLoader/dll_tracker.h
Changed
@@ -26,7 +26,6 @@ #if defined(TARGET_WINDOWS_STORE) #include <WinSock2.h> #endif -#include "system.h" // for SOCKET #endif #include <list>
View file
_service:download_files:master.tar.gz/xbmc/cores/DllLoader/exports/emu_msvcrt.cpp
Changed
@@ -37,7 +37,6 @@ #if !defined(TARGET_FREEBSD) && (!defined(TARGET_ANDROID) && defined(__LP64__)) #include <sys/timeb.h> #endif -#include "system.h" // for HAS_DVD_DRIVE #ifdef HAS_DVD_DRIVE #ifdef TARGET_POSIX #include <sys/ioctl.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/DllLoader/exports/util/EmuFileWrapper.h
Changed
@@ -22,7 +22,6 @@ #include <stdio.h> -#include "system.h" #include "threads/CriticalSection.h" #if defined(TARGET_POSIX) && !defined(TARGET_DARWIN) && !defined(TARGET_FREEBSD) && !defined(TARGET_ANDROID) && !defined(__UCLIBC__)
View file
_service:download_files:master.tar.gz/xbmc/cores/ExternalPlayer/ExternalPlayer.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "threads/SystemClock.h" -#include "system.h" #include "CompileInfo.h" #include "threads/SingleLock.h" #include "ExternalPlayer.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/IPlayer.h
Changed
@@ -20,7 +20,6 @@ * */ -#include "system.h" // until we get sane int types used here #include <vector> #include <string>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Audio/DVDAudioCodec.h
Changed
@@ -20,7 +20,6 @@ * */ -#include "system.h" #include "cores/AudioEngine/Utils/AEAudioFormat.h" #include "cores/AudioEngine/Utils/AEUtil.h" #include "cores/VideoPlayer/Process/ProcessInfo.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Audio/DVDAudioCodecPassthrough.cpp
Changed
@@ -34,12 +34,7 @@ #define TRUEHD_BUF_SIZE 61440 CDVDAudioCodecPassthrough::CDVDAudioCodecPassthrough(CProcessInfo &processInfo, CAEStreamInfo::DataType streamType) : - CDVDAudioCodec(processInfo), - m_buffer(NULL), - m_bufferSize(0), - m_currentPts(DVD_NOPTS_VALUE), - m_nextPts(DVD_NOPTS_VALUE), - m_trueHDoffset(0) + CDVDAudioCodec(processInfo) { m_format.m_streamInfo.m_type = streamType; } @@ -96,6 +91,10 @@ m_buffer = NULL; } + free(m_backlogBuffer); + m_backlogBuffer = nullptr; + m_backlogBufferSize = 0; + m_bufferSize = 0; } @@ -146,6 +145,11 @@ if (used != iSize) { + if (m_backlogBufferSize < (iSize - used)) + { + m_backlogBufferSize = std::max(61440, iSize - used); + m_backlogBuffer = static_cast<uint8_t*>(realloc(m_backlogBuffer, m_backlogBufferSize)); + } m_backlogSize = iSize - used; memcpy(m_backlogBuffer, pData + used, m_backlogSize); used = iSize; @@ -153,6 +157,11 @@ } else if (pData) { + if (m_backlogBufferSize < (m_backlogSize + iSize)) + { + m_backlogBufferSize = std::max(61440, static_cast<int>(m_backlogSize + iSize)); + m_backlogBuffer = static_cast<uint8_t*>(realloc(m_backlogBuffer, m_backlogBufferSize)); + } memcpy(m_backlogBuffer + m_backlogSize, pData, iSize); m_backlogSize += iSize; used = iSize;
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Audio/DVDAudioCodecPassthrough.h
Changed
@@ -23,7 +23,6 @@ #include <list> #include <memory> -#include "system.h" #include "DVDAudioCodec.h" #include "cores/AudioEngine/Utils/AEAudioFormat.h" #include "cores/AudioEngine/Utils/AEStreamInfo.h" @@ -50,17 +49,18 @@ private: CAEStreamParser m_parser; - uint8_t* m_buffer; - unsigned int m_bufferSize; + uint8_t* m_buffer = nullptr; + unsigned int m_bufferSize = 0; unsigned int m_dataSize = 0; AEAudioFormat m_format; - uint8_t m_backlogBuffer[61440]; + uint8_t *m_backlogBuffer = nullptr; + unsigned int m_backlogBufferSize = 0; unsigned int m_backlogSize = 0; - double m_currentPts; - double m_nextPts; + double m_currentPts = DVD_NOPTS_VALUE; + double m_nextPts = DVD_NOPTS_VALUE; // TrueHD specifics std::unique_ptr<uint8_t[]> m_trueHDBuffer; - unsigned int m_trueHDoffset; + unsigned int m_trueHDoffset = 0; };
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/DVDFactoryCodec.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "utils/log.h" #include "DVDFactoryCodec.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Overlay/DVDOverlayCodecTX3G.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "DVDOverlayCodecTX3G.h" #include "DVDOverlayText.h" #include "DVDStreamInfo.h" @@ -30,6 +29,7 @@ #include "utils/StringUtils.h" #include "utils/auto_buffer.h" #include "utils/RegExp.h" +#include "system.h" #include <cstddef>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Overlay/DVDOverlayCodecText.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "DVDOverlayCodecText.h" #include "DVDOverlayText.h" #include "DVDStreamInfo.h" @@ -26,6 +25,7 @@ #include "cores/VideoPlayer/Interface/Addon/DemuxPacket.h" #include "utils/log.h" #include "cores/VideoPlayer/DVDSubtitles/DVDSubtitleTagSami.h" +#include "system.h" CDVDOverlayCodecText::CDVDOverlayCodecText() : CDVDOverlayCodec("Text Subtitle Decoder") {
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Video/AMLCodec.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "AMLCodec.h" #include "DynamicDll.h" @@ -2154,7 +2153,7 @@ return CDVDVideoCodec::VC_ERROR; float timesize(GetTimeSize()); - if(!m_drain && timesize < 1.0) + if(!m_drain && timesize < 0.2) return CDVDVideoCodec::VC_BUFFER; if (DequeueBuffer() == 0) @@ -2185,7 +2184,11 @@ else if (m_drain) return CDVDVideoCodec::VC_EOF; else + { + if (timesize < 1.0) + return CDVDVideoCodec::VC_BUFFER; usleep(5000); + } return CDVDVideoCodec::VC_NONE; }
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodec.h
Changed
@@ -20,7 +20,6 @@ * */ -#include "system.h" #include "cores/VideoPlayer/Process/ProcessInfo.h" #include "cores/VideoPlayer/Process/VideoBuffer.h" #include "cores/VideoPlayer/Interface/Addon/DemuxPacket.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecAndroidMediaCodec.cpp
Changed
@@ -54,6 +54,7 @@ #include "platform/android/activity/AndroidFeatures.h" #include "platform/android/activity/JNIXBMCSurfaceTextureOnFrameAvailableListener.h" #include "settings/Settings.h" +#include "system.h" #include "utils/TimeUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecAndroidMediaCodec.h
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" - #include <deque> #include <vector> #include <memory>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Video/DXVA.cpp
Changed
@@ -32,6 +32,7 @@ #include "ServiceBroker.h" #include "settings/AdvancedSettings.h" #include "settings/Settings.h" +#include "system.h" #include "utils/Log.h" #include "utils/StringUtils.h" #include "utils/SystemInfo.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Video/MMALCodec.cpp
Changed
@@ -19,7 +19,6 @@ */ #if defined(TARGET_WINDOWS) -#include "system.h" #endif #include <interface/mmal/util/mmal_util.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDCodecs/Video/VTB.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include "platform/darwin/osx/CocoaInterface.h" #include "platform/darwin/DarwinUtils.h" #include "cores/VideoPlayer/Process/ProcessInfo.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDDemuxers/DVDDemux.h
Changed
@@ -23,7 +23,6 @@ #include <string> #include <vector> #include <memory> -#include "system.h" #include "Interface/StreamInfo.h" struct DemuxPacket;
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDDemuxers/DVDDemuxFFmpeg.cpp
Changed
@@ -35,7 +35,6 @@ #include "filesystem/File.h" #include "settings/AdvancedSettings.h" #include "settings/Settings.h" -#include "system.h" #include "threads/SystemClock.h" #include "URL.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDDemuxers/DVDDemuxUtils.cpp
Changed
@@ -22,7 +22,6 @@ #include "cores/VideoPlayer/Interface/Addon/TimingConstants.h" #include "cores/VideoPlayer/Interface/Addon/DemuxCrypto.h" #include "utils/log.h" -#include "system.h" #ifdef TARGET_POSIX #include "platform/linux/XMemUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDDemuxers/DVDDemuxVobsub.cpp
Changed
@@ -84,7 +84,6 @@ hints.codec = AV_CODEC_ID_DVD_SUBTITLE; char line[2048]; - DECLARE_UNUSED(bool,res) SState state; state.delay = 0; @@ -95,13 +94,13 @@ if (*line == 0 || *line == '\r' || *line == '\n' || *line == '#') continue; else if (strncmp("langidx:", line, 8) == 0) - res = ParseLangIdx(state, line + 8); + ParseLangIdx(state, line + 8); else if (strncmp("delay:", line, 6) == 0) - res = ParseDelay(state, line + 6); + ParseDelay(state, line + 6); else if (strncmp("id:", line, 3) == 0) - res = ParseId(state, line + 3); + ParseId(state, line + 3); else if (strncmp("timestamp:", line, 10) == 0) - res = ParseTimestamp(state, line + 10); + ParseTimestamp(state, line + 10); else if (strncmp("palette:", line, 8) == 0 || strncmp("size:", line, 5) == 0 || strncmp("org:", line, 4) == 0 @@ -110,7 +109,7 @@ || strncmp("alpha:", line, 6) == 0 || strncmp("fadein/out:", line, 11) == 0 || strncmp("forced subs:", line, 12) == 0) - res = ParseExtra(state, line); + ParseExtra(state, line); else continue; }
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDDemuxers/DVDFactoryDemuxer.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "DVDFactoryDemuxer.h" #include "DVDInputStreams/DVDInputStream.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDInputStreams/DVDFactoryInputStream.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "DVDFactoryInputStream.h" #include "DVDInputStream.h" #include "DVDInputStreamFile.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDInputStreams/DVDInputStreamBluray.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include <functional> #include <limits>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDInputStreams/DVDStateSerializer.cpp
Changed
@@ -18,10 +18,6 @@ * */ -#ifdef TARGET_WINDOWS -#include "system.h" -#endif - #include "DllDvdNav.h" #include "utils/XBMCTinyXML.h" #include "DVDStateSerializer.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDInputStreams/dvdnav/config.h
Changed
@@ -22,7 +22,7 @@ /* config.h. Generated by hand. */ #if defined(TARGET_POSIX) -#include "PlatformInclude.h" +#include "PlatformDefs.h" #else #include <windows.h> #endif
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/DVDSubtitles/DVDSubtitleStream.h
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" - #include "utils/auto_buffer.h" #include <string>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/Process/wayland/ProcessInfoWayland.cpp
Changed
@@ -20,7 +20,6 @@ #include "ProcessInfoWayland.h" #include "threads/SingleLock.h" -#include "system.h" using namespace VIDEOPLAYER;
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoPlayer.h
Changed
@@ -37,7 +37,6 @@ #include "VideoPlayerRadioRDS.h" #include "Edl.h" #include "FileItem.h" -#include "system.h" #include "threads/SystemClock.h" #include "threads/Thread.h" #include "utils/StreamDetails.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoPlayerAudio.cpp
Changed
@@ -25,6 +25,7 @@ #include "DVDCodecs/DVDFactoryCodec.h" #include "cores/VideoPlayer/Interface/Addon/DemuxPacket.h" #include "settings/Settings.h" +#include "system.h" #include "utils/log.h" #include "utils/MathUtils.h" #include "cores/AudioEngine/Interfaces/AE.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoPlayerSubtitle.cpp
Changed
@@ -28,6 +28,7 @@ #include "cores/VideoPlayer/Interface/Addon/DemuxPacket.h" #include "cores/VideoPlayer/Interface/Addon/TimingConstants.h" #include "utils/log.h" +#include "system.h" #include "threads/SingleLock.h" CVideoPlayerSubtitle::CVideoPlayerSubtitle(CDVDOverlayContainer* pOverlayContainer, CProcessInfo &processInfo)
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoPlayerVideo.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "ServiceBroker.h" #include "windowing/WinSystem.h" #include "settings/AdvancedSettings.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/BaseRenderer.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include <cstdlib> // std::abs(int) prototype #include <algorithm> #include "BaseRenderer.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/ColorManager.cpp
Changed
@@ -21,7 +21,6 @@ #include <math.h> #include <vector> -#include "system.h" #include "ColorManager.h" #include "ServiceBroker.h" #include "cores/VideoPlayer/VideoRenderers/RenderFlags.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/FrameBufferObject.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "FrameBufferObject.h" #include "ServiceBroker.h" #include "rendering/RenderSystem.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/FrameBufferObject.h
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" // for HAS_GL - #include "system_gl.h" //
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/RendererDRMPRIME.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" - #include "cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.h" #include "cores/VideoPlayer/VideoRenderers/BaseRenderer.h" #include "windowing/gbm/WinSystemGbmGLESContext.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/RendererVAAPIGL.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" - #include "cores/VideoPlayer/VideoRenderers/LinuxRendererGL.h" #include "VaapiEGL.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/RendererVAAPIGLES.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" - #include "cores/VideoPlayer/VideoRenderers/LinuxRendererGLES.h" #include "VaapiEGL.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/RendererVDPAU.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" - #include "cores/VideoPlayer/VideoRenderers/LinuxRendererGL.h" #include "VdpauGL.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/RendererVTBGL.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" - #include "cores/VideoPlayer/VideoRenderers/LinuxRendererGL.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/RendererVTBGLES.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" - #include "cores/VideoPlayer/VideoRenderers/LinuxRendererGLES.h" #include <CoreVideo/CVOpenGLESTextureCache.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/LinuxRendererGL.cpp
Changed
@@ -20,7 +20,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include <locale.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/LinuxRendererGL.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" - #include <vector> #include "system_gl.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/LinuxRendererGLES.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "system_gl.h" #include <locale.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/OverlayRenderer.cpp
Changed
@@ -19,7 +19,6 @@ * */ -#include "system.h" #include "OverlayRenderer.h" #include "cores/VideoPlayer/DVDCodecs/Overlay/DVDOverlay.h" #include "cores/VideoPlayer/DVDCodecs/Overlay/DVDOverlayImage.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/OverlayRendererGL.cpp
Changed
@@ -19,7 +19,6 @@ * */ -#include "system.h" #include "OverlayRenderer.h" #include "OverlayRendererUtil.h" #include "OverlayRendererGL.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/OverlayRendererUtil.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "OverlayRendererUtil.h" #include "ServiceBroker.h" #include "cores/VideoPlayer/DVDCodecs/Overlay/DVDOverlayImage.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/OverlayRendererUtil.h
Changed
@@ -20,6 +20,7 @@ #pragma once +#include <stdint.h> #include <stdlib.h> class CDVDOverlayImage;
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/RenderCapture.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" //HAS_DX, HAS_GL, HAS_GLES, opengl headers, direct3d headers - #ifdef HAS_DX #include "guilib/D3DResource.h" #include <wrl/client.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/RenderManager.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "RenderManager.h" #include "RenderFlags.h" #include "RenderFactory.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/ConvolutionKernels.h
Changed
@@ -20,9 +20,10 @@ #pragma once -#include "system.h" #include "cores/VideoSettings.h" +#include <stdint.h> + class CConvolutionKernel { public:
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/GLSLOutput.h
Changed
@@ -20,7 +20,6 @@ */ #pragma once -#include "system.h" #include "utils/GLUtils.h" namespace Shaders
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/VideoFilterShaderGL.cpp
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #include <string> #include <math.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/VideoFilterShaderGL.h
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" - #include "system_gl.h" #include "guilib/Shader.h" #include "cores/VideoSettings.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/VideoFilterShaderGLES.cpp
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #include <string> #include <math.h>
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/VideoFilterShaderGLES.h
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" - #include "system_gl.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/YUV2RGBShaderGL.cpp
Changed
@@ -19,7 +19,6 @@ * */ -#include "system.h" #include "../RenderFlags.h" #include "YUV2RGBShaderGL.h" #include "YUVMatrix.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/YUV2RGBShaderGLES.cpp
Changed
@@ -19,7 +19,6 @@ * */ -#include "system.h" #include "../RenderFlags.h" #include "YUV2RGBShaderGLES.h" #include "YUVMatrix.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/YUVMatrix.cpp
Changed
@@ -19,7 +19,6 @@ * */ -#include "system.h" #include "../RenderFlags.h" #include "YUVMatrix.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/VideoPlayer/VideoRenderers/WinRenderer.cpp
Changed
@@ -33,6 +33,7 @@ #include "settings/MediaSettings.h" #include "settings/Settings.h" #include "ServiceBroker.h" +#include "system.h" #include "threads/SingleLock.h" #include "utils/log.h" #include "VideoShaders/WinVideoFilter.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/omxplayer/OMXHelper.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "VideoPlayer.h" #include "ServiceBroker.h" #include "settings/Settings.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/omxplayer/OMXHelper.h
Changed
@@ -20,8 +20,6 @@ #pragma once -#include "system.h" - #include <memory> bool OMXPlayerUnsuitable(bool m_HasVideo, bool m_HasAudio, CDVDDemux* m_pDemuxer, std::shared_ptr<CDVDInputStream> m_pInputStream, CSelectionStreams &m_SelectionStreams);
View file
_service:download_files:master.tar.gz/xbmc/cores/omxplayer/OMXPlayerAudio.cpp
Changed
@@ -39,6 +39,7 @@ #include "ServiceBroker.h" #include "cores/AudioEngine/Interfaces/AE.h" #include "cores/DataCacheCore.h" +#include "system.h" #include <algorithm> #include <iostream>
View file
_service:download_files:master.tar.gz/xbmc/cores/paplayer/CodecFactory.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "CodecFactory.h" #include "URL.h" #include "VideoPlayerCodec.h"
View file
_service:download_files:master.tar.gz/xbmc/cores/playercorefactory/PlayerCoreConfig.h
Changed
@@ -29,6 +29,7 @@ #ifdef HAS_UPNP #include "network/upnp/UPnPPlayer.h" #endif +#include "system.h" #include "utils/log.h" class CPlayerCoreConfig
View file
_service:download_files:master.tar.gz/xbmc/cores/playercorefactory/PlayerCoreFactory.h
Changed
@@ -22,7 +22,6 @@ #include <vector> -#include "system.h" #include "settings/lib/ISettingsHandler.h" #include "threads/CriticalSection.h" #include <string>
View file
_service:download_files:master.tar.gz/xbmc/dbwrappers/mysqldataset.cpp
Changed
@@ -24,7 +24,6 @@ #include <algorithm> #include "utils/log.h" -#include "system.h" // for GetLastError() #include "network/WakeOnAccess.h" #include "Util.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/dbwrappers/qry_dat.cpp
Changed
@@ -31,7 +31,7 @@ **********************************************************************/ #include "qry_dat.h" -#include "system.h" // for PRId64 +#include "PlatformDefs.h" // for PRId64 #include <stdio.h> #include <stdlib.h>
View file
_service:download_files:master.tar.gz/xbmc/dbwrappers/sqlitedataset.cpp
Changed
@@ -31,7 +31,6 @@ #include "sqlitedataset.h" #include "utils/log.h" -#include "system.h" // for Sleep(), OutputDebugString() and GetLastError() #include "utils/URIUtils.h" #ifdef TARGET_POSIX
View file
_service:download_files:master.tar.gz/xbmc/dialogs/GUIDialogContextMenu.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIDialogContextMenu.h" #include "guilib/GUIButtonControl.h" #include "guilib/GUIControlGroupList.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/APKFile.cpp
Changed
@@ -22,7 +22,6 @@ // Basically the same format as zip. // We might want to refactor CFileZip someday... ////////////////////////////////////////////////////////////////////// -#include "system.h" #include "APKFile.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/AndroidAppDirectory.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #if defined(TARGET_ANDROID) #include "AndroidAppDirectory.h" #include "platform/android/activity/XBMCApp.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/AndroidAppFile.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #if defined(TARGET_ANDROID) #include "IFile.h" #include "URL.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/CDDADirectory.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "CDDADirectory.h" #include "music/MusicDatabase.h" #include "FileItem.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/CDDAFile.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "CDDAFile.h" #include <sys/stat.h> #include "URL.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/CacheStrategy.cpp
Changed
@@ -22,7 +22,7 @@ #include "CacheStrategy.h" #include "IFile.h" #ifdef TARGET_POSIX -#include "PlatformInclude.h" +#include "PlatformDefs.h" #include "ConvUtils.h" #endif #include "Util.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/CircularCache.cpp
Changed
@@ -20,10 +20,11 @@ #include <algorithm> #include "threads/SystemClock.h" -#include "system.h" #include "threads/SingleLock.h" #include "CircularCache.h" +#include <string.h> + using namespace XFILE; CCircularCache::CCircularCache(size_t front, size_t back)
View file
_service:download_files:master.tar.gz/xbmc/filesystem/DAVFile.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "DAVFile.h" #include "DAVCommon.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/DirectoryFactory.cpp
Changed
@@ -20,7 +20,6 @@ #include <stdlib.h> #include "network/Network.h" -#include "system.h" #include "DirectoryFactory.h" #include "SpecialProtocolDirectory.h" #include "MultiPathDirectory.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/DllLibCurl.cpp
Changed
@@ -20,7 +20,6 @@ #include "DllLibCurl.h" -#include "system.h" #include "threads/SingleLock.h" #include "threads/SystemClock.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/File.cpp
Changed
@@ -27,6 +27,7 @@ #include "DirectoryCache.h" #include "Directory.h" #include "FileCache.h" +#include "system.h" #include "utils/log.h" #include "utils/URIUtils.h" #include "utils/BitstreamStats.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/FileDirectoryFactory.cpp
Changed
@@ -18,8 +18,6 @@ * */ - -#include "system.h" #include "utils/URIUtils.h" #include "FileDirectoryFactory.h" #include "UDFDirectory.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/FileFactory.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "network/Network.h" -#include "system.h" #include "FileFactory.h" #ifdef TARGET_POSIX #include "posix/PosixFile.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/PluginDirectory.cpp
Changed
@@ -20,7 +20,6 @@ #include "Application.h" #include "threads/SystemClock.h" -#include "system.h" #include "PluginDirectory.h" #include "ServiceBroker.h" #include "addons/AddonManager.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/SMBDirectory.cpp
Changed
@@ -29,8 +29,6 @@ * debugging is set to a max of 10 for release builds (see local.h) */ -#include "system.h" - #include "SMBDirectory.h" #include "Util.h" #include "guilib/LocalizeStrings.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/SMBFile.cpp
Changed
@@ -22,7 +22,6 @@ // ////////////////////////////////////////////////////////////////////// -#include "system.h" #include "SMBFile.h" #include "PasswordManager.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/ShoutcastFile.cpp
Changed
@@ -23,7 +23,6 @@ // ////////////////////////////////////////////////////////////////////// -#include "system.h" #include "ShoutcastFile.h" #include "guilib/GUIWindowManager.h" #include "URL.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/VirtualDirectory.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "VirtualDirectory.h" #include "URL.h" #include "Util.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/ZipManager.cpp
Changed
@@ -24,7 +24,6 @@ #include <utility> #include "File.h" -#include "system.h" #include "URL.h" #include "platform/linux/PlatformDefs.h" #include "utils/CharsetConverter.h"
View file
_service:download_files:master.tar.gz/xbmc/filesystem/iso9660.cpp
Changed
@@ -44,7 +44,6 @@ #include "utils/CharsetConverter.h" #include "threads/SingleLock.h" #include "IFile.h" -#include "system.h" #include "utils/log.h" #ifndef TARGET_WINDOWS
View file
_service:download_files:master.tar.gz/xbmc/filesystem/iso9660.h
Changed
@@ -24,7 +24,7 @@ #pragma once #include <vector> #include <string> -#include "system.h" // for win32 types +#include "PlatformDefs.h" // for win32 types #ifdef TARGET_WINDOWS // Ideally we should just be including iso9660.h, but it's not win32-ified at this point,
View file
_service:download_files:master.tar.gz/xbmc/filesystem/udf25.cpp
Changed
@@ -25,7 +25,6 @@ */ #include <stdio.h> #include <stdlib.h> -#include "system.h" #include "utils/log.h" #include "udf25.h" #include "File.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/D3DResource.cpp
Changed
@@ -21,7 +21,6 @@ #include "filesystem/File.h" #include "D3DResource.h" #include "GUIShaderDX.h" -#include "system.h" #include "utils/log.h" #include "rendering/dx/DeviceResources.h" #include "rendering/dx/RenderContext.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIAudioManager.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIAudioManager.h" #include "ServiceBroker.h" #include "input/ActionIDs.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIControlFactory.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIControlFactory.h" #include "LocalizeStrings.h" #include "GUIButtonControl.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIFontCache.h
Changed
@@ -37,7 +37,6 @@ #include <cassert> #include "TransformMatrix.h" -#include "system.h" #define FONT_CACHE_TIME_LIMIT (1000) #define FONT_CACHE_DIST_LIMIT (0.01f)
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIFontTTFGL.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIFont.h" #include "GUIFontTTFGL.h" #include "GUIFontManager.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIFontTTFGL.h
Changed
@@ -24,7 +24,6 @@ #include <vector> #include "GUIFontTTF.h" -#include "system.h" #include "system_gl.h" class CGUIFontTTFGL : public CGUIFontTTFBase
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIListContainer.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIListContainer.h" #include "input/Key.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIListItemLayout.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIListItemLayout.h" #include "FileItem.h" #include "GUIControlFactory.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUITexture.h
Changed
@@ -30,7 +30,6 @@ #include "TextureManager.h" #include "utils/Geometry.h" -#include "system.h" // HAS_GL, HAS_DX, etc #include "GUIInfoTypes.h" typedef uint32_t color_t;
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUITextureGL.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUITextureGL.h" #include "ServiceBroker.h" #include "Texture.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUITextureGLES.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "GUITextureGLES.h" #include "Texture.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIVideoControl.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIVideoControl.h" #include "GUIWindowManager.h" #include "Application.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GUIWindow.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIWindow.h" #include "GUIWindowManager.h" #include "input/Key.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/GraphicContext.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GraphicContext.h" #include "Application.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/LocalizeStrings.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "LocalizeStrings.h" #include "addons/LanguageResource.h" #include "utils/CharsetConverter.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/Shader.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "ServiceBroker.h" #include "Shader.h" #include "filesystem/File.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/Shader.h
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" // for HAS_GL/HAS_GLES - #include <vector> #include <string>
View file
_service:download_files:master.tar.gz/xbmc/guilib/Texture.h
Changed
@@ -20,7 +20,6 @@ #pragma once -#include "system.h" #include "XBTF.h" #include "guilib/imagefactory.h" #ifdef TARGET_POSIX
View file
_service:download_files:master.tar.gz/xbmc/guilib/TextureBundleXBT.cpp
Changed
@@ -21,7 +21,6 @@ #include "TextureBundleXBT.h" #include "ServiceBroker.h" -#include "system.h" #include "Texture.h" #include "GraphicContext.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/TextureGL.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "ServiceBroker.h" #include "Texture.h" #include "rendering/RenderSystem.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/TextureManager.cpp
Changed
@@ -26,7 +26,6 @@ #include "filesystem/Directory.h" #include "filesystem/File.h" #include "GraphicContext.h" -#include "system.h" #include "Texture.h" #include "threads/SingleLock.h" #include "threads/SystemClock.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/TexturePi.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "Texture.h" #include "utils/log.h" #include "utils/GLUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/guilib/gui3d.h
Changed
@@ -27,7 +27,7 @@ * */ -#include "system.h" // for TARGET_WINDOWS types +#include "PlatformDefs.h" // for TARGET_WINDOWS types #define GAMMA_RAMP_FLAG D3DSGR_CALIBRATE
View file
_service:download_files:master.tar.gz/xbmc/input/IRTranslator.cpp
Changed
@@ -26,7 +26,6 @@ #include "utils/StringUtils.h" #include "utils/URIUtils.h" #include "utils/XBMCTinyXML.h" -#include "system.h" #include <stdlib.h> #include <vector>
View file
_service:download_files:master.tar.gz/xbmc/input/Key.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "input/Key.h" CKey::CKey(void)
View file
_service:download_files:master.tar.gz/xbmc/input/XBMC_keytable.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "utils/StringUtils.h" #include "input/XBMC_keysym.h" #include "input/XBMC_vkeys.h"
View file
_service:download_files:master.tar.gz/xbmc/input/remote/IRRemote.h
Changed
@@ -21,8 +21,6 @@ #ifndef XBIRREMOTE_H #define XBIRREMOTE_H -#include "system.h" - #define XINPUT_IR_REMOTE_DISPLAY 213 #define XINPUT_IR_REMOTE_REVERSE 226 #define XINPUT_IR_REMOTE_PLAY 234
View file
_service:download_files:master.tar.gz/xbmc/interfaces/builtins/OpticalBuiltins.cpp
Changed
@@ -20,8 +20,6 @@ #include "OpticalBuiltins.h" -#include "system.h" - #ifdef HAS_DVD_DRIVE #include "storage/MediaManager.h" #endif
View file
_service:download_files:master.tar.gz/xbmc/interfaces/builtins/PlayerBuiltins.cpp
Changed
@@ -33,7 +33,6 @@ #include "settings/MediaSettings.h" #include "settings/Settings.h" #include "storage/MediaManager.h" -#include "system.h" #include "utils/FileExtensionProvider.h" #include "utils/log.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/interfaces/json-rpc/ApplicationOperations.cpp
Changed
@@ -27,7 +27,6 @@ #include "input/Key.h" #include "utils/log.h" #include "GUIInfoManager.h" -#include "system.h" #include "CompileInfo.h" #include "utils/StringUtils.h" #include "utils/Variant.h"
View file
_service:download_files:master.tar.gz/xbmc/interfaces/legacy/aojsonrpc.h
Changed
@@ -18,7 +18,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include "interfaces/json-rpc/ITransportLayer.h" #include "interfaces/json-rpc/JSONRPC.h"
View file
_service:download_files:master.tar.gz/xbmc/interfaces/python/AddonPythonInvoker.cpp
Changed
@@ -22,7 +22,6 @@ #include <Python.h> #include <osdefs.h> -#include "system.h" #include "AddonPythonInvoker.h" #include <utility>
View file
_service:download_files:master.tar.gz/xbmc/interfaces/python/ContextItemAddonInvoker.cpp
Changed
@@ -22,7 +22,6 @@ #include <Python.h> #include <osdefs.h> -#include "system.h" #include "ContextItemAddonInvoker.h" #include "utils/log.h" #include "interfaces/python/swig.h"
View file
_service:download_files:master.tar.gz/xbmc/interfaces/python/PythonInvoker.cpp
Changed
@@ -23,7 +23,6 @@ #include <iterator> #include <osdefs.h> -#include "system.h" #include "PythonInvoker.h" #include "Application.h" #include "messaging/ApplicationMessenger.h"
View file
_service:download_files:master.tar.gz/xbmc/interfaces/python/XBPython.cpp
Changed
@@ -23,7 +23,6 @@ #include <algorithm> -#include "system.h" #include "cores/DllLoader/DllLoaderContainer.h" #include "GUIPassword.h" #include "XBPython.h"
View file
_service:download_files:master.tar.gz/xbmc/interfaces/swig/AddonModuleXbmcwsgi.i
Changed
@@ -23,8 +23,6 @@ # include <windows.h> #endif -#include "system.h" - #ifdef HAS_WEB_SERVER %}
View file
_service:download_files:master.tar.gz/xbmc/music/MusicDatabase.cpp
Changed
@@ -53,7 +53,6 @@ #include "settings/Settings.h" #include "Song.h" #include "storage/MediaManager.h" -#include "system.h" #include "TextureCache.h" #include "threads/SystemClock.h" #include "URL.h"
View file
_service:download_files:master.tar.gz/xbmc/music/tags/MusicInfoTagLoaderCDDA.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" // for HAS_DVD_DRIVE #include "MusicInfoTagLoaderCDDA.h" #include "network/cddb.h" #include "MusicInfoTag.h"
View file
_service:download_files:master.tar.gz/xbmc/music/tags/MusicInfoTagLoaderFactory.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "MusicInfoTagLoaderFactory.h" #include "TagLoaderTagLib.h" #include "MusicInfoTagLoaderCDDA.h"
View file
_service:download_files:master.tar.gz/xbmc/music/windows/GUIWindowMusicBase.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "threads/SystemClock.h" -#include "system.h" #include "GUIUserMessages.h" #include "GUIWindowMusicBase.h" #include "dialogs/GUIDialogMediaSource.h"
View file
_service:download_files:master.tar.gz/xbmc/music/windows/GUIWindowMusicPlaylistEditor.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIWindowMusicPlaylistEditor.h" #include "ServiceBroker.h" #include "Util.h"
View file
_service:download_files:master.tar.gz/xbmc/network/EventClient.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "threads/SystemClock.h" -#include "system.h" #include "EventClient.h" #include "EventPacket.h"
View file
_service:download_files:master.tar.gz/xbmc/network/EventPacket.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "EventPacket.h" #include "Socket.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/network/EventServer.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "EventServer.h" #include "EventPacket.h" #include "EventClient.h"
View file
_service:download_files:master.tar.gz/xbmc/network/Network.h
Changed
@@ -22,8 +22,6 @@ #include <string> #include <vector> -#include "system.h" - #include "settings/lib/ISettingCallback.h" enum EncMode { ENC_NONE = 0, ENC_WEP = 1, ENC_WPA = 2, ENC_WPA2 = 3 };
View file
_service:download_files:master.tar.gz/xbmc/network/NetworkServices.h
Changed
@@ -19,7 +19,6 @@ * */ -#include "system.h" #include "settings/lib/ISettingCallback.h" #ifdef HAS_WEB_SERVER
View file
_service:download_files:master.tar.gz/xbmc/network/Socket.cpp
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" - #include "Socket.h" #include "utils/log.h" #include <vector>
View file
_service:download_files:master.tar.gz/xbmc/network/Socket.h
Changed
@@ -22,7 +22,7 @@ * */ -#include "system.h" +#include "PlatformDefs.h" #include <string.h> #include <map>
View file
_service:download_files:master.tar.gz/xbmc/network/TCPServer.h
Changed
@@ -22,7 +22,7 @@ #include <vector> #include <sys/socket.h> -#include "system.h" +#include "PlatformDefs.h" #include "interfaces/json-rpc/IClient.h" #include "interfaces/json-rpc/IJSONRPCAnnouncer.h" #include "interfaces/json-rpc/ITransportLayer.h"
View file
_service:download_files:master.tar.gz/xbmc/network/UdpClient.h
Changed
@@ -29,7 +29,7 @@ #include "threads/CriticalSection.h" #include <sys/socket.h> #include <netinet/in.h> -#include "system.h" +#include "PlatformDefs.h" class CUdpClient : CThread {
View file
_service:download_files:master.tar.gz/xbmc/network/WakeOnAccess.cpp
Changed
@@ -23,7 +23,6 @@ #include <sys/socket.h> #include <arpa/inet.h> -#include "system.h" #include "network/Network.h" #include "Application.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/network/Zeroconf.cpp
Changed
@@ -23,7 +23,6 @@ #include "ServiceBroker.h" #include "settings/Settings.h" -#include "system.h" //HAS_ZEROCONF define #include "threads/Atomics.h" #include "threads/CriticalSection.h" #include "threads/SingleLock.h"
View file
_service:download_files:master.tar.gz/xbmc/network/ZeroconfBrowser.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" //HAS_ZEROCONF define #include "ZeroconfBrowser.h" #include <stdexcept> #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/network/android/ZeroconfBrowserAndroid.cpp
Changed
@@ -27,7 +27,6 @@ #include "guilib/GUIWindowManager.h" #include "GUIUserMessages.h" #include "network/DNSNameCache.h" -#include "system.h" #include "threads/SingleLock.h" #include "utils/log.h" #include "threads/SingleLock.h"
View file
_service:download_files:master.tar.gz/xbmc/network/cddb.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include <taglib/id3v1genres.h> #include "cddb.h" #include "CompileInfo.h"
View file
_service:download_files:master.tar.gz/xbmc/network/httprequesthandler/HTTPFileHandler.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "HTTPFileHandler.h" #include "utils/Mime.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/network/mdns/ZeroconfBrowserMDNS.cpp
Changed
@@ -27,7 +27,6 @@ #include "guilib/GUIWindowManager.h" #include "GUIUserMessages.h" #include "network/DNSNameCache.h" -#include "system.h" #include "threads/SingleLock.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/network/osx/ZeroconfBrowserOSX.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "ZeroconfBrowserOSX.h" #include "GUIUserMessages.h" #include "guilib/GUIWindowManager.h"
View file
_service:download_files:master.tar.gz/xbmc/network/osx/ZeroconfOSX.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "ZeroconfOSX.h" #include "threads/SingleLock.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/network/test/TestWebServer.cpp
Changed
@@ -26,7 +26,6 @@ #include <stdlib.h> #include <gtest/gtest.h> -#include "system.h" #include "URL.h" #include "filesystem/CurlFile.h" #include "filesystem/File.h"
View file
_service:download_files:master.tar.gz/xbmc/network/upnp/UPnPInternal.h
Changed
@@ -22,7 +22,6 @@ #include <Neptune/Source/Core/NptReferences.h> #include <Neptune/Source/Core/NptStrings.h> -#include "system.h" #include "FileItem.h" #include <string>
View file
_service:download_files:master.tar.gz/xbmc/peripherals/Peripherals.h
Changed
@@ -27,7 +27,6 @@ #include "interfaces/IAnnouncer.h" #include "messaging/IMessageTarget.h" #include "settings/lib/ISettingCallback.h" -#include "system.h" #include "threads/CriticalSection.h" #include "threads/Thread.h" #include "utils/Observer.h"
View file
_service:download_files:master.tar.gz/xbmc/peripherals/bus/virtual/PeripheralBusCEC.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #if defined(HAVE_LIBCEC) #include "PeripheralBusCEC.h" #include "peripherals/Peripherals.h"
View file
_service:download_files:master.tar.gz/xbmc/peripherals/devices/PeripheralCecAdapter.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #if defined(HAVE_LIBCEC) #include "PeripheralCecAdapter.h" #include "input/remote/IRRemote.h"
View file
_service:download_files:master.tar.gz/xbmc/peripherals/devices/PeripheralCecAdapter.h
Changed
@@ -19,7 +19,6 @@ * */ -#include "system.h" #if !defined(HAVE_LIBCEC) #include "Peripheral.h"
View file
_service:download_files:master.tar.gz/xbmc/pictures/GUIWindowPictures.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "threads/SystemClock.h" -#include "system.h" #include "GUIWindowPictures.h" #include "ServiceBroker.h" #include "URL.h"
View file
_service:download_files:master.tar.gz/xbmc/pictures/GUIWindowSlideShow.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "threads/SystemClock.h" -#include "system.h" #include "GUIWindowSlideShow.h" #include "Application.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/pictures/Picture.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include <algorithm> #include "Picture.h"
View file
_service:download_files:master.tar.gz/xbmc/pictures/SlideShowPicture.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "SlideShowPicture.h" -#include "system.h" #include "ServiceBroker.h" #include "guilib/GraphicContext.h" #include "guilib/Texture.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/android/activity/XBMCApp.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #include <math.h> #include <pthread.h> #include <string>
View file
_service:download_files:master.tar.gz/xbmc/platform/android/activity/android_main.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include <stdlib.h> #include <errno.h>
View file
_service:download_files:master.tar.gz/xbmc/platform/darwin/DarwinUtils.mm
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "Application.h" #include "DllPaths.h" #include "GUIUserMessages.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/darwin/ios-common/AnnounceReceiver.mm
Changed
@@ -20,8 +20,6 @@ #import <UIKit/UIKit.h> -#import "system.h" - #import "Application.h" #import "FileItem.h" #import "music/tags/MusicInfoTag.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/darwin/ios/IOSEAGLView.mm
Changed
@@ -22,7 +22,6 @@ #include <signal.h> #include <stdio.h> -#include "system.h" #include "settings/AdvancedSettings.h" #include "Application.h" #include "messaging/ApplicationMessenger.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/darwin/ios/XBMCController.mm
Changed
@@ -22,7 +22,6 @@ #include <signal.h> #include "ServiceBroker.h" -#include "system.h" #include "settings/AdvancedSettings.h" #include "settings/Settings.h" #include "FileItem.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/darwin/osx/XBMCHelper.cpp
Changed
@@ -33,7 +33,6 @@ #include "dialogs/GUIDialogOK.h" #include "dialogs/GUIDialogYesNo.h" #include "utils/log.h" -#include "system.h" #include "settings/lib/Setting.h" #include "settings/Settings.h" #include "utils/SystemInfo.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/CMakeLists.txt
Changed
@@ -13,7 +13,6 @@ LinuxTimezone.h PlatformConstants.h PlatformDefs.h - PlatformInclude.h PosixMountProvider.h stat_utf8.h stdio_utf8.h
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/DBusMessage.h
Changed
@@ -18,7 +18,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include <cstdint> #include <memory> #include <string>
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/DBusReserve.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include "DBusReserve.h" #include <dbus/dbus.h>
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/DBusReserve.h
Changed
@@ -18,7 +18,6 @@ * */ #pragma once -#include "system.h" #include <string> #include <vector>
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/DBusUtil.h
Changed
@@ -18,7 +18,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include <memory> #include <string>
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/FDEventMonitor.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include <poll.h> #include <sys/eventfd.h>
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/FDEventMonitor.h
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #include <vector> #include <map>
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/LinuxResourceCounter.cpp
Changed
@@ -18,7 +18,7 @@ * */ -#include "PlatformInclude.h" +#include "PlatformDefs.h" #include "LinuxResourceCounter.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/LinuxTimezone.cpp
Changed
@@ -19,11 +19,10 @@ */ #include <time.h> -#include "system.h" #ifdef TARGET_ANDROID #include "platform/android/bionic_supplement/bionic_supplement.h" #endif -#include "PlatformInclude.h" +#include "PlatformDefs.h" #include "LinuxTimezone.h" #include "utils/SystemInfo.h" #if defined(TARGET_DARWIN)
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/PlatformInclude.h
Deleted
@@ -1,24 +0,0 @@ -#pragma once - -/* - * Copyright (C) 2005-2015 Team Kodi - * http://kodi.tv - * - * This Program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This Program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Kodi; see the file COPYING. If not, see - * <http://www.gnu.org/licenses/>. - * - */ - -#include "PlatformDefs.h" -
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/RBP.h
Changed
@@ -29,10 +29,6 @@ #define HAVE_VMCS_CONFIG #endif -#if !defined(TARGET_WINDOWS) -#define DECLARE_UNUSED(a,b) a __attribute__((unused)) b; -#endif - #include "DllBCM.h" #include "OMXCore.h" #include "xbmc/utils/CPUInfo.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/XFileUtils.cpp
Changed
@@ -18,8 +18,7 @@ * */ -#include "system.h" -#include "PlatformInclude.h" +#include "PlatformDefs.h" #include "XFileUtils.h" #include "filesystem/SpecialProtocol.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/XTimeUtils.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "XTimeUtils.h" #include "LinuxTimezone.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/linux/input/LIRC.h
Changed
@@ -23,7 +23,6 @@ #include <string> #include <atomic> -#include "system.h" #include "input/remote/IRemoteControl.h" #include "threads/Thread.h" #include "threads/Event.h"
View file
_service:download_files:master.tar.gz/xbmc/platform/posix/Filesystem.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "platform/Filesystem.h" -#include "system.h" #include "filesystem/SpecialProtocol.h" #include "utils/URIUtils.h" @@ -34,6 +33,8 @@ #include <cstdlib> #include <limits.h> +#include <string.h> +#include <unistd.h> namespace KODI {
View file
_service:download_files:master.tar.gz/xbmc/platform/posix/main.cpp
Changed
@@ -23,9 +23,6 @@ #include <cstring> -// For HAS_SDL -#include "system.h" - #if defined(TARGET_DARWIN_OSX) || defined(TARGET_FREEBSD) #include "Util.h" // SDL redefines main as SDL_main
View file
_service:download_files:master.tar.gz/xbmc/platform/win10/CMakeLists.txt
Changed
@@ -22,7 +22,6 @@ ../win32/netdb.h ../win32/pch.h ../win32/PlatformDefs.h - ../win32/PlatformInclude.h ../win32/resource.h ../win32/unistd.h ../win32/WIN32Util.h)
View file
_service:download_files:master.tar.gz/xbmc/platform/win32/CMakeLists.txt
Changed
@@ -17,7 +17,6 @@ netdb.h pch.h PlatformDefs.h - PlatformInclude.h resource.h unistd.h WIN32Util.h
View file
_service:download_files:master.tar.gz/xbmc/platform/win32/PlatformDefs.h
Changed
@@ -22,6 +22,8 @@ #ifdef TARGET_WINDOWS +#include <windows.h> + #define __STDC_FORMAT_MACROS #include <inttypes.h>
View file
_service:download_files:master.tar.gz/xbmc/platform/win32/PlatformInclude.h
Deleted
@@ -1,25 +0,0 @@ -#pragma once - -/* - * Copyright (C) 2005-2015 Team Kodi - * http://kodi.tv - * - * This Program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2, or (at your option) - * any later version. - * - * This Program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with Kodi; see the file COPYING. If not, see - * <http://www.gnu.org/licenses/>. - * - */ - -#include <errno.h> // for ENOENT and EINVAL -#include "PlatformDefs.h" -
View file
_service:download_files:master.tar.gz/xbmc/powermanagement/DPMSSupport.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "DPMSSupport.h" #include "utils/log.h" #include <assert.h>
View file
_service:download_files:master.tar.gz/xbmc/powermanagement/PowerManager.cpp
Changed
@@ -37,7 +37,6 @@ #include "ServiceBroker.h" #include "settings/lib/Setting.h" #include "settings/Settings.h" -#include "system.h" #include "utils/log.h" #include "weather/WeatherManager.h" #include "windowing/WinSystem.h"
View file
_service:download_files:master.tar.gz/xbmc/powermanagement/linux/ConsoleUPowerSyscall.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "ConsoleUPowerSyscall.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/powermanagement/linux/FallbackPowerSyscall.h
Changed
@@ -19,7 +19,6 @@ */ #pragma once #include "powermanagement/IPowerSyscall.h" -#include "system.h" class CFallbackPowerSyscall : public CPowerSyscallWithoutEvents {
View file
_service:download_files:master.tar.gz/xbmc/powermanagement/linux/LogindUPowerSyscall.cpp
Changed
@@ -20,10 +20,12 @@ * */ -#include "system.h" #include "LogindUPowerSyscall.h" #include "utils/log.h" +#include <string.h> +#include <unistd.h> + // logind DBus interface specification: // http://www.freedesktop.org/wiki/Software/Logind/logind //
View file
_service:download_files:master.tar.gz/xbmc/powermanagement/linux/UPowerSyscall.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "UPowerSyscall.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/profiles/ProfilesManager.cpp
Changed
@@ -22,7 +22,6 @@ #include <string> #include <vector> -#include "system.h" #include "ProfilesManager.h" #include "Application.h" #include "DatabaseManager.h"
View file
_service:download_files:master.tar.gz/xbmc/programs/GUIWindowPrograms.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIWindowPrograms.h" #include "Util.h" #include "addons/GUIDialogAddonInfo.h"
View file
_service:download_files:master.tar.gz/xbmc/pvr/epg/EpgDatabase.cpp
Changed
@@ -25,7 +25,6 @@ #include "addons/kodi-addon-dev-kit/include/kodi/xbmc_pvr_types.h" #include "dbwrappers/dataset.h" #include "settings/AdvancedSettings.h" -#include "system.h" #include "utils/log.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/pvr/recordings/PVRRecordingsPath.cpp
Changed
@@ -21,7 +21,6 @@ #include "PVRRecordingsPath.h" #include "URL.h" -#include "system.h" #include "utils/RegExp.h" #include "utils/StringUtils.h" #include "utils/URIUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/rendering/gl/GLShader.cpp
Changed
@@ -19,7 +19,6 @@ */ -#include "system.h" #include "GLShader.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/rendering/gl/RenderSystemGL.cpp
Changed
@@ -18,9 +18,6 @@ * */ - -#include "system.h" - #include "RenderSystemGL.h" #include "filesystem/File.h" #include "guilib/GraphicContext.h"
View file
_service:download_files:master.tar.gz/xbmc/rendering/gl/RenderSystemGL.h
Changed
@@ -20,7 +20,6 @@ #pragma once -#include "system.h" #include "system_gl.h" #include "GLShader.h" #include "rendering/RenderSystem.h"
View file
_service:download_files:master.tar.gz/xbmc/rendering/gles/GLESShader.cpp
Changed
@@ -18,9 +18,6 @@ * */ - -#include "system.h" - #include "GLESShader.h" #include "xbmc/guilib/MatrixGLES.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/rendering/gles/RenderSystemGLES.cpp
Changed
@@ -18,9 +18,6 @@ * */ - -#include "system.h" - #include "guilib/GraphicContext.h" #include "settings/AdvancedSettings.h" #include "RenderSystemGLES.h"
View file
_service:download_files:master.tar.gz/xbmc/rendering/gles/RenderSystemGLES.h
Changed
@@ -20,7 +20,6 @@ #pragma once -#include "system.h" #include "system_gl.h" #include "rendering/RenderSystem.h" #include "GLESShader.h"
View file
_service:download_files:master.tar.gz/xbmc/settings/AdvancedSettings.cpp
Changed
@@ -36,7 +36,6 @@ #include "settings/lib/Setting.h" #include "settings/Settings.h" #include "settings/SettingUtils.h" -#include "system.h" #include "utils/LangCodeExpander.h" #include "utils/log.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/settings/SettingConditions.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "SettingConditions.h" #include "Application.h" #include "GUIPassword.h"
View file
_service:download_files:master.tar.gz/xbmc/settings/Settings.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "Settings.h" #include "Application.h" #include "Autorun.h"
View file
_service:download_files:master.tar.gz/xbmc/settings/windows/GUIWindowSettings.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIWindowSettings.h" #include "guilib/WindowIDs.h"
View file
_service:download_files:master.tar.gz/xbmc/settings/windows/GUIWindowSettingsScreenCalibration.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIWindowSettingsScreenCalibration.h" #include "guilib/GUIMoverControl.h" #include "guilib/GUIResizeControl.h"
View file
_service:download_files:master.tar.gz/xbmc/storage/AutorunMediaJob.h
Changed
@@ -18,7 +18,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include <string> #include "utils/Job.h"
View file
_service:download_files:master.tar.gz/xbmc/storage/DetectDVDType.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "DetectDVDType.h" #include "guilib/LocalizeStrings.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/storage/DetectDVDType.h
Changed
@@ -25,7 +25,7 @@ // // by Bobbin007 in 2003 -#include "system.h" +#include "PlatformDefs.h" #ifdef HAS_DVD_DRIVE
View file
_service:download_files:master.tar.gz/xbmc/storage/IStorageProvider.h
Changed
@@ -22,7 +22,6 @@ #include <string> #include <vector> -#include "system.h" #include "MediaSource.h" #ifdef HAS_DVD_DRIVE #include "cdioSupport.h"
View file
_service:download_files:master.tar.gz/xbmc/storage/IoSupport.cpp
Changed
@@ -24,7 +24,6 @@ // ////////////////////////////////////////////////////////////////////// -#include "system.h" #include "IoSupport.h" #include "utils/log.h" #ifdef TARGET_WINDOWS
View file
_service:download_files:master.tar.gz/xbmc/storage/IoSupport.h
Changed
@@ -27,7 +27,7 @@ #if !defined(AFX_IOSUPPORT_H__F084A488_BD6E_49D5_8CD3_0BE62149DB40__INCLUDED_) #define AFX_IOSUPPORT_H__F084A488_BD6E_49D5_8CD3_0BE62149DB40__INCLUDED_ -#include "system.h" // for Win32 types +#include "PlatformDefs.h" // for Win32 types #pragma once
View file
_service:download_files:master.tar.gz/xbmc/storage/MediaManager.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "MediaManager.h" #include "ServiceBroker.h" #include "guilib/LocalizeStrings.h"
View file
_service:download_files:master.tar.gz/xbmc/storage/MediaManager.h
Changed
@@ -26,6 +26,7 @@ #include "utils/Job.h" #include "IStorageProvider.h" #include "threads/CriticalSection.h" +#include "PlatformDefs.h" #define TRAY_OPEN 16 #define TRAY_CLOSED_NO_MEDIA 64
View file
_service:download_files:master.tar.gz/xbmc/storage/cdioSupport.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "cdioSupport.h" #include "threads/SingleLock.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/storage/cdioSupport.h
Changed
@@ -27,7 +27,7 @@ #pragma once -#include "system.h" // for ssize_t typedef +#include "PlatformDefs.h" // for ssize_t typedef #include <cdio/cdio.h> #include "threads/CriticalSection.h"
View file
_service:download_files:master.tar.gz/xbmc/system.h
Changed
@@ -20,41 +20,5 @@ * */ -#if !defined(TARGET_WINDOWS) -#define DECLARE_UNUSED(a,b) a __attribute__((unused)) b; -#endif - -/***************** - * Win32 Specific - *****************/ - -#if defined(TARGET_WINDOWS) -#define DECLARE_UNUSED(a,b) a b; -#endif - -/**************************************** - * Additional platform specific includes - ****************************************/ - -#if defined(TARGET_WINDOWS) -#include <windows.h> -#include "PlatformInclude.h" -#endif - -#if defined(TARGET_POSIX) -#include <time.h> -#include <sys/time.h> -#include <sys/types.h> -#include <errno.h> -#include "PlatformInclude.h" -#endif - #define SAFE_DELETE(p) do { delete (p); (p)=NULL; } while (0) -#define SAFE_DELETE_ARRAY(p) do { delete[] (p); (p)=NULL; } while (0) #define SAFE_RELEASE(p) do { if(p) { (p)->Release(); (p)=NULL; } } while (0) - -// Useful pixel colour manipulation macros -#define GET_A(color) ((color >> 24) & 0xFF) -#define GET_R(color) ((color >> 16) & 0xFF) -#define GET_G(color) ((color >> 8) & 0xFF) -#define GET_B(color) ((color >> 0) & 0xFF)
View file
_service:download_files:master.tar.gz/xbmc/system_gl.h
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" - #ifdef HAS_GL // always define GL_GLEXT_PROTOTYPES before include gl headers #if !defined(GL_GLEXT_PROTOTYPES) @@ -51,3 +49,9 @@ #include <GLES3/gl3.h> #endif #endif + +// Useful pixel colour manipulation macros +#define GET_A(color) ((color >> 24) & 0xFF) +#define GET_R(color) ((color >> 16) & 0xFF) +#define GET_G(color) ((color >> 8) & 0xFF) +#define GET_B(color) ((color >> 0) & 0xFF)
View file
_service:download_files:master.tar.gz/xbmc/utils/CharsetConverter.cpp
Changed
@@ -34,7 +34,6 @@ #include "log.h" #include "settings/lib/Setting.h" #include "settings/Settings.h" -#include "system.h" #include "utils/StringUtils.h" #include "utils/Utf8Utils.h"
View file
_service:download_files:master.tar.gz/xbmc/utils/FileOperationJob.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "FileOperationJob.h" #include "URL.h" #include "Util.h"
View file
_service:download_files:master.tar.gz/xbmc/utils/GLUtils.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "GLUtils.h" #include "log.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/utils/GLUtils.h
Changed
@@ -31,7 +31,6 @@ // if not it's just an empty inline stub, and thus won't affect performance // and will be optimized out. -#include "system.h" #include "system_gl.h" void _VerifyGLState(const char* szfile, const char* szfunction, int lineno);
View file
_service:download_files:master.tar.gz/xbmc/utils/HttpRangeUtils.h
Changed
@@ -24,8 +24,6 @@ #include <string> #include <vector> -#include "system.h" - class CHttpRange { public:
View file
_service:download_files:master.tar.gz/xbmc/utils/JobManager.cpp
Changed
@@ -28,8 +28,6 @@ #include "platform/linux/XTimeUtils.h" #endif -#include "system.h" - bool CJob::ShouldCancel(unsigned int progress, unsigned int total) const { if (m_callback)
View file
_service:download_files:master.tar.gz/xbmc/utils/RssReader.h
Changed
@@ -27,6 +27,7 @@ #include "threads/Thread.h" #include "utils/IRssObserver.h" #include "utils/XBMCTinyXML.h" +#include "PlatformDefs.h" class CRssReader : public CThread {
View file
_service:download_files:master.tar.gz/xbmc/utils/Screenshot.cpp
Changed
@@ -20,7 +20,6 @@ #include "Screenshot.h" -#include "system.h" #include "system_gl.h" #include <vector>
View file
_service:download_files:master.tar.gz/xbmc/utils/SystemInfo.cpp
Changed
@@ -21,7 +21,6 @@ #include <limits.h> #include "threads/SystemClock.h" -#include "system.h" #include "SystemInfo.h" #ifndef TARGET_POSIX #include <conio.h>
View file
_service:download_files:master.tar.gz/xbmc/utils/log.cpp
Changed
@@ -21,7 +21,6 @@ #include "log.h" #include "CompileInfo.h" #include "settings/AdvancedSettings.h" -#include "system.h" #include "threads/CriticalSection.h" #include "threads/SingleLock.h" #include "threads/Thread.h"
View file
_service:download_files:master.tar.gz/xbmc/utils/test/TestCharsetConverter.cpp
Changed
@@ -22,7 +22,6 @@ #include "settings/Settings.h" #include "utils/CharsetConverter.h" #include "utils/Utf8Utils.h" -#include "system.h" #include "gtest/gtest.h"
View file
_service:download_files:master.tar.gz/xbmc/video/dialogs/GUIDialogCMSSettings.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "cores/VideoPlayer/VideoRenderers/ColorManager.h" #include "FileItem.h" #include "GUIDialogCMSSettings.h"
View file
_service:download_files:master.tar.gz/xbmc/video/dialogs/GUIDialogSubtitles.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIUserMessages.h" #include "Application.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/video/dialogs/GUIDialogVideoBookmarks.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIDialogVideoBookmarks.h" #include "video/VideoDatabase.h" #include "Application.h"
View file
_service:download_files:master.tar.gz/xbmc/video/dialogs/GUIDialogVideoSettings.cpp
Changed
@@ -33,7 +33,6 @@ #include "settings/lib/SettingsManager.h" #include "settings/MediaSettings.h" #include "settings/Settings.h" -#include "system.h" #include "utils/log.h" #include "utils/Variant.h" #include "video/VideoDatabase.h"
View file
_service:download_files:master.tar.gz/xbmc/video/windows/GUIWindowFullScreen.cpp
Changed
@@ -19,7 +19,6 @@ */ #include "threads/SystemClock.h" -#include "system.h" #include "GUIWindowFullScreen.h" #include "GUIWindowFullScreenDefines.h" #include "Application.h"
View file
_service:download_files:master.tar.gz/xbmc/video/windows/GUIWindowVideoBase.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIWindowVideoBase.h" #include "ServiceBroker.h" #include "Util.h"
View file
_service:download_files:master.tar.gz/xbmc/view/ViewDatabase.cpp
Changed
@@ -24,7 +24,6 @@ #include "dbwrappers/dataset.h" #include "SortFileItem.h" -#include "system.h" #include "utils/LegacyPathTranslation.h" #include "utils/log.h" #include "utils/SortUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/GLContext.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include "GLContext.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/GLContextEGL.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" // always define GL_GLEXT_PROTOTYPES before include gl headers #if !defined(GL_GLEXT_PROTOTYPES)
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/VideoSyncDRM.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "VideoSyncDRM.h" #include "ServiceBroker.h" #include "xf86drm.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/VideoSyncGLX.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "VideoSyncGLX.h" #include <sstream> #include <X11/extensions/Xrandr.h>
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/WinEventsX11.cpp
Changed
@@ -19,8 +19,6 @@ * */ -#include "system.h" - #include "xbmc/windowing/WinEvents.h" #include "WinEventsX11.h" #include "Application.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/WinSystemX11.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "WinSystemX11.h" #include "ServiceBroker.h" #include "settings/DisplaySettings.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/WinSystemX11GLContext.cpp
Changed
@@ -17,7 +17,6 @@ * <http://www.gnu.org/licenses/>. * */ -#include "system.h" #include <X11/Xlib.h> #include <X11/Xutil.h>
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/XRandR.cpp
Changed
@@ -22,8 +22,7 @@ #include <string.h> #include <sys/wait.h> -#include "system.h" -#include "PlatformInclude.h" +#include "PlatformDefs.h" #include "utils/XBMCTinyXML.h" #include "utils/StringUtils.h" #include "../xbmc/utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/X11/XRandR.h
Changed
@@ -20,8 +20,6 @@ * */ -#include "system.h" - #include <string> #include <vector> #include <map>
View file
_service:download_files:master.tar.gz/xbmc/windowing/amlogic/VideoSyncAML.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "VideoSyncAML.h" #include "ServiceBroker.h" #include "guilib/GraphicContext.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/android/AndroidUtils.cpp
Changed
@@ -35,7 +35,6 @@ #include "guilib/gui3d.h" #include "utils/log.h" -#include "system.h" #include "settings/Settings.h" #include "ServiceBroker.h" #include "utils/StringUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/android/VideoSyncAndroid.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "utils/log.h" #include "ServiceBroker.h" #include "VideoSyncAndroid.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/android/WinEventsAndroid.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "WinEventsAndroid.h" #include "Application.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/osx/VideoSyncIos.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "utils/log.h" #include "VideoSyncIos.h" #include "utils/MathUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/osx/VideoSyncOsx.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "utils/log.h" #include "VideoSyncOsx.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/osx/WinEventsIOS.mm
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include <list> #include "WinEventsIOS.h" #include "input/InputManager.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/osx/WinEventsSDL.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "WinEventsSDL.h" #include "Application.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/osx/WinSystemIOS.mm
Changed
@@ -18,9 +18,6 @@ * */ - -#include "system.h" - #include "VideoSyncIos.h" #include "WinEventsIOS.h" #include "WinSystemIOS.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/rpi/RPIUtils.cpp
Changed
@@ -20,8 +20,6 @@ #include "RPIUtils.h" -#include "system.h" - #include <math.h> #include "ServiceBroker.h" #include "utils/log.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/rpi/VideoSyncPi.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "VideoSyncPi.h" #include "ServiceBroker.h" #include "guilib/GraphicContext.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/windows/VideoSyncD3D.cpp
Changed
@@ -18,8 +18,6 @@ * */ -#include "system.h" - #include "utils/log.h" #include "Utils/TimeUtils.h" #include "Utils/MathUtils.h"
View file
_service:download_files:master.tar.gz/xbmc/windowing/windows/WinSystemWin32DX.cpp
Changed
@@ -25,6 +25,7 @@ #include "utils/log.h" #include "WinSystemWin32DX.h" #include "platform/win32/CharsetConverter.h" +#include "system.h" #ifndef _M_X64 #pragma comment(lib, "EasyHook32.lib")
View file
_service:download_files:master.tar.gz/xbmc/windows/GUIWindowFileManager.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIWindowFileManager.h" #include "Application.h" #include "ServiceBroker.h"
View file
_service:download_files:master.tar.gz/xbmc/windows/GUIWindowLoginScreen.cpp
Changed
@@ -20,8 +20,6 @@ #include "GUIWindowLoginScreen.h" -#include "system.h" - #include "Application.h" #include "ContextMenuManager.h" #include "FileItem.h"
View file
_service:download_files:master.tar.gz/xbmc/windows/GUIWindowSystemInfo.cpp
Changed
@@ -18,7 +18,6 @@ * */ -#include "system.h" #include "GUIWindowSystemInfo.h" #include "GUIInfoManager.h" #include "guilib/WindowIDs.h"
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.