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/DSUtil/NullRenderers.h
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/DSUtil/NullRenderers.h')
-rw-r--r--src/DSUtil/NullRenderers.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/DSUtil/NullRenderers.h b/src/DSUtil/NullRenderers.h
index bf3581f42..0552508f3 100644
--- a/src/DSUtil/NullRenderers.h
+++ b/src/DSUtil/NullRenderers.h
@@ -33,8 +33,8 @@ public:
CNullRenderer(REFCLSID clsid, TCHAR* pName, LPUNKNOWN pUnk, HRESULT* phr);
};
-[uuid("579883A0-4E2D-481F-9436-467AAFAB7DE8")]
-class CNullVideoRenderer : public CNullRenderer
+class __declspec(uuid("579883A0-4E2D-481F-9436-467AAFAB7DE8"))
+CNullVideoRenderer : public CNullRenderer
{
protected:
HRESULT CheckMediaType(const CMediaType* pmt);
@@ -43,8 +43,8 @@ public:
CNullVideoRenderer(LPUNKNOWN pUnk, HRESULT* phr);
};
-[uuid("DD9ED57D-6ABF-42E8-89A2-11D04798DC58")]
-class CNullUVideoRenderer : public CNullRenderer
+class __declspec(uuid("DD9ED57D-6ABF-42E8-89A2-11D04798DC58"))
+CNullUVideoRenderer : public CNullRenderer
{
protected:
HRESULT CheckMediaType(const CMediaType* pmt);
@@ -54,8 +54,8 @@ public:
virtual HRESULT DoRenderSample(IMediaSample* pSample);
};
-[uuid("0C38BDFD-8C17-4E00-A344-F89397D3E22A")]
-class CNullAudioRenderer : public CNullRenderer
+class __declspec(uuid("0C38BDFD-8C17-4E00-A344-F89397D3E22A"))
+CNullAudioRenderer : public CNullRenderer
{
protected:
HRESULT CheckMediaType(const CMediaType* pmt);
@@ -64,8 +64,8 @@ public:
CNullAudioRenderer(LPUNKNOWN pUnk, HRESULT* phr);
};
-[uuid("64A45125-7343-4772-9DA4-179FAC9D462C")]
-class CNullUAudioRenderer : public CNullRenderer
+class __declspec(uuid("64A45125-7343-4772-9DA4-179FAC9D462C"))
+CNullUAudioRenderer : public CNullRenderer
{
protected:
HRESULT CheckMediaType(const CMediaType* pmt);
@@ -74,8 +74,8 @@ public:
CNullUAudioRenderer(LPUNKNOWN pUnk, HRESULT* phr);
};
-[uuid("655D7613-C26C-4A25-BBBD-3C9C516122CC")]
-class CNullTextRenderer : public CBaseFilter, public CCritSec
+class __declspec(uuid("655D7613-C26C-4A25-BBBD-3C9C516122CC"))
+CNullTextRenderer : public CBaseFilter, public CCritSec
{
class CTextInputPin : public CBaseInputPin
{