| 1129 | } |
| 1130 | |
| 1131 | STDMETHODIMP CMpcVideoRenderer::get_MessageDrain(OAHWND* Drain) |
| 1132 | { |
| 1133 | CheckPointer(Drain, E_POINTER); |
| 1134 | if (m_pInputPin == nullptr || m_pInputPin->IsConnected() == FALSE) { |
| 1135 | return VFW_E_NOT_CONNECTED; |
| 1136 | } |
| 1137 | *Drain = (OAHWND)m_hWndDrain; |
| 1138 | return S_OK; |
| 1139 | } |
| 1140 | |
| 1141 | STDMETHODIMP CMpcVideoRenderer::SetWindowPosition(long Left, long Top, long Width, long Height) |
| 1142 | { |
nothing calls this directly
no outgoing calls
no test coverage detected