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:
authorXhmikosR <xhmikosr@users.sourceforge.net>2012-06-18 14:22:41 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-06-18 14:22:41 +0400
commit83ca322acfe6c456e3795ef76330a0ee2ce208d8 (patch)
treee71907931e90836e9c5cdd3e9ae13da6f4be20aa /src/DSUtil/NullRenderers.cpp
parent6c486f94df1ed898fac17fd2d0c4d5fc160f8558 (diff)
consistently use DNew
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5178 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/DSUtil/NullRenderers.cpp')
-rw-r--r--src/DSUtil/NullRenderers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DSUtil/NullRenderers.cpp b/src/DSUtil/NullRenderers.cpp
index 9eeec3451..927f4ff66 100644
--- a/src/DSUtil/NullRenderers.cpp
+++ b/src/DSUtil/NullRenderers.cpp
@@ -310,7 +310,7 @@ CNullUVideoRenderer::CNullUVideoRenderer(LPUNKNOWN pUnk, HRESULT* phr)
: CNullRenderer(__uuidof(this), NAME("Null Video Renderer (Uncompressed)"), pUnk, phr)
{
#ifdef USE_DXVA
- m_pInputPin = new CNullVideoRendererInputPin(this, phr, L"In");
+ m_pInputPin = DNew CNullVideoRendererInputPin(this,phr,L"In");
#endif
}