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-20 15:11:43 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-05-20 15:11:43 +0400
commitc827ef7205641a6880b6342cad11252e31a4637f (patch)
tree925a5d454c90c2b693a18f92adb40f69346c50cf /src/filters/transform/Mpeg2DecFilter
parent97c714d3e02befb90984162843c65a41af898c3a (diff)
use UNREFERENCED_PARAMETER instead of UNUSED_ALWAYS which is always available
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4810 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/filters/transform/Mpeg2DecFilter')
-rw-r--r--src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp b/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
index 89e075335..42d7f5076 100644
--- a/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
+++ b/src/filters/transform/Mpeg2DecFilter/Mpeg2DecFilter.cpp
@@ -600,8 +600,8 @@ HRESULT CMpeg2DecFilter::Transform(IMediaSample* pIn)
REFERENCE_TIME rtStart = m_fb.rtStart;
REFERENCE_TIME rtStop = m_fb.rtStop;
- UNUSED_ALWAYS(rtStart);
- UNUSED_ALWAYS(rtStop);
+ UNREFERENCED_PARAMETER(rtStart);
+ UNREFERENCED_PARAMETER(rtStop);
//
@@ -1396,13 +1396,13 @@ STDMETHODIMP CMpeg2DecInputPin::Get(REFGUID PropSet, ULONG Id, LPVOID pInstanceD
switch (Id) {
case AM_RATE_SimpleRateChange: {
AM_SimpleRateChange* p = (AM_SimpleRateChange*)pPropertyData;
- UNUSED_ALWAYS(p);
+ UNREFERENCED_PARAMETER(p);
return E_PROP_ID_UNSUPPORTED;
}
break;
case AM_RATE_MaxFullDataRate: {
AM_MaxFullDataRate* p = (AM_MaxFullDataRate*)pPropertyData;
- UNUSED_ALWAYS(p);
+ UNREFERENCED_PARAMETER(p);
*p = 8*10000;
*pBytesReturned = sizeof(AM_MaxFullDataRate);
}