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/DSUtil/vd.h')
-rw-r--r--src/DSUtil/vd.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/DSUtil/vd.h b/src/DSUtil/vd.h
index 440ee76e8..9c4ddcc51 100644
--- a/src/DSUtil/vd.h
+++ b/src/DSUtil/vd.h
@@ -15,7 +15,7 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
-// Notes:
+// Notes:
// - BitBltFromI420ToRGB is from VirtualDub
// - BitBltFromYUY2ToRGB is from AviSynth 2.52
// - The core assembly function of CCpuID is from DVD2AVI
@@ -23,12 +23,7 @@
#pragma once
-class CCpuID
-{
-public:
- CCpuID();
- enum flag_t {mmx = 1, ssemmx = 2, ssefpu = 4, sse2 = 8, _3dnow = 16} m_flags;
-};
+class CCpuID {public: CCpuID(); enum flag_t {mmx=1, ssemmx=2, ssefpu=4, sse2=8, _3dnow=16} m_flags;};
extern CCpuID g_cpuid;
extern bool BitBltFromI420ToI420(int w, int h, BYTE* dsty, BYTE* dstu, BYTE* dstv, int dstpitch, BYTE* srcy, BYTE* srcu, BYTE* srcv, int srcpitch);