aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorpopcornmix <popcornmix@gmail.com>2015-06-12 17:27:47 +0100
committerpopcornmix <popcornmix@gmail.com>2015-06-14 14:46:59 +0100
commit224c1919ad3f68e23e817f41036687343f34aaae (patch)
tree8512337cc064d25ef1c1aae091a0b2dff6cca6c1 /project
parente153e061b88c90c5e4c8c474115955886809ee78 (diff)
[utils] Disable fast_memcpy which is slower than memcpy
The default glibc memcpy is likely to be better tuned than this code which hasn't been touched for four years. In a test with software video decode on Pi2 the skipped frames went from 189 to 172 when fast_memcpy was disabled.
Diffstat (limited to 'project')
-rw-r--r--project/VS2010Express/XBMC.vcxproj4
-rw-r--r--project/VS2010Express/XBMC.vcxproj.filters3
2 files changed, 0 insertions, 7 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj
index 2d37c575b2..e8e8dce36a 100644
--- a/project/VS2010Express/XBMC.vcxproj
+++ b/project/VS2010Express/XBMC.vcxproj
@@ -1439,10 +1439,6 @@
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
</ClCompile>
- <ClCompile Include="..\..\xbmc\utils\test\Testfastmemcpy.cpp">
- <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
- <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
- </ClCompile>
<ClCompile Include="..\..\xbmc\utils\TimeSmoother.cpp" />
<ClCompile Include="..\..\xbmc\utils\TimeUtils.cpp" />
<ClCompile Include="..\..\xbmc\utils\URIUtils.cpp" />
diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters
index c858f329e2..cada31e827 100644
--- a/project/VS2010Express/XBMC.vcxproj.filters
+++ b/project/VS2010Express/XBMC.vcxproj.filters
@@ -2371,9 +2371,6 @@
<ClCompile Include="..\..\xbmc\utils\test\TestEndianSwap.cpp">
<Filter>utils\test</Filter>
</ClCompile>
- <ClCompile Include="..\..\xbmc\utils\test\Testfastmemcpy.cpp">
- <Filter>utils\test</Filter>
- </ClCompile>
<ClCompile Include="..\..\xbmc\utils\test\TestFileOperationJob.cpp">
<Filter>utils\test</Filter>
</ClCompile>