diff options
author | Rainer Hochecker <fernetmenta@online.de> | 2014-11-08 12:25:43 +0100 |
---|---|---|
committer | Rainer Hochecker <fernetmenta@online.de> | 2014-11-11 07:37:45 +0100 |
commit | 3b2ccfdbc469de6c480721361374c4cc265623ed (patch) | |
tree | 7f058fcdb6c85af30c3e15e2c3e2505276f166ea /project | |
parent | b69bbac208acad8e247908da3fae1a295a72c151 (diff) |
[infomanager] only update a/v info if something has changed and only by main thread
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index c29fb2f17b..098879e31d 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -217,6 +217,7 @@ <ClCompile Include="..\..\xbmc\cores\AudioEngine\Utils\AEPackIEC61937.cpp" /> <ClCompile Include="..\..\xbmc\cores\AudioEngine\Utils\AEStreamInfo.cpp" /> <ClCompile Include="..\..\xbmc\cores\AudioEngine\Utils\AEUtil.cpp" /> + <ClCompile Include="..\..\xbmc\cores\DataCacheCore.cpp" /> <ClCompile Include="..\..\xbmc\cores\dvdplayer\DVDCodecs\Audio\DVDAudioCodecPassthrough.cpp" /> <ClCompile Include="..\..\xbmc\cores\dvdplayer\DVDCodecs\Video\DVDVideoCodec.cpp" /> <ClCompile Include="..\..\xbmc\cores\dvdplayer\DVDDemuxers\DVDDemuxBXA.cpp" /> @@ -806,6 +807,7 @@ <ClInclude Include="..\..\xbmc\ApplicationPlayer.h" /> <ClInclude Include="..\..\xbmc\AppParamParser.h" /> <ClInclude Include="..\..\xbmc\CompileInfo.h" /> + <ClInclude Include="..\..\xbmc\cores\DataCacheCore.h" /> <CustomBuild Include="..\..\xbmc\GitRevision.h"> <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">CALL update_git_rev.bat</Command> <Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\xbmc\win32\git_rev.h</Outputs> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index dbb9b9d41f..0a04d7f20f 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3083,6 +3083,9 @@ <ClCompile Include="..\..\xbmc\video\videosync\VideoSyncD3D.cpp"> <Filter>video\videosync</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\cores\DataCacheCore.cpp"> + <Filter>cores</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ClInclude Include="..\..\xbmc\win32\pch.h"> @@ -6034,6 +6037,9 @@ <ClInclude Include="..\..\xbmc\video\videosync\VideoSync.h"> <Filter>video\videosync</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\cores\DataCacheCore.h"> + <Filter>cores</Filter> + </ClInclude> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\..\xbmc\win32\XBMC_PC.rc"> |