| 93 | // Do stuff to deliver end of stream |
| 94 | |
| 95 | void CRenderedInputPin::DoCompleteHandling() |
| 96 | { |
| 97 | ASSERT(m_bAtEndOfStream); |
| 98 | if (!m_bCompleteNotified) |
| 99 | { |
| 100 | m_bCompleteNotified = TRUE; |
| 101 | m_pFilter->NotifyEvent(EC_COMPLETE, S_OK, (LONG_PTR)(IBaseFilter *)m_pFilter); |
| 102 | } |
| 103 | } |
nothing calls this directly
no test coverage detected