[xiph-commits] r7775 -
trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder
illiminable at motherfish-iii.xiph.org
illiminable at motherfish-iii.xiph.org
Fri Sep 17 07:42:56 PDT 2004
Author: illiminable
Date: 2004-09-17 07:42:55 -0700 (Fri, 17 Sep 2004)
New Revision: 7775
Modified:
trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeFilter.cpp
trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeFilter.h
trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeInputPin.cpp
Log:
* Removed more dead code relating to bug. Correction.. the bug was reported by Denis Seydoux... wrong email :)
Modified: trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeFilter.cpp
===================================================================
--- trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeFilter.cpp 2004-09-17 14:19:28 UTC (rev 7774)
+++ trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeFilter.cpp 2004-09-17 14:42:55 UTC (rev 7775)
@@ -82,12 +82,3 @@
return NUM_PINS;
}
-void AbstractAudioDecodeFilter::SetStartToNow() {
- //IReferenceClock* locRefClock = NULL;
- //HRESULT locHR = GetSyncSource(&locRefClock);
- //LONGLONG locCurrentTime;
- //locRefClock->GetTime(&locCurrentTime);
- //locRefClock->Release();
-
- //m_tStart = locCurrentTime;
-}
\ No newline at end of file
Modified: trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeFilter.h
===================================================================
--- trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeFilter.h 2004-09-17 14:19:28 UTC (rev 7774)
+++ trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeFilter.h 2004-09-17 14:42:55 UTC (rev 7775)
@@ -79,8 +79,7 @@
//Media Control Methods
virtual STDMETHODIMP Stop();
- //Helper Methods
- void SetStartToNow(); //QUERY::: Do we even still use this ?
+
unsigned short mAudioFormat; //TODO::: Make this private at some point
Modified: trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeInputPin.cpp
===================================================================
--- trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeInputPin.cpp 2004-09-17 14:19:28 UTC (rev 7774)
+++ trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeInputPin.cpp 2004-09-17 14:42:55 UTC (rev 7775)
@@ -222,7 +222,7 @@
STDMETHODIMP AbstractAudioDecodeInputPin::NewSegment(REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate) {
CAutoLock locLock(mStreamLock);
ResetFrameCount();
- //mParentFilter->SetStartToNow();
+
CBasePin::NewSegment(tStart, tStop, dRate);
return mParentFilter->mOutputPin->DeliverNewSegment(tStart, tStop, dRate);
}
More information about the commits
mailing list