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>2013-01-09 23:35:42 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2013-01-09 23:35:42 +0400
commitc98f208b679a6b0ea6a349e380f92f774bdaa9c8 (patch)
treefc8c2f91faf923d9af47cba958c29497588388c8 /decoder
parentc957a583384192caaa5e5db466d9ee525e59fbf5 (diff)
Remove unused Start/StopStreaming
Diffstat (limited to 'decoder')
-rw-r--r--decoder/LAVAudio/LAVAudio.cpp17
-rw-r--r--decoder/LAVAudio/LAVAudio.h2
2 files changed, 0 insertions, 19 deletions
diff --git a/decoder/LAVAudio/LAVAudio.cpp b/decoder/LAVAudio/LAVAudio.cpp
index 56b29164..8ef89632 100644
--- a/decoder/LAVAudio/LAVAudio.cpp
+++ b/decoder/LAVAudio/LAVAudio.cpp
@@ -2258,23 +2258,6 @@ done:
return hr;
}
-HRESULT CLAVAudio::StartStreaming()
-{
- HRESULT hr = __super::StartStreaming();
- if(FAILED(hr)) {
- return hr;
- }
-
- m_bDiscontinuity = FALSE;
-
- return S_OK;
-}
-
-HRESULT CLAVAudio::StopStreaming()
-{
- return __super::StopStreaming();
-}
-
HRESULT CLAVAudio::BreakConnect(PIN_DIRECTION dir)
{
if(dir == PINDIR_INPUT) {
diff --git a/decoder/LAVAudio/LAVAudio.h b/decoder/LAVAudio/LAVAudio.h
index 39cab2ac..8c71cda0 100644
--- a/decoder/LAVAudio/LAVAudio.h
+++ b/decoder/LAVAudio/LAVAudio.h
@@ -176,8 +176,6 @@ public:
HRESULT EndFlush();
HRESULT NewSegment(REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate);
- HRESULT StartStreaming();
- HRESULT StopStreaming();
HRESULT BreakConnect(PIN_DIRECTION Dir);
public: