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:
authorSpec-Chum <spec-chum@users.sourceforge.net>2010-02-13 01:10:53 +0300
committerSpec-Chum <spec-chum@users.sourceforge.net>2010-02-13 01:10:53 +0300
commit01aa5d07671d3ea3353322224a8d156f02aba0f5 (patch)
treee8a243dc0e4a33334c85e328f4fe49c1b8735809 /src/DSUtil/vd.cpp
parent946b9afe2fa77c839564e5037bf2ce243e280ab5 (diff)
Typos
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1653 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/DSUtil/vd.cpp')
-rw-r--r--src/DSUtil/vd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DSUtil/vd.cpp b/src/DSUtil/vd.cpp
index ba726e172..410308a74 100644
--- a/src/DSUtil/vd.cpp
+++ b/src/DSUtil/vd.cpp
@@ -545,7 +545,7 @@ bool BitBltFromI420ToRGB(int w, int h, BYTE* dst, int dstpitch, int dbpp, BYTE*
if(w<=0 || h<=0 || (w&1) || (h&1))
return(false);
- void (*asm_YUVtoRGB_row)(void* ARGB1, void* ARGB2, BYTE* Y1, BYTE* Y2, BYTE* U, BYTE* V, long width) = NULL;;
+ void (*asm_YUVtoRGB_row)(void* ARGB1, void* ARGB2, BYTE* Y1, BYTE* Y2, BYTE* U, BYTE* V, long width) = NULL;
if((g_cpuid.m_flags & CCpuID::ssefpu) && !(w&7))
{