| 326 | } |
| 327 | |
| 328 | STDMETHODIMP_(ULONG) CVideoProcessor::Release() |
| 329 | { |
| 330 | ULONG uCount = InterlockedDecrement(&m_nRefCount); |
| 331 | if (uCount == 0) { |
| 332 | delete this; |
| 333 | } |
| 334 | // For thread safety, return a temporary variable. |
| 335 | return uCount; |
| 336 | } |
| 337 | |
| 338 | // IMFVideoProcessor |
| 339 |
nothing calls this directly
no outgoing calls
no test coverage detected