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-05-24 02:23:54 +0400
committerSpec-Chum <spec-chum@users.sourceforge.net>2010-05-24 02:23:54 +0400
commit7bffd4d229181b4a0ef55ad918bc9c31ceac605f (patch)
tree1cae7e57eceb0e02950fc639b87753f61d037dfd /src/filters/transform/BufferFilter
parent4e5b4e90f3651089dcc7d0697c768593242e9403 (diff)
Fixed some Intel C++ compiler errors, 32-bit MPC-HC can be compiled but the compiled exe has problems similar to vs2010 builds. We do not support the intel compiler, but patches are welcome. (thanks for the python script, Marko - really helped)
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1933 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/transform/BufferFilter')
-rw-r--r--src/filters/transform/BufferFilter/BufferFilter.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/filters/transform/BufferFilter/BufferFilter.h b/src/filters/transform/BufferFilter/BufferFilter.h
index a65d7a16c..33561398e 100644
--- a/src/filters/transform/BufferFilter/BufferFilter.h
+++ b/src/filters/transform/BufferFilter/BufferFilter.h
@@ -23,8 +23,8 @@
#include <atlbase.h>
-[uuid("63EF0035-3FFE-4c41-9230-4346E028BE20")]
-interface IBufferFilter : public IUnknown
+interface __declspec(uuid("63EF0035-3FFE-4c41-9230-4346E028BE20"))
+IBufferFilter : public IUnknown
{
STDMETHOD(SetBuffers) (int nBuffers) = 0;
STDMETHOD_(int, GetBuffers) () = 0;
@@ -32,8 +32,8 @@ interface IBufferFilter : public IUnknown
STDMETHOD(SetPriority) (DWORD dwPriority = THREAD_PRIORITY_NORMAL) = 0;
};
-[uuid("DA2B3D77-2F29-4fd2-AC99-DEE4A8A13BF0")]
-class CBufferFilter : public CTransformFilter, public IBufferFilter
+class __declspec(uuid("DA2B3D77-2F29-4fd2-AC99-DEE4A8A13BF0"))
+CBufferFilter : public CTransformFilter, public IBufferFilter
{
int m_nSamplesToBuffer;