// // Run // // Overriden to open the dump file // STDMETHODIMP EMReadFrameFilter::Run(REFERENCE_TIME tStart) { IReferenceClock *pClock = m_pClock; CAutoLock cObjectLock(m_pLock); CRefTime agnusStreamTimeObject; StreamTime(agnusStreamTimeObject); long millisekunder = agnusStreamTimeObject.Millisecs(); return CBaseFilter::Run(tStart); }
StreamTime AudioDestinationNode::ExtraCurrentTime() { if (!mStartedBlockingDueToBeingOnlyNode.IsNull() && !mExtraCurrentTimeUpdatedSinceLastStableState) { mExtraCurrentTimeUpdatedSinceLastStableState = true; // Round to nearest processing block. double seconds = (TimeStamp::Now() - mStartedBlockingDueToBeingOnlyNode).ToSeconds(); mExtraCurrentTimeSinceLastStartedBlocking = WEBAUDIO_BLOCK_SIZE * StreamTime(seconds * Context()->SampleRate() / WEBAUDIO_BLOCK_SIZE + 0.5); ScheduleStableStateNotification(); } return mExtraCurrentTimeSinceLastStartedBlocking; }