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

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/filters/transform/VSFilter/plugins.cpp')
-rw-r--r--src/filters/transform/VSFilter/plugins.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters/transform/VSFilter/plugins.cpp b/src/filters/transform/VSFilter/plugins.cpp
index 430179ea6..bb5c60449 100644
--- a/src/filters/transform/VSFilter/plugins.cpp
+++ b/src/filters/transform/VSFilter/plugins.cpp
@@ -524,7 +524,7 @@ namespace Plugin
dst.w = fa->src.w;
dst.h = fa->src.h;
dst.bpp = 32;
- dst.pitch = fa->src.pitch;
+ dst.pitch = int(fa->src.pitch);
dst.bits = (BYTE*)fa->src.data;
Render(dst, 10000i64 * fa->pfsi->lSourceFrameMS, 1000.0f / fa->pfsi->lMicrosecsPerFrame);