Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2017-03-07 19:23:37 +0300
committerHendrik Leppkes <h.leppkes@gmail.com>2017-03-07 19:23:37 +0300
commit06535b035465cd32885b4fc6a43be9bac8c02b2a (patch)
treecfd3b3c9d19da71bb9064ee7e5a9554f110d347a /common
parent8b3951376d56dac7fccfbf43a77f26702ad29a8c (diff)
Support VS2017
Diffstat (limited to 'common')
-rw-r--r--common/DSUtilLite/gpu_memcpy_sse4.h1
-rw-r--r--common/platform.props3
2 files changed, 4 insertions, 0 deletions
diff --git a/common/DSUtilLite/gpu_memcpy_sse4.h b/common/DSUtilLite/gpu_memcpy_sse4.h
index dc44a188..76eec8e1 100644
--- a/common/DSUtilLite/gpu_memcpy_sse4.h
+++ b/common/DSUtilLite/gpu_memcpy_sse4.h
@@ -20,6 +20,7 @@
*/
#include <emmintrin.h>
+#include <smmintrin.h>
// gpu_memcpy is a memcpy style function that copied data very fast from a
// GPU tiled memory (write back)
diff --git a/common/platform.props b/common/platform.props
index 15026e37..34acd7eb 100644
--- a/common/platform.props
+++ b/common/platform.props
@@ -6,4 +6,7 @@
<PropertyGroup Label="Configuration" Condition="'$(VisualStudioVersion)' == '14.0'">
<PlatformToolset>v140_xp</PlatformToolset>
</PropertyGroup>
+ <PropertyGroup Label="Configuration" Condition="'$(VisualStudioVersion)' == '15.0'">
+ <PlatformToolset>v141_xp</PlatformToolset>
+ </PropertyGroup>
</Project>