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:
Diffstat (limited to 'src/apps/mplayerc/FGFilter.cpp')
-rw-r--r--src/apps/mplayerc/FGFilter.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/apps/mplayerc/FGFilter.cpp b/src/apps/mplayerc/FGFilter.cpp
index 1b4d2eb42..72623e3b7 100644
--- a/src/apps/mplayerc/FGFilter.cpp
+++ b/src/apps/mplayerc/FGFilter.cpp
@@ -344,11 +344,13 @@ void CFGFilterRegistry::ExtractFilterData(BYTE* p, UINT len)
WORD pi = *(WORD*)p;
p += 2;
ASSERT(pi == 'ip');
+ UNREFERENCED_PARAMETER(pi);
ChkLen(1)
BYTE x33 = *p;
p++;
ASSERT(x33 == 0x33);
+ UNREFERENCED_PARAMETER(x33);
ChkLen(8)
bool fOutput = !!(*p&REG_PINFLAG_B_OUTPUT);
@@ -367,11 +369,13 @@ void CFGFilterRegistry::ExtractFilterData(BYTE* p, UINT len)
WORD ty = *(WORD*)p;
p += 2;
ASSERT(ty == 'yt');
+ UNREFERENCED_PARAMETER(ty);
ChkLen(5)
BYTE x33 = *p;
p++;
ASSERT(x33 == 0x33);
+ UNREFERENCED_PARAMETER(x33);
p += 4;
ChkLen(8)
@@ -563,6 +567,7 @@ POSITION CFGFilterList::GetHeadPosition()
}
}
+#ifdef _DEBUG
TRACE(_T("FGM: Sorting filters\n"));
POSITION pos = m_sortedfilters.GetHeadPosition();
@@ -570,6 +575,7 @@ POSITION CFGFilterList::GetHeadPosition()
CFGFilter* pFGF = m_sortedfilters.GetNext(pos);
TRACE(_T("FGM: - %016I64x '%s'\n"), pFGF->GetMerit(), pFGF->GetName().IsEmpty() ? CStringFromGUID(pFGF->GetCLSID()) : CString(pFGF->GetName()));
}
+#endif
return m_sortedfilters.GetHeadPosition();
}