diff --git a/decoder/LAVVideo/LAVVideo.cpp b/decoder/LAVVideo/LAVVideo.cpp index eb0948007..7739cd238 100644 --- a/decoder/LAVVideo/LAVVideo.cpp +++ b/decoder/LAVVideo/LAVVideo.cpp @@ -1075,8 +1075,8 @@ HRESULT CLAVVideo::CompleteConnect(PIN_DIRECTION dir, IPin *pReceivePin) BOOL bFailNonDXVA = false; // Fail P010 software connections before Windows 10 Creators Update (presumably it was fixed before Creators // already, but this is definitely a safe known condition) - if (!IsWindows10BuildOrNewer(15063) && (m_pOutput->CurrentMediaType().subtype == MEDIASUBTYPE_P010 || - m_pOutput->CurrentMediaType().subtype == MEDIASUBTYPE_P016)) + if (!IsWindows10BuildOrNewer(15063) && m_pOutput->CurrentMediaType().subtype == MEDIASUBTYPE_P010 || + m_pOutput->CurrentMediaType().subtype == MEDIASUBTYPE_P016) { // Check if we're connecting to EVR IBaseFilter *pFilter = GetFilterFromPin(pReceivePin);