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@gmail.com>2014-07-11 17:33:28 +0400
committerXhmikosR <xhmikosr@gmail.com>2014-08-25 01:00:05 +0400
commit5b96d63c388e34aae856224b77246de617470ce6 (patch)
treec844a21456a123b4da755c700f95cbb716c0d9fa /src/filters/transform
parentbfe2b0eca56c21f0ae1ae2ed425e77e0727bc490 (diff)
Remove redundant variable re-assignments.
Diffstat (limited to 'src/filters/transform')
-rw-r--r--src/filters/transform/AVI2AC3Filter/AVI2AC3Filter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filters/transform/AVI2AC3Filter/AVI2AC3Filter.cpp b/src/filters/transform/AVI2AC3Filter/AVI2AC3Filter.cpp
index 49fc7f165..7bd077e9e 100644
--- a/src/filters/transform/AVI2AC3Filter/AVI2AC3Filter.cpp
+++ b/src/filters/transform/AVI2AC3Filter/AVI2AC3Filter.cpp
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2013 see Authors.txt
+ * (C) 2006-2014 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -249,7 +249,7 @@ HRESULT CAVI2AC3Filter::Transform(IMediaSample* pSample, IMediaSample* pOutSampl
pOutSample->SetActualDataLength(long(pOut - pOutOrg));
- hr = m_pOutput->Deliver(pOutSample);
+ m_pOutput->Deliver(pOutSample);
}
return S_FALSE;