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-05-27 13:08:33 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-05-27 13:08:33 +0400
commitf829a8f5b1237ea931aa4eb1965110084a990149 (patch)
treef46ac1ecf4fb8983eecf768ef2e580154fc21c6e /src/filters/transform/Mpeg2DecFilter
parenta12d0819f8acd45a99431577831a3aa5f81284b2 (diff)
use a space after if, for, while
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4907 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/transform/Mpeg2DecFilter')
-rw-r--r--src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp b/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
index 42d7f5076..974463017 100644
--- a/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
+++ b/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
@@ -204,8 +204,8 @@ CMpeg2DecFilter::CMpeg2DecFilter(LPUNKNOWN lpunk, HRESULT* phr)
}
// m_pOutput = DNew CMpeg2DecOutputPin(this, phr, L"Output");
- // if(!m_pOutput) *phr = E_OUTOFMEMORY;
- // if(FAILED(*phr)) return;
+ // if (!m_pOutput) *phr = E_OUTOFMEMORY;
+ // if (FAILED(*phr)) return;
m_pSubpicInput = DNew CSubpicInputPin(this, phr);
if (!m_pSubpicInput) {
@@ -1371,7 +1371,7 @@ STDMETHODIMP CMpeg2DecInputPin::Set(REFGUID PropSet, ULONG Id, LPVOID pInstanceD
return E_PROP_ID_UNSUPPORTED;
}
/*
- if(PropSet == AM_KSPROPSETID_DVD_RateChange)
+ if (PropSet == AM_KSPROPSETID_DVD_RateChange)
switch(Id)
{
case AM_RATE_ChangeRate:
@@ -1423,7 +1423,7 @@ STDMETHODIMP CMpeg2DecInputPin::Get(REFGUID PropSet, ULONG Id, LPVOID pInstanceD
return E_PROP_ID_UNSUPPORTED;
}
/*
- if(PropSet == AM_KSPROPSETID_DVD_RateChange)
+ if (PropSet == AM_KSPROPSETID_DVD_RateChange)
switch(Id)
{
case AM_RATE_FullDataRateMax:
@@ -1483,7 +1483,7 @@ STDMETHODIMP CMpeg2DecInputPin::QuerySupported(REFGUID PropSet, ULONG Id, ULONG*
return E_PROP_ID_UNSUPPORTED;
}
/*
- if(PropSet == AM_KSPROPSETID_DVD_RateChange)
+ if (PropSet == AM_KSPROPSETID_DVD_RateChange)
switch(Id)
{
case AM_RATE_ChangeRate:
@@ -1557,7 +1557,7 @@ HRESULT CMpeg2DecOutputPin::Deliver(IMediaSample* pMediaSample)
}
#define CallQueue(call) \
- if(!m_pOutputQueue) return NOERROR; \
+ if (!m_pOutputQueue) return NOERROR; \
m_pOutputQueue->##call; \
return NOERROR; \