Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2012-09-14 17:43:00 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-09-30 10:51:37 +0400
commita6b4af97faa30decf028ae46003a260f6722274f (patch)
tree907a7a726a6bee4958dcbde7bb7713e45bdb3f9d /decoder/LAVAudio
parentf27edeba6a77a1bcd229d60f3b39cf937dce993e (diff)
Refactor DeCSSInputPin for easier integration into other pins
Diffstat (limited to 'decoder/LAVAudio')
-rw-r--r--decoder/LAVAudio/LAVAudio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/LAVAudio/LAVAudio.cpp b/decoder/LAVAudio/LAVAudio.cpp
index 2d0d0084..f38c7d68 100644
--- a/decoder/LAVAudio/LAVAudio.cpp
+++ b/decoder/LAVAudio/LAVAudio.cpp
@@ -100,7 +100,7 @@ CLAVAudio::CLAVAudio(LPUNKNOWN pUnk, HRESULT* phr)
av_register_all();
- m_pInput = new CDeCSSInputPin(TEXT("CDeCSSInputPin"), this, phr, L"Input");
+ m_pInput = new CDeCSSTransformInputPin(TEXT("CDeCSSTransformInputPin"), this, phr, L"Input");
if(!m_pInput) {
*phr = E_OUTOFMEMORY;
}
@@ -1468,7 +1468,7 @@ HRESULT CLAVAudio::Receive(IMediaSample *pIn)
return S_OK;
}
- (static_cast<CDeCSSInputPin*>(m_pInput))->StripPacket(pDataIn, len);
+ (static_cast<CDeCSSTransformInputPin*>(m_pInput))->StripPacket(pDataIn, len);
REFERENCE_TIME rtStart = _I64_MIN, rtStop = _I64_MIN;
hr = pIn->GetTime(&rtStart, &rtStop);