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-28 16:09:13 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-05-28 16:09:13 +0400
commit9c2c7156fa2ea34ce3ea2c586abc9552dce1f0f0 (patch)
tree08321645f00ebab685e25ce1ca2650c7b6f853ca /src/filters/transform
parent90edc970713d7e3375df4c56f49cb017e395210e (diff)
* add a space after switch statements
* MainFrm.h keep a couple of single lines git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4926 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/transform')
-rw-r--r--src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp b/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
index 974463017..046bc7820 100644
--- a/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
+++ b/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
@@ -1372,7 +1372,7 @@ STDMETHODIMP CMpeg2DecInputPin::Set(REFGUID PropSet, ULONG Id, LPVOID pInstanceD
}
/*
if (PropSet == AM_KSPROPSETID_DVD_RateChange)
- switch(Id)
+ switch (Id)
{
case AM_RATE_ChangeRate:
{
@@ -1424,7 +1424,7 @@ STDMETHODIMP CMpeg2DecInputPin::Get(REFGUID PropSet, ULONG Id, LPVOID pInstanceD
}
/*
if (PropSet == AM_KSPROPSETID_DVD_RateChange)
- switch(Id)
+ switch (Id)
{
case AM_RATE_FullDataRateMax:
{
@@ -1484,7 +1484,7 @@ STDMETHODIMP CMpeg2DecInputPin::QuerySupported(REFGUID PropSet, ULONG Id, ULONG*
}
/*
if (PropSet == AM_KSPROPSETID_DVD_RateChange)
- switch(Id)
+ switch (Id)
{
case AM_RATE_ChangeRate:
*pTypeSupport = KSPROPERTY_SUPPORT_SET;